From 7f10da6dfe00623437d2cb68aac0eaf368272a62 Mon Sep 17 00:00:00 2001 From: tochilinak <35286460+tochilinak@users.noreply.github.com> Date: Wed, 21 Feb 2024 09:20:59 +0300 Subject: [PATCH 1/5] Move of module `utbot-python-types` into a separate repository (#2734) * Made the move * Updated docs * fix in module utbot-intellij-python * pr fixes * Updated scheme for local utbot_mypy_runner --- gradle.properties | 2 + settings.gradle.kts | 1 - utbot-cli-python/build.gradle | 1 + .../python/PythonTypeInferenceCommand.kt | 2 +- .../src/main/resources/settings.properties | 2 +- utbot-intellij-python/build.gradle.kts | 3 + utbot-python-types/.gitignore | 1 - utbot-python-types/build.gradle.kts | 151 ----- .../python/newtyping/PythonDefinition.kt | 34 - .../org/utbot/python/newtyping/PythonType.kt | 330 ---------- .../utbot/python/newtyping/PythonTypeAPI.kt | 119 ---- .../python/newtyping/PythonTypeComparison.kt | 494 --------------- .../PythonTypeConstraintPropagation.kt | 98 --- .../newtyping/PythonTypeCreationRoutines.kt | 78 --- .../newtyping/PythonTypeHintsStorage.kt | 75 --- .../python/newtyping/general/TypeCreation.kt | 83 --- .../newtyping/general/TypeSubstitution.kt | 153 ----- .../python/newtyping/general/TypeUtils.kt | 28 - .../utbot/python/newtyping/general/UtType.kt | 57 -- .../newtyping/inference/TypeInferenceNodes.kt | 36 -- .../newtyping/mypy/GlobalNamesStorage.kt | 60 -- .../python/newtyping/mypy/MypyAnnotations.kt | 280 --------- .../utbot/python/newtyping/mypy/MypyBuild.kt | 88 --- .../python/newtyping/mypy/MypyDefinitions.kt | 82 --- .../utbot/python/newtyping/mypy/RunMypy.kt | 126 ---- .../org/utbot/python/newtyping/mypy/Utils.kt | 18 - .../utbot/python/newtyping/utils/TypeUtils.kt | 13 - .../utbot/python/utils/CustomJsonAdapter.kt | 57 -- .../main/python/utbot_mypy_runner/.gitignore | 3 - .../main/python/utbot_mypy_runner/README.md | 0 .../python/utbot_mypy_runner/pyproject.toml | 16 - .../utbot_mypy_runner/__init__.py | 0 .../utbot_mypy_runner/__main__.py | 54 -- .../utbot_mypy_runner/expression_traverser.py | 180 ------ .../utbot_mypy_runner/extract_annotations.py | 110 ---- .../utbot_mypy_runner/mypy_main.py | 158 ----- .../utbot_mypy_runner/names.py | 71 --- .../utbot_mypy_runner/nodes.py | 585 ------------------ .../utbot_mypy_runner/utils.py | 37 -- .../main/resources/utbot_mypy_runner_version | 1 - .../PythonCompositeTypeDescriptionTest.kt | 63 -- .../newtyping/PythonSubtypeCheckerTest.kt | 148 ----- .../PythonTypeConstraintPropagationKtTest.kt | 37 -- .../PythonTypeWrapperForEqualityCheckTest.kt | 60 -- .../DefaultSubstitutionProviderTest.kt | 176 ------ .../newtyping/mypy/GlobalNamesStorageTest.kt | 49 -- .../python/newtyping/mypy/MypyBuildKtTest.kt | 144 ----- .../python/newtyping/mypy/ParseMypyBuild.kt | 12 - .../samples/GenerateMypyInfoBuild.kt | 20 - .../src/test/resources/annotation_tests.json | 1 - .../src/test/resources/boruvka.json | 1 - .../src/test/resources/import_test.json | 1 - .../resources/samples/annotation_tests.py | 78 --- .../src/test/resources/samples/boruvka.py | 106 ---- .../src/test/resources/samples/import_test.py | 10 - .../src/test/resources/samples/subtypes.py | 73 --- .../src/test/resources/subtypes.json | 1 - utbot-python/build.gradle.kts | 10 +- utbot-python/docs/python_packages.md | 12 +- .../python/PythonTestGenerationConfig.kt | 6 +- .../python/PythonTestGenerationProcessor.kt | 18 +- .../kotlin/org/utbot/python/UTPythonAPI.kt | 26 +- .../kotlin/org/utbot/python/code/CodeGen.kt | 2 +- .../python/engine/ExecutionResultHandler.kt | 4 +- .../utbot/python/engine/GlobalPythonEngine.kt | 6 +- .../python/engine/fuzzing/FuzzingEngine.kt | 20 +- .../typeinference/FunctionAnnotationUtils.kt | 24 +- .../evaluation/PythonCodeSocketExecutor.kt | 8 +- .../python/framework/api/python/PythonTree.kt | 4 +- .../codegen/model/PythonCodeGenerator.kt | 8 +- .../external/PythonTestMethodInfo.kt | 2 +- .../org/utbot/python/fuzzing/PythonApi.kt | 14 +- .../fuzzing/provider/ComplexValueProvider.kt | 2 +- .../fuzzing/provider/DictValueProvider.kt | 2 +- .../fuzzing/provider/FloatValueProvider.kt | 2 +- .../fuzzing/provider/IteratorValueProvider.kt | 2 +- .../fuzzing/provider/ListValueProvider.kt | 2 +- .../fuzzing/provider/NoneValueProvider.kt | 2 +- .../fuzzing/provider/OptionalValueProvider.kt | 6 +- .../fuzzing/provider/ReduceValueProvider.kt | 18 +- .../fuzzing/provider/SetValueProvider.kt | 2 +- .../fuzzing/provider/SubtypeValueProvider.kt | 14 +- .../provider/TupleFixSizeValueProvider.kt | 4 +- .../fuzzing/provider/TupleValueProvider.kt | 8 +- .../provider/TypeAliasValueProvider.kt | 2 +- .../fuzzing/provider/UnionValueProvider.kt | 6 +- .../fuzzing/provider/utils/ProviderUtils.kt | 4 +- .../utbot/python/newtyping/ast/ArgBinding.kt | 6 +- .../utbot/python/newtyping/ast/TypeUtils.kt | 6 +- .../org/utbot/python/newtyping/ast/test.kt | 6 +- .../visitor/constants/ConstantCollector.kt | 6 +- .../ast/visitor/hints/HintCollector.kt | 38 +- .../visitor/hints/HintCollectorStructures.kt | 12 +- .../inference/HintCollectorResultUtils.kt | 5 +- .../inference/TypeInferenceAlgorithmAPI.kt | 2 +- .../inference/TypeInferenceProcessor.kt | 24 +- .../inference/baseline/BaselineAlgorithm.kt | 14 +- .../inference/baseline/StateExpansion.kt | 10 +- .../inference/baseline/Structures.kt | 10 +- .../baseline/TypeCandidateGeneration.kt | 11 +- .../inference/baseline/TypeDecomposition.kt | 6 +- .../utbot/python/newtyping/inference/test.kt | 2 +- .../utbot/python/newtyping/mypy/RunDMypy.kt | 2 + .../org/utbot/python/newtyping/mypy/Utils.kt | 11 + .../org/utbot/python/utils/ProcessUtils.kt | 0 .../utbot/python/utils/RequirementsUtils.kt | 7 +- 106 files changed, 230 insertions(+), 4855 deletions(-) delete mode 100644 utbot-python-types/.gitignore delete mode 100644 utbot-python-types/build.gradle.kts delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonDefinition.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonType.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeAPI.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeComparison.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeConstraintPropagation.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeCreationRoutines.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeHintsStorage.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/TypeCreation.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/TypeSubstitution.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/TypeUtils.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/UtType.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceNodes.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/GlobalNamesStorage.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyAnnotations.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyBuild.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyDefinitions.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/RunMypy.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/Utils.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/utils/TypeUtils.kt delete mode 100644 utbot-python-types/src/main/kotlin/org/utbot/python/utils/CustomJsonAdapter.kt delete mode 100644 utbot-python-types/src/main/python/utbot_mypy_runner/.gitignore delete mode 100644 utbot-python-types/src/main/python/utbot_mypy_runner/README.md delete mode 100644 utbot-python-types/src/main/python/utbot_mypy_runner/pyproject.toml delete mode 100644 utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/__init__.py delete mode 100644 utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/__main__.py delete mode 100644 utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/expression_traverser.py delete mode 100644 utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/extract_annotations.py delete mode 100644 utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/mypy_main.py delete mode 100644 utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/names.py delete mode 100644 utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/nodes.py delete mode 100644 utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/utils.py delete mode 100644 utbot-python-types/src/main/resources/utbot_mypy_runner_version delete mode 100644 utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonCompositeTypeDescriptionTest.kt delete mode 100644 utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonSubtypeCheckerTest.kt delete mode 100644 utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonTypeConstraintPropagationKtTest.kt delete mode 100644 utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonTypeWrapperForEqualityCheckTest.kt delete mode 100644 utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/general/DefaultSubstitutionProviderTest.kt delete mode 100644 utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/GlobalNamesStorageTest.kt delete mode 100644 utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/MypyBuildKtTest.kt delete mode 100644 utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/ParseMypyBuild.kt delete mode 100644 utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/samples/GenerateMypyInfoBuild.kt delete mode 100644 utbot-python-types/src/test/resources/annotation_tests.json delete mode 100644 utbot-python-types/src/test/resources/boruvka.json delete mode 100644 utbot-python-types/src/test/resources/import_test.json delete mode 100644 utbot-python-types/src/test/resources/samples/annotation_tests.py delete mode 100644 utbot-python-types/src/test/resources/samples/boruvka.py delete mode 100644 utbot-python-types/src/test/resources/samples/import_test.py delete mode 100644 utbot-python-types/src/test/resources/samples/subtypes.py delete mode 100644 utbot-python-types/src/test/resources/subtypes.json create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/newtyping/mypy/Utils.kt rename {utbot-python-types => utbot-python}/src/main/kotlin/org/utbot/python/utils/ProcessUtils.kt (100%) diff --git a/gradle.properties b/gradle.properties index cd83a4920b..f54610ca84 100644 --- a/gradle.properties +++ b/gradle.properties @@ -102,6 +102,8 @@ commonsIOVersion=2.11.0 javaxVersion=2.2 jakartaVersion=3.1.0 jacoDbVersion=1.4.3 +moshiVersion=1.15.1 +pythonTypesAPIHash=e5a5d9c # use latest Java 8 compaitable Spring and Spring Boot versions springVersion=5.3.28 diff --git a/settings.gradle.kts b/settings.gradle.kts index de67e6ca54..dda07b9caf 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -81,7 +81,6 @@ if (pythonIde.split(",").contains(ideType)) { include("utbot-cli-python") include("utbot-intellij-python") include("utbot-python-parser") - include("utbot-python-types") include("utbot-python-executor") } diff --git a/utbot-cli-python/build.gradle b/utbot-cli-python/build.gradle index 350684a5ba..fbfa2bdd9d 100644 --- a/utbot-cli-python/build.gradle +++ b/utbot-cli-python/build.gradle @@ -24,6 +24,7 @@ dependencies { implementation group: 'com.github.ajalt.clikt', name: 'clikt', version: cliktVersion implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: log4j2Version implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: log4j2Version + implementation group: 'com.github.UnitTestBot', name: 'PythonTypesAPI', version: pythonTypesAPIHash } processResources { diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonTypeInferenceCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonTypeInferenceCommand.kt index edf9a9df7a..124cd6a36e 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonTypeInferenceCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonTypeInferenceCommand.kt @@ -8,7 +8,7 @@ import com.github.ajalt.clikt.parameters.options.split import com.github.ajalt.clikt.parameters.types.long import mu.KotlinLogging import org.utbot.python.newtyping.inference.TypeInferenceProcessor -import org.utbot.python.newtyping.pythonTypeRepresentation +import org.utpython.types.pythonTypeRepresentation import org.utbot.python.utils.Fail import org.utbot.python.utils.RequirementsUtils.requirements import org.utbot.python.utils.Success diff --git a/utbot-intellij-main/src/main/resources/settings.properties b/utbot-intellij-main/src/main/resources/settings.properties index 17328d9a5f..84bc852a2e 100644 --- a/utbot-intellij-main/src/main/resources/settings.properties +++ b/utbot-intellij-main/src/main/resources/settings.properties @@ -1,4 +1,4 @@ -# Copyright (c) 2023 utbot.org +# Copyright (c) 2024 utbot.org # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/utbot-intellij-python/build.gradle.kts b/utbot-intellij-python/build.gradle.kts index 531d6e75c2..222842d165 100644 --- a/utbot-intellij-python/build.gradle.kts +++ b/utbot-intellij-python/build.gradle.kts @@ -59,6 +59,8 @@ tasks { } } +val pythonTypesAPIHash: String by rootProject + dependencies { implementation(group = "io.github.microutils", name = "kotlin-logging", version = kotlinLoggingVersion) testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.1") @@ -67,6 +69,7 @@ dependencies { //Family implementation(project(":utbot-python")) + implementation("com.github.UnitTestBot:PythonTypesAPI:$pythonTypesAPIHash") } intellij { diff --git a/utbot-python-types/.gitignore b/utbot-python-types/.gitignore deleted file mode 100644 index 77738287f0..0000000000 --- a/utbot-python-types/.gitignore +++ /dev/null @@ -1 +0,0 @@ -dist/ \ No newline at end of file diff --git a/utbot-python-types/build.gradle.kts b/utbot-python-types/build.gradle.kts deleted file mode 100644 index 400bbe01eb..0000000000 --- a/utbot-python-types/build.gradle.kts +++ /dev/null @@ -1,151 +0,0 @@ -val kotlinLoggingVersion: String? by rootProject - -dependencies { - implementation("com.squareup.moshi:moshi:1.14.0") - implementation("com.squareup.moshi:moshi-kotlin:1.14.0") - implementation("com.squareup.moshi:moshi-adapters:1.14.0") - implementation(group = "io.github.microutils", name = "kotlin-logging", version = kotlinLoggingVersion) -} - -val utbotMypyRunnerVersion = File(project.projectDir, "src/main/resources/utbot_mypy_runner_version").readText() -// these two properties --- from GRADLE_USER_HOME/gradle.properties -val pypiToken: String? by project -val pythonInterpreter: String? by project -val utbotMypyRunnerPath = File(project.projectDir, "src/main/python/utbot_mypy_runner") -val localMypyPath = File(utbotMypyRunnerPath, "dist") - -tasks.register("cleanDist") { - group = "python" - delete(localMypyPath.canonicalPath) -} - -val installPoetry = - if (pythonInterpreter != null) { - tasks.register("installPoetry") { - group = "python" - workingDir = utbotMypyRunnerPath - commandLine(pythonInterpreter, "-m", "pip", "install", "poetry") - } - } else { - null - } - -val setMypyRunnerVersion = - if (pythonInterpreter != null) { - tasks.register("setVersion") { - dependsOn(installPoetry!!) - group = "python" - workingDir = utbotMypyRunnerPath - commandLine(pythonInterpreter, "-m", "poetry", "version", utbotMypyRunnerVersion) - } - } else { - null - } - -val buildMypyRunner = - if (pythonInterpreter != null) { - tasks.register("buildUtbotMypyRunner") { - dependsOn(setMypyRunnerVersion!!) - group = "python" - workingDir = utbotMypyRunnerPath - commandLine(pythonInterpreter, "-m", "poetry", "build") - } - } else { - null - } - -if (pythonInterpreter != null && pypiToken != null) { - tasks.register("publishUtbotMypyRunner") { - dependsOn(buildMypyRunner!!) - group = "python" - workingDir = utbotMypyRunnerPath - commandLine( - pythonInterpreter, - "-m", - "poetry", - "publish", - "-u", - "__token__", - "-p", - pypiToken - ) - } -} - -val uninstallMypyRunner = - if (pythonInterpreter != null) { - tasks.register("uninstallMypyRunner") { - group = "python" - commandLine( - pythonInterpreter, - "-m", - "pip", - "uninstall", - "utbot_mypy_runner" - ) - commandLine( - pythonInterpreter, - "-m", - "pip", - "cache", - "purge" - ) - } - } else { - null - } - -val installMypyRunner = - if (pythonInterpreter != null) { - tasks.register("installUtbotMypyRunner") { - dependsOn(buildMypyRunner!!) - group = "python" - environment("PIP_FIND_LINKS" to localMypyPath.canonicalPath) - commandLine( - pythonInterpreter, - "-m", - "pip", - "install", - "utbot_mypy_runner==$utbotMypyRunnerVersion" - ) - } - } else { - null - } - -val samplesDir = File(project.projectDir, "src/test/resources/samples") -val buildDir = File(project.buildDir, "samples_builds") -val jsonDir = File(project.projectDir, "src/test/resources") - -fun getParamsForSample(sampleName: String): List = - listOf( - sampleName, - File(samplesDir, "$sampleName.py").canonicalPath, - sampleName, - buildDir.canonicalPath, - File(jsonDir, "$sampleName.json").canonicalPath - ) - -val samplesInfo = listOf( - getParamsForSample("annotation_tests"), - getParamsForSample("boruvka"), - getParamsForSample("import_test"), - getParamsForSample("subtypes"), -) - -if (pythonInterpreter != null) { - val subtasks = samplesInfo.map { params -> - tasks.register("regenerateJsonForTests_${params.first()}") { - dependsOn(installMypyRunner!!) - group = "python_subtasks" - classpath = sourceSets.test.get().runtimeClasspath - args = listOf(pythonInterpreter) + params.drop(1) - mainClass.set("org.utbot.python.newtyping.samples.GenerateMypyInfoBuildKt") - } - } - - tasks.register("regenerateJsonForTests") { - subtasks.forEach { dependsOn(it) } - group = "python" - } -} \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonDefinition.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonDefinition.kt deleted file mode 100644 index ebecc7044f..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonDefinition.kt +++ /dev/null @@ -1,34 +0,0 @@ -package org.utbot.python.newtyping - -import org.utbot.python.newtyping.general.FunctionType -import org.utbot.python.newtyping.general.UtType - -open class PythonDefinition(open val meta: PythonDefinitionDescription, open val type: UtType) { - override fun toString(): String = - "${meta.name}: ${type.pythonTypeRepresentation()}" -} - -class PythonFunctionDefinition( - override val meta: PythonFuncItemDescription, // TODO: consider overloaded function - override val type: FunctionType -): PythonDefinition(meta, type) - -sealed class PythonDefinitionDescription(val name: String) - -class PythonVariableDescription( - name: String, - val isProperty: Boolean = false, - val isSelf: Boolean = false -): PythonDefinitionDescription(name) - -sealed class PythonFunctionDescription(name: String): PythonDefinitionDescription(name) - -class PythonFuncItemDescription( - name: String, - val args: List -): PythonFunctionDescription(name) - -class PythonOverloadedFuncDefDescription( - name: String, - val items: List -): PythonFunctionDescription(name) \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonType.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonType.kt deleted file mode 100644 index a0f2af098f..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonType.kt +++ /dev/null @@ -1,330 +0,0 @@ -package org.utbot.python.newtyping - -import org.utbot.python.newtyping.general.CompositeType -import org.utbot.python.newtyping.general.DefaultSubstitutionProvider -import org.utbot.python.newtyping.general.FunctionType -import org.utbot.python.newtyping.general.FunctionTypeCreator -import org.utbot.python.newtyping.general.Name -import org.utbot.python.newtyping.general.TypeCreator -import org.utbot.python.newtyping.general.TypeMetaDataWithName -import org.utbot.python.newtyping.general.TypeParameter -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.general.getOrigin -import org.utbot.python.newtyping.utils.isRequired - -sealed class PythonTypeDescription(name: Name) : TypeMetaDataWithName(name) { - open fun castToCompatibleTypeApi(type: UtType): UtType = type - open fun getNamedMembers(type: UtType): List = emptyList() // direct members (without inheritance) - open fun getAnnotationParameters(type: UtType): List = emptyList() - open fun getMemberByName(storage: PythonTypeHintsStorage, type: UtType, name: String): PythonDefinition? = - // overridden for some types - getNamedMembers(type).find { it.meta.name == name } - open fun createTypeWithNewAnnotationParameters(like: UtType, newParams: List): UtType = // overriden for Callable - DefaultSubstitutionProvider.substituteAll(like.getOrigin(), newParams) - open fun getTypeRepresentation(type: UtType): String { // overriden for Callable - if (name.prefix == listOf("builtins") && name.name == "tuple") { - return "${getTypeName()}[${type.parameters.first().pythonTypeRepresentation()}, ...]" - } - val root = getTypeName() - val params = getAnnotationParameters(type) - if (params.isEmpty()) - return root - return "$root[${params.joinToString { it.pythonTypeRepresentation() }}]" - } - fun getTypeName(): String { - return if (name.prefix.isEmpty()) - name.name - else - name.prefix.joinToString(".") + "." + name.name - } - fun getModuleName(): String { - return name.prefix.joinToString(".") - } - fun getName(): String { - return name.name - } - fun getModules(type: UtType): Set { - val cur = if (name.prefix.isNotEmpty()) - setOf(name.prefix.joinToString(separator = ".")) - else - emptySet() - return type.pythonAnnotationParameters().fold(cur) { acc, childType -> - acc + childType.pythonModules() - } - } -} - -sealed class PythonCompositeTypeDescription( - name: Name, - private val memberDescriptions: List -): PythonTypeDescription(name) { - override fun castToCompatibleTypeApi(type: UtType): CompositeType { - return type as? CompositeType - ?: error("Got unexpected type PythonCompositeTypeDescription: $type") - } - - override fun getNamedMembers(type: UtType): List { - val compositeType = castToCompatibleTypeApi(type) - assert(compositeType.members.size == memberDescriptions.size) - return (memberDescriptions zip compositeType.members).map { (descr, typ) -> - if (descr is PythonFuncItemDescription) - PythonFunctionDefinition(descr, typ as FunctionType) - else - PythonDefinition(descr, typ) - } - } - - override fun getAnnotationParameters(type: UtType): List = type.parameters - fun mro(storage: PythonTypeHintsStorage, type: UtType): List { - val compositeType = castToCompatibleTypeApi(type) - var bases = compositeType.supertypes - if (bases.isEmpty() && !type.isPythonObjectType()) - bases = listOf(storage.pythonObject) - val linBases = (bases.map { - val description = it.meta as? PythonCompositeTypeDescription - ?: error("Not a PythonCompositeType in superclasses of PythonCompositeType") - description.mro(storage, it) - } + listOf(bases)).map { it.toMutableList() }.toMutableList() - val result = mutableListOf(type) - while (true) { - linBases.removeIf { it.isEmpty() } - if (linBases.isEmpty()) - break - lateinit var addAtThisIteration: UtType - for (seq in linBases) { - val head = seq.first() - val isContainedSomewhereElse = linBases.any { - it.drop(1).any { type -> type.pythonDescription().name == head.pythonDescription().name } - } - if (!isContainedSomewhereElse) { - addAtThisIteration = head - break - } - } - linBases.forEach { - if (it.first().pythonDescription().name == addAtThisIteration.pythonDescription().name) - it.removeFirst() - } - result.add(addAtThisIteration) - } - return result - } - - override fun getMemberByName(storage: PythonTypeHintsStorage, type: UtType, name: String): PythonDefinition? { - for (parent in mro(storage, type)) { - val cur = parent.getPythonAttributes().find { it.meta.name == name } - if (cur != null) - return cur - } - return null - } -} - -sealed class PythonSpecialAnnotation(name: Name) : PythonTypeDescription(name) - -class PythonTypeVarDescription( - name: Name, - val variance: Variance, - val parameterKind: ParameterKind -) : PythonTypeDescription(name) { - override fun castToCompatibleTypeApi(type: UtType): TypeParameter { - return type as? TypeParameter - ?: error("Got unexpected type PythonTypeVarDescription: $type") - } - - enum class Variance { - INVARIANT, - COVARIANT, - CONTRAVARIANT - } - - enum class ParameterKind { - WithUpperBound, - WithConcreteValues - } -} - -// Composite types -class PythonConcreteCompositeTypeDescription( - name: Name, - memberDescriptions: List, - val isAbstract: Boolean -) : PythonCompositeTypeDescription(name, memberDescriptions) - -class PythonProtocolDescription( - name: Name, - memberDescriptions: List, - val protocolMemberNames: List -) : PythonCompositeTypeDescription(name, memberDescriptions) - -class PythonCallableTypeDescription( - val argumentKinds: List, - val argumentNames: List // like in mypy's CallableType: https://github.com/python/mypy/blob/master/mypy/types.py#L1672 -): PythonTypeDescription(pythonCallableName) { - val numberOfArguments = argumentKinds.size - override fun castToCompatibleTypeApi(type: UtType): FunctionType { - return type as? FunctionType - ?: error("Got unexpected type PythonCallableTypeDescription: $type") - } - - override fun getNamedMembers(type: UtType): List { - val functionType = castToCompatibleTypeApi(type) - return listOf(PythonDefinition(PythonVariableDescription("__call__"), functionType)) - } - - override fun getAnnotationParameters(type: UtType): List { - val functionType = castToCompatibleTypeApi(type) - return functionType.arguments + listOf(functionType.returnValue) - } - - enum class ArgKind { - ARG_POS, - ARG_OPT, - ARG_STAR, - ARG_STAR_2, - ARG_NAMED, - ARG_NAMED_OPT - } - - override fun createTypeWithNewAnnotationParameters(like: UtType, newParams: List): UtType { - val args = newParams.dropLast(1) - val returnValue = newParams.last() - return createPythonCallableType( - like.parameters.size, - argumentKinds, - argumentNames - ) { self -> - val oldToNewParameters = (self.parameters zip like.parameters).mapNotNull { - if (it.second is TypeParameter) it else null - }.toMap() - val newArgs = args.map { - DefaultSubstitutionProvider.substitute(it, oldToNewParameters) - } - val newReturnValue = DefaultSubstitutionProvider.substitute(returnValue, oldToNewParameters) - FunctionTypeCreator.InitializationData( - arguments = newArgs, - returnValue = newReturnValue - ) - } - } - - override fun getTypeRepresentation(type: UtType): String { - val functionType = castToCompatibleTypeApi(type) - val root = name.prefix.joinToString(".") + "." + name.name - return "$root[[${ - functionType.arguments.joinToString(separator = ", ") { it.pythonTypeRepresentation() } - }], ${functionType.returnValue.pythonTypeRepresentation()}]" - } - - fun removeNonPositionalArgs(type: UtType): FunctionType { - val functionType = castToCompatibleTypeApi(type) - require(functionType.parameters.all { it is TypeParameter }) - val argsCount = argumentKinds.count { it == ArgKind.ARG_POS } - return createPythonCallableType( - functionType.parameters.size, - argumentKinds.take(argsCount), - argumentNames.take(argsCount) - ) { self -> - val substitution = (functionType.parameters zip self.parameters).associate { - Pair(it.first as TypeParameter, it.second) - } - FunctionTypeCreator.InitializationData( - functionType.arguments.take(argsCount).map { - DefaultSubstitutionProvider.substitute(it, substitution) - }, - DefaultSubstitutionProvider.substitute(functionType.returnValue, substitution) - ) - } - } - - fun removeNotRequiredArgs(type: UtType): FunctionType { - val functionType = castToCompatibleTypeApi(type) - require(functionType.parameters.all { it is TypeParameter }) - return createPythonCallableType( - functionType.parameters.size, - argumentKinds.filter { isRequired(it) }, - argumentNames.filterIndexed { index, _ -> isRequired(argumentKinds[index]) } - ) { self -> - val substitution = (functionType.parameters zip self.parameters).associate { - Pair(it.first as TypeParameter, it.second) - } - FunctionTypeCreator.InitializationData( - functionType.arguments - .filterIndexed { index, _ -> isRequired(argumentKinds[index]) } - .map { DefaultSubstitutionProvider.substitute(it, substitution) }, - DefaultSubstitutionProvider.substitute(functionType.returnValue, substitution) - ) - } - } -} - -// Special Python annotations -object PythonAnyTypeDescription : PythonSpecialAnnotation(pythonAnyName) { - override fun getMemberByName(storage: PythonTypeHintsStorage, type: UtType, name: String): PythonDefinition { - return PythonDefinition(PythonVariableDescription(name), pythonAnyType) - } -} - -object PythonNoneTypeDescription : PythonSpecialAnnotation(pythonNoneName) { - // TODO: override getNamedMembers and/or getMemberByName -} - -object PythonUnionTypeDescription : PythonSpecialAnnotation(pythonUnionName) { - override fun getMemberByName(storage: PythonTypeHintsStorage, type: UtType, name: String): PythonDefinition? { - val children = type.parameters.mapNotNull { - it.getPythonAttributeByName(storage, name)?.type - } - return if (children.isEmpty()) - null - else - PythonDefinition( - PythonVariableDescription(name), - type = createPythonUnionType(children) - ) - } - - override fun getAnnotationParameters(type: UtType): List = type.parameters -} - -object PythonOverloadTypeDescription : PythonSpecialAnnotation(overloadName) { - override fun getAnnotationParameters(type: UtType): List = type.parameters - override fun getNamedMembers(type: UtType): List { - return listOf(PythonDefinition(PythonVariableDescription("__call__"), type)) - } -} - -object PythonTypeAliasDescription : PythonSpecialAnnotation(pythonTypeAliasName) { - override fun castToCompatibleTypeApi(type: UtType): CompositeType { - return type as? CompositeType ?: error("Got unexpected type for PythonTypeAliasDescription: $type") - } - fun getInterior(type: UtType): UtType { - val casted = castToCompatibleTypeApi(type) - return casted.members.first() - } -} - -object PythonTupleTypeDescription : PythonSpecialAnnotation(pythonTupleName) { - override fun getAnnotationParameters(type: UtType): List = castToCompatibleTypeApi(type).parameters - // TODO: getMemberByName and/or getNamedMembers -} - -private fun initTypeVar(param: TypeParameter) { - param.meta = PythonTypeVarDescription( - Name(emptyList(), ""), // TODO: name? - PythonTypeVarDescription.Variance.INVARIANT, - PythonTypeVarDescription.ParameterKind.WithUpperBound - ) -} - -private fun substituteMembers(origin: UtType, members: List): UtType = - DefaultSubstitutionProvider.substitute( - origin, - (origin.parameters.map { it as TypeParameter } zip members).associate { it } - ) - -fun createTypeWithMembers(description: PythonTypeDescription, members: List): UtType { - val origin = TypeCreator.create(members.size, description) { - it.parameters.forEach(::initTypeVar) - } - return substituteMembers(origin, members) -} \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeAPI.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeAPI.kt deleted file mode 100644 index 1d5fd0225b..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeAPI.kt +++ /dev/null @@ -1,119 +0,0 @@ -package org.utbot.python.newtyping - -import org.utbot.python.newtyping.general.* - -fun UtType.isPythonType(): Boolean { - return meta is PythonTypeDescription -} - -fun UtType.pythonDescription(): PythonTypeDescription { - return meta as? PythonTypeDescription ?: error("Trying to get Python description from non-Python type $this") -} - -fun UtType.getPythonAttributes(): List { - return pythonDescription().getNamedMembers(this) -} - -fun UtType.getPythonAttributeByName(storage: PythonTypeHintsStorage, name: String): PythonDefinition? { - return pythonDescription().getMemberByName(storage, this, name) -} - -fun UtType.pythonAnnotationParameters(): List { - return pythonDescription().getAnnotationParameters(this) -} - -fun UtType.pythonModules(): Set { - return pythonDescription().getModules(this) -} - -fun UtType.isPythonObjectType(): Boolean { - if (!isPythonType()) - return false - val description = pythonDescription() - return description.name.prefix == listOf("builtins") && description.name.name == "object" -} - -fun UtType.pythonTypeRepresentation(): String { - return pythonDescription().getTypeRepresentation(this) -} - -fun UtType.pythonTypeName(): String { - return pythonDescription().getTypeName() -} - -fun UtType.pythonModuleName(): String { - return pythonDescription().getModuleName() -} - -fun UtType.pythonName(): String { - return pythonDescription().getName() -} - -val pythonAnyName = Name(listOf("typing"), "Any") -val pythonUnionName = Name(listOf("typing"), "Union") -val pythonNoneName = Name(emptyList(), "None") -val pythonTupleName = Name(listOf("typing"), "Tuple") -val pythonCallableName = Name(listOf("typing"), "Callable") -val overloadName = Name(emptyList(), "Overload") -val pythonTypeAliasName = Name(listOf("typing"), "TypeAlias") - -val pythonAnyType = createTypeWithMembers(PythonAnyTypeDescription, emptyList()) -val pythonNoneType = createTypeWithMembers(PythonNoneTypeDescription, emptyList()) - -fun createPythonUnionType(members: List): UtType = - createTypeWithMembers(PythonUnionTypeDescription, members) - -fun createOverload(members: List): UtType = - createTypeWithMembers(PythonOverloadTypeDescription, members) - -fun createPythonTupleType(members: List): UtType = - createTypeWithMembers(PythonTupleTypeDescription, members) - -fun createPythonTypeAlias(initialization: (UtType) -> UtType): CompositeType = - CompositeTypeCreator.create(0, PythonTypeAliasDescription) { self -> - CompositeTypeCreator.InitializationData( - members = listOf(initialization(self)), - supertypes = emptyList() - ) - } - -fun createPythonConcreteCompositeType( - name: Name, - numberOfParameters: Int, - memberDescriptions: List, - isAbstract: Boolean, - initialization: (CompositeTypeCreator.Original) -> CompositeTypeCreator.InitializationData -): CompositeType = - CompositeTypeCreator.create( - numberOfParameters, - PythonConcreteCompositeTypeDescription(name, memberDescriptions, isAbstract), - initialization - ) - -fun createPythonProtocol( - name: Name, - numberOfParameters: Int, - memberDescriptions: List, - protocolMemberNames: List, - initialization: (CompositeTypeCreator.Original) -> CompositeTypeCreator.InitializationData -): CompositeType = - CompositeTypeCreator.create( - numberOfParameters, - PythonProtocolDescription(name, memberDescriptions, protocolMemberNames), - initialization - ) - -fun createPythonCallableType( - numberOfParameters: Int, - argumentKinds: List, - argumentNames: List, - initialization: (FunctionTypeCreator.Original) -> FunctionTypeCreator.InitializationData -): FunctionType = - FunctionTypeCreator.create( - numberOfParameters, - PythonCallableTypeDescription(argumentKinds, argumentNames), - initialization - ) - -val exactTypeRelation = TypeRelation("=") -val upperBoundRelation = TypeRelation("<") \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeComparison.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeComparison.kt deleted file mode 100644 index acf17b1889..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeComparison.kt +++ /dev/null @@ -1,494 +0,0 @@ -package org.utbot.python.newtyping - -import mu.KotlinLogging -import org.utbot.python.newtyping.general.* - -private val logger = KotlinLogging.logger {} - -class PythonTypeWrapperForEqualityCheck( - val type: UtType, - private val bounded: List = emptyList() -) { - init { - if (!type.isPythonType()) - error("Trying to create PythonTypeWrapperForEqualityCheck for non-Python type $type") - } - - override fun equals(other: Any?): Boolean { - if (other !is PythonTypeWrapperForEqualityCheck) - return false - val otherMeta = other.type.pythonDescription() - when (val selfMeta = type.pythonDescription()) { - is PythonTypeVarDescription -> { - if (type == other.type as? TypeParameter) - return true - val selfIndex = bounded.indexOf(type as? TypeParameter) - if (selfIndex == -1) - return false - val otherIndex = other.bounded.indexOf(other.type as? TypeParameter) - return selfIndex == otherIndex - } - is PythonCompositeTypeDescription -> { - return otherMeta is PythonCompositeTypeDescription && - otherMeta.name == selfMeta.name && - equalParameters(other) - } - is PythonCallableTypeDescription -> { - if (otherMeta !is PythonCallableTypeDescription) - return false - return selfMeta.argumentKinds == otherMeta.argumentKinds && - equalParameters(other) && - equalChildren( - selfMeta.getAnnotationParameters(type), - otherMeta.getAnnotationParameters(other.type), - other - ) - } - is PythonSpecialAnnotation -> { - if (otherMeta !is PythonSpecialAnnotation) - return false - return selfMeta.name == otherMeta.name && - equalChildren( - selfMeta.getAnnotationParameters(type), - otherMeta.getAnnotationParameters(other.type), - other - ) - } - } - } - - override fun hashCode(): Int { - return when (val selfMeta = type.pythonDescription()) { - is PythonTypeVarDescription -> { - val selfIndex = bounded.indexOf(type as? TypeParameter) - if (selfIndex == -1) - type.hashCode() - else - return selfIndex - } - else -> { - (listOf(selfMeta.name.hashCode()) + selfMeta.getAnnotationParameters(type).map { - getChildWrapper(it).hashCode() - }).hashCode() - } - } - } - - private fun equalChildren( - selfChildren: List, - otherChildren: List, - other: PythonTypeWrapperForEqualityCheck - ): Boolean { - if (selfChildren.size != otherChildren.size) - return false - return (selfChildren zip otherChildren).all { (selfElem, otherElem) -> - getChildWrapper(selfElem) == other.getChildWrapper(otherElem) - } - } - - private fun getChildWrapper(elem: UtType): PythonTypeWrapperForEqualityCheck { - return PythonTypeWrapperForEqualityCheck(elem, bounded + type.getBoundedParameters()) - } - - private fun equalParameters(other: PythonTypeWrapperForEqualityCheck): Boolean { - if (type.parameters.size != other.type.parameters.size) - return false - - val selfBoundedInd = type.getBoundedParametersIndexes() - val otherBoundedInd = other.type.getBoundedParametersIndexes() - - if (selfBoundedInd != otherBoundedInd) - return false - - // constraints for bounded parameters are not checked to avoid possible cyclic dependencies - - return (type.parameters zip other.type.parameters).all { - val (newEquivSelf, newEquivOther) = - if (it.first.isParameterBoundedTo(type)) - Pair(listOf(it.first as TypeParameter), listOf(it.second as TypeParameter)) - else - Pair(emptyList(), emptyList()) - PythonTypeWrapperForEqualityCheck(it.first, bounded + newEquivSelf) == - PythonTypeWrapperForEqualityCheck(it.second, other.bounded + newEquivOther) - } - } -} - -fun typesAreEqual(left: UtType, right: UtType): Boolean { - return PythonTypeWrapperForEqualityCheck(left) == PythonTypeWrapperForEqualityCheck(right) -} - -const val MAX_RECURSION_DEPTH = 100 - -class PythonSubtypeChecker( - val left: UtType, - val right: UtType, - private val pythonTypeStorage: PythonTypeHintsStorage, - private val typeParameterCorrespondence: List>, - private val assumingSubtypePairs: List>, - private val recursionDepth: Int, - private val skipFirstArgument: Boolean = false -) { - init { - if (!left.isPythonType() || !right.isPythonType()) - error("Trying to create PythonSubtypeChecker for non-Python types $left, $right") - } - - fun rightIsSubtypeOfLeft(): Boolean { - val leftWrapper = PythonTypeWrapperForEqualityCheck(left) - val rightWrapper = PythonTypeWrapperForEqualityCheck(right) - if (leftWrapper == rightWrapper) - return true - - if (typesAreEqual(left, pythonTypeStorage.pythonFloat) && typesAreEqual(right, pythonTypeStorage.pythonInt)) - return true - - // this is done to avoid possible infinite recursion - // TODO: probably more accuracy is needed here - if (assumingSubtypePairs.contains(Pair(leftWrapper, rightWrapper)) || assumingSubtypePairs.contains( - Pair( - rightWrapper, - leftWrapper - ) - ) - ) - return true - - val leftMeta = left.meta as PythonTypeDescription - val rightMeta = right.meta as PythonTypeDescription - - // subtype checking is not supported for types with bounded parameters, except CallableType - if (left.hasBoundedParameters() && leftMeta !is PythonCallableTypeDescription) - return false - if (right.hasBoundedParameters() && rightMeta !is PythonCallableTypeDescription) - return false - - if (rightMeta is PythonAnyTypeDescription) - return true - - // just in case - if (recursionDepth >= MAX_RECURSION_DEPTH) { - logger.warn("Recursion depth limit exceeded") - return false - } - - if (rightMeta is PythonTypeAliasDescription) - return PythonSubtypeChecker( - left = left, - right = PythonTypeAliasDescription.getInterior(right), - pythonTypeStorage, - typeParameterCorrespondence, assumingSubtypePairs, recursionDepth + 1 - ).rightIsSubtypeOfLeft() - - return when (leftMeta) { - is PythonAnyTypeDescription -> true - is PythonTypeAliasDescription -> caseOfLeftTypeAlias(leftMeta) - is PythonTypeVarDescription -> caseOfLeftTypeVar(leftMeta) - is PythonProtocolDescription -> caseOfLeftProtocol(leftMeta) - is PythonCallableTypeDescription -> caseOfLeftCallable(leftMeta) - is PythonUnionTypeDescription -> caseOfLeftUnion(leftMeta) - is PythonConcreteCompositeTypeDescription -> caseOfLeftCompositeType(leftMeta) - is PythonNoneTypeDescription -> rightMeta is PythonNoneTypeDescription - is PythonOverloadTypeDescription -> caseOfLeftOverload(leftMeta) - is PythonTupleTypeDescription -> caseOfLeftTupleType(leftMeta) - } - } - - @Suppress("unused_parameter") - private fun caseOfLeftTypeAlias(leftMeta: PythonTypeAliasDescription): Boolean { - return PythonSubtypeChecker( - left = PythonTypeAliasDescription.getInterior(left), - right = right, - pythonTypeStorage, - typeParameterCorrespondence, - nextAssumingSubtypePairs, - recursionDepth + 1 - ).rightIsSubtypeOfLeft() - } - - private fun caseOfLeftTupleType(leftMeta: PythonTupleTypeDescription): Boolean { - return when (val rightMeta = right.pythonDescription()) { - is PythonAnyTypeDescription -> true - is PythonTupleTypeDescription -> { - val leftAsCompositeType = leftMeta.castToCompatibleTypeApi(left) - val rightAsCompositeType = rightMeta.castToCompatibleTypeApi(right) - if (leftAsCompositeType.parameters.size != rightAsCompositeType.parameters.size) - false - else { - (leftAsCompositeType.parameters zip rightAsCompositeType.parameters).all { (leftMember, rightMember) -> - PythonSubtypeChecker( - left = leftMember, - right = rightMember, - pythonTypeStorage, - typeParameterCorrespondence, - nextAssumingSubtypePairs, - recursionDepth + 1 - ).rightIsSubtypeOfLeft() - } - } - } - else -> false - } - } - - private fun caseOfLeftOverload(leftMeta: PythonOverloadTypeDescription): Boolean { - val leftAsStatefulType = leftMeta.castToCompatibleTypeApi(left) - return leftAsStatefulType.parameters.all { - PythonSubtypeChecker( - left = it, - right = right, - pythonTypeStorage, - typeParameterCorrespondence, - nextAssumingSubtypePairs, - recursionDepth + 1 - ).rightIsSubtypeOfLeft() - } - } - - private fun caseOfLeftCompositeType(leftMeta: PythonConcreteCompositeTypeDescription): Boolean { - if (left.isPythonObjectType()) - return true - return when (val rightMeta = right.pythonDescription()) { - is PythonAnyTypeDescription -> true - is PythonConcreteCompositeTypeDescription -> { - val rightAsCompositeType = rightMeta.castToCompatibleTypeApi(right) - if (rightMeta.name == leftMeta.name) { - val origin = left.getOrigin() - (left.parameters zip right.parameters zip origin.parameters).all { - val (args, param) = it - val (leftArg, rightArg) = args - if (leftArg.pythonDescription() is PythonAnyTypeDescription || - rightArg.pythonDescription() is PythonAnyTypeDescription - ) - return@all true - val typeVarDescription = param.pythonDescription() - if (typeVarDescription !is PythonTypeVarDescription) // shouldn't be possible - return@all false - when (typeVarDescription.variance) { - PythonTypeVarDescription.Variance.INVARIANT -> false - PythonTypeVarDescription.Variance.COVARIANT -> - PythonSubtypeChecker( - left = leftArg, - right = rightArg, - pythonTypeStorage, - typeParameterCorrespondence, - nextAssumingSubtypePairs, - recursionDepth + 1 - ).rightIsSubtypeOfLeft() - PythonTypeVarDescription.Variance.CONTRAVARIANT -> - PythonSubtypeChecker( - left = rightArg, - right = leftArg, - pythonTypeStorage, - reverse(typeParameterCorrespondence), - nextAssumingSubtypePairs, - recursionDepth + 1 - ).rightIsSubtypeOfLeft() - } - } - } else { - rightAsCompositeType.supertypes.any { - PythonSubtypeChecker( - left = left, - right = it, - pythonTypeStorage, - typeParameterCorrespondence, - nextAssumingSubtypePairs, - recursionDepth + 1 - ).rightIsSubtypeOfLeft() - } - } - } - PythonTupleTypeDescription -> { - if (!typesAreEqual(left.getOrigin(), pythonTypeStorage.pythonTuple) || left.hasBoundedParameters()) - false - else { - right.pythonAnnotationParameters().all { - PythonSubtypeChecker( - left = left.parameters.first(), - right = it, - pythonTypeStorage, - typeParameterCorrespondence, - nextAssumingSubtypePairs, - recursionDepth + 1 - ).rightIsSubtypeOfLeft() - } - } - } - else -> false - } - } - - private fun caseOfLeftTypeVar(leftMeta: PythonTypeVarDescription): Boolean { - // TODO: more accurate case analysis - if (!typeParameterCorrespondence.any { it.first == left }) - return true // treat unbounded TypeVars like Any. TODO: here might occur false-positives - return when (val rightMeta = right.pythonDescription()) { - is PythonAnyTypeDescription -> true - is PythonTypeVarDescription -> caseOfLeftAndRightTypeVar(leftMeta, rightMeta) - else -> false - } - } - - @Suppress("unused_parameter") - private fun caseOfLeftUnion(leftMeta: PythonUnionTypeDescription): Boolean { - val children = PythonUnionTypeDescription.getAnnotationParameters(left) - return children.any { childType -> - PythonSubtypeChecker( - left = childType, - right = right, - pythonTypeStorage, - typeParameterCorrespondence, - nextAssumingSubtypePairs, - recursionDepth + 1 - ).rightIsSubtypeOfLeft() - } - } - - private fun caseOfLeftAndRightTypeVar( - leftMeta: PythonTypeVarDescription, - rightMeta: PythonTypeVarDescription - ): Boolean { - val leftParam = leftMeta.castToCompatibleTypeApi(left) - val rightParam = rightMeta.castToCompatibleTypeApi(right) - // TODO: more accurate case analysis - return typeParameterCorrespondence.contains(Pair(leftParam, rightParam)) - } - - private fun caseOfLeftProtocol(leftMeta: PythonProtocolDescription): Boolean { - val membersNotToCheck = listOf("__new__", "__init__") - return leftMeta.protocolMemberNames.subtract(membersNotToCheck).all { protocolMemberName -> - // there is a tricky case: importlib.metadata._meta.SimplePath - val neededAttribute = - left.getPythonAttributeByName(pythonTypeStorage, protocolMemberName) ?: return@all true - val rightAttribute = right.getPythonAttributeByName(pythonTypeStorage, protocolMemberName) ?: return false - val firstArgIsSelf = { description: PythonDefinitionDescription -> - (description is PythonFuncItemDescription) && description.args.isNotEmpty() && - description.args.first().isSelf - } - val description = neededAttribute.meta - val skipFirstArgument = - firstArgIsSelf(description) || - ((description is PythonOverloadedFuncDefDescription) && description.items.any(firstArgIsSelf)) - PythonSubtypeChecker( - left = neededAttribute.type, - right = rightAttribute.type, - pythonTypeStorage, - typeParameterCorrespondence, - nextAssumingSubtypePairs, - recursionDepth + 1, - skipFirstArgument - ).rightIsSubtypeOfLeft() - } - } - - private fun caseOfLeftCallable(leftMeta: PythonCallableTypeDescription): Boolean { - val rightCallAttributeAbstract = right.getPythonAttributeByName(pythonTypeStorage, "__call__")?.type - ?: return false - val leftAsFunctionType = leftMeta.castToCompatibleTypeApi(left) - - // TODO: more accurate work with argument binding? - - if (rightCallAttributeAbstract.pythonDescription() is PythonOverloadTypeDescription) { - val variants = rightCallAttributeAbstract.parameters - return variants.any { variant -> - PythonSubtypeChecker( - left = left, - right = variant, - pythonTypeStorage, - typeParameterCorrespondence, - nextAssumingSubtypePairs, - recursionDepth + 1, - skipFirstArgument - ).rightIsSubtypeOfLeft() - } - } - - val rightCallAttribute = rightCallAttributeAbstract as? FunctionType ?: return false - - // __call__(*args): in this case check only return type - if (leftMeta.argumentKinds.contains(PythonCallableTypeDescription.ArgKind.ARG_STAR)) { - return PythonSubtypeChecker( - left = leftAsFunctionType.returnValue, - right = rightCallAttribute.returnValue, - pythonTypeStorage, - typeParameterCorrespondence, - nextAssumingSubtypePairs, - recursionDepth + 1 - ).rightIsSubtypeOfLeft() - } - - if (rightCallAttribute.arguments.size != leftAsFunctionType.arguments.size) - return false - val leftBounded = leftAsFunctionType.getBoundedParameters() - val rightBounded = rightCallAttribute.getBoundedParameters() - - // TODO: more accurate case analysis - if (rightBounded.isNotEmpty() && leftBounded.size != rightBounded.size) - return false - - var newLeftAsFunctionType = leftAsFunctionType - - // TODO: here might occur false-positives - if (rightBounded.isEmpty() && leftBounded.isNotEmpty()) { - val newLeft = DefaultSubstitutionProvider.substitute(left, leftBounded.associateWith { pythonAnyType }) - newLeftAsFunctionType = leftMeta.castToCompatibleTypeApi(newLeft) - } - - val newCorrespondence = typeParameterCorrespondence + - if (rightBounded.isNotEmpty()) (leftBounded zip rightBounded) else emptyList() - - var args = newLeftAsFunctionType.arguments zip rightCallAttribute.arguments - if (skipFirstArgument) - args = args.drop(1) - - return args.all { (leftArg, rightArg) -> - PythonSubtypeChecker( - left = rightArg, - right = leftArg, - pythonTypeStorage, - reverse(newCorrespondence), - nextAssumingSubtypePairs, - recursionDepth + 1 - ).rightIsSubtypeOfLeft() - } && PythonSubtypeChecker( - left = newLeftAsFunctionType.returnValue, - right = rightCallAttribute.returnValue, - pythonTypeStorage, - newCorrespondence, - nextAssumingSubtypePairs, - recursionDepth + 1 - ).rightIsSubtypeOfLeft() - } - - private fun reverse(correspondence: List>): List> = - correspondence.map { Pair(it.second, it.first) } - - private val nextAssumingSubtypePairs: List> - by lazy { - if (left.pythonDescription() is PythonCompositeTypeDescription - && right.pythonDescription() is PythonCompositeTypeDescription - ) - assumingSubtypePairs + - listOf( - Pair( - PythonTypeWrapperForEqualityCheck(left), - PythonTypeWrapperForEqualityCheck(right) - ) - ) - else - assumingSubtypePairs - } - - companion object { - fun checkIfRightIsSubtypeOfLeft(left: UtType, right: UtType, pythonTypeStorage: PythonTypeHintsStorage): Boolean = - PythonSubtypeChecker( - left = left, - right = right, - pythonTypeStorage, - emptyList(), - emptyList(), - 0 - ).rightIsSubtypeOfLeft() - } -} \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeConstraintPropagation.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeConstraintPropagation.kt deleted file mode 100644 index c3d24d0d76..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeConstraintPropagation.kt +++ /dev/null @@ -1,98 +0,0 @@ -package org.utbot.python.newtyping - -import org.utbot.python.newtyping.general.FunctionType -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.general.TypeParameter -import org.utbot.python.newtyping.general.getOrigin - -enum class ConstraintKind { - LowerBound, - UpperBound, - BothSided -} - -fun reverseConstraintKind(kind: ConstraintKind): ConstraintKind { - return when (kind) { - ConstraintKind.LowerBound -> ConstraintKind.UpperBound - ConstraintKind.UpperBound -> ConstraintKind.LowerBound - ConstraintKind.BothSided -> ConstraintKind.BothSided - } -} - -data class TypeConstraint( - val type: UtType, - val kind: ConstraintKind -) - -// key of returned Map: index of annotationParameter -fun propagateConstraint(type: UtType, constraint: TypeConstraint, storage: PythonTypeHintsStorage): Map { - return when (val description = type.pythonDescription()) { - is PythonAnyTypeDescription, is PythonNoneTypeDescription, is PythonTypeVarDescription -> emptyMap() - is PythonOverloadTypeDescription -> emptyMap() // TODO - is PythonCallableTypeDescription -> emptyMap() // TODO - is PythonUnionTypeDescription -> emptyMap() // TODO - is PythonTupleTypeDescription -> emptyMap() // TODO - is PythonProtocolDescription -> emptyMap() // TODO - is PythonTypeAliasDescription -> emptyMap() // TODO - is PythonConcreteCompositeTypeDescription -> { - propagateConstraintForCompositeType(type, description, constraint, storage) - } - } -} - -private fun propagateConstraintForCompositeType( - type: UtType, - description: PythonCompositeTypeDescription, - constraint: TypeConstraint, - storage: PythonTypeHintsStorage -): Map { - return when (val constraintDescription = constraint.type.pythonDescription()) { - is PythonConcreteCompositeTypeDescription -> { - if (constraintDescription.name != description.name) - return emptyMap() // TODO: consider some cases here - val origin = type.getOrigin() - (constraint.type.parameters zip origin.parameters).mapIndexed { index, (constraintValue, param) -> - if ((param.pythonDescription() as? PythonTypeVarDescription)?.variance == PythonTypeVarDescription.Variance.COVARIANT) { - return@mapIndexed Pair(index, TypeConstraint(constraintValue, constraint.kind)) - } - if ((param.pythonDescription() as? PythonTypeVarDescription)?.variance == PythonTypeVarDescription.Variance.CONTRAVARIANT) { - return@mapIndexed Pair(index, TypeConstraint(constraintValue, reverseConstraintKind(constraint.kind))) - } - return@mapIndexed Pair(index, TypeConstraint(constraintValue, ConstraintKind.BothSided)) - }.associate { it } - } - is PythonProtocolDescription -> { - val collectedConstraints = mutableMapOf() - val origin = type.getOrigin() - constraintDescription.protocolMemberNames.forEach { - val abstractAttr = constraint.type.getPythonAttributeByName(storage, it) ?: return@forEach - val concreteAttr = origin.getPythonAttributeByName(storage, it) ?: return@forEach - // TODO: consider more cases - when (val desc = concreteAttr.type.pythonDescription()) { - is PythonTypeVarDescription -> { - collectedConstraints[concreteAttr.type] = - TypeConstraint(abstractAttr.type, ConstraintKind.UpperBound) - } - is PythonCallableTypeDescription -> { - val typeOfAbstract = abstractAttr.type - if (typeOfAbstract !is FunctionType) - return@forEach - val callable = desc.castToCompatibleTypeApi(concreteAttr.type) - (callable.arguments zip typeOfAbstract.arguments).forEach { (arg, abs) -> - if (arg is TypeParameter) - collectedConstraints[arg] = TypeConstraint(abs, ConstraintKind.UpperBound) - } - if (callable.returnValue is TypeParameter) - collectedConstraints[callable.returnValue] = - TypeConstraint(typeOfAbstract.returnValue, ConstraintKind.LowerBound) - } - else -> {} - } - } - origin.parameters.mapIndexedNotNull { ind, param -> - collectedConstraints[param]?.let { Pair(ind, it) } - }.associate { it } - } - else -> emptyMap() // TODO: consider some other cases here - } -} \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeCreationRoutines.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeCreationRoutines.kt deleted file mode 100644 index 42150d8851..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeCreationRoutines.kt +++ /dev/null @@ -1,78 +0,0 @@ -package org.utbot.python.newtyping - -import org.utbot.python.newtyping.general.CompositeTypeCreator -import org.utbot.python.newtyping.general.FunctionTypeCreator -import org.utbot.python.newtyping.general.Name -import org.utbot.python.newtyping.general.UtType - - -fun createIterableWithCustomReturn(returnType: UtType): UtType = - createUnaryProtocol("__iter__", returnType) - -fun supportsBoolProtocol(storage: PythonTypeHintsStorage): UtType = - createUnaryProtocol("__bool__", storage.pythonBool) - -fun createProtocolWithAttribute(attributeName: String, attributeType: UtType): UtType = - createPythonProtocol( - Name(emptyList(), "Supports_$attributeName"), - 0, - listOf(PythonVariableDescription(attributeName)), - listOf(attributeName) - ) { - CompositeTypeCreator.InitializationData( - members = listOf(attributeType), - supertypes = emptyList() - ) - } - - -fun createProtocolWithFunction(methodName: String, argTypes: List, returnType: UtType): UtType = - createPythonProtocol( - Name(emptyList(), "Supports_$methodName"), - 0, - listOf(PythonVariableDescription(methodName)), - listOf(methodName) - ) { self -> - CompositeTypeCreator.InitializationData( - members = listOf( - createPythonCallableType( - 0, - List(argTypes.size + 1) { PythonCallableTypeDescription.ArgKind.ARG_POS }, - listOf("self") + List(argTypes.size) { "" } - ) { - FunctionTypeCreator.InitializationData( - arguments = listOf(self) + argTypes, - returnValue = returnType - ) - } - ), - supertypes = emptyList() - ) - } - -fun createBinaryProtocol(methodName: String, argType: UtType, returnType: UtType): UtType = - createProtocolWithFunction(methodName, listOf(argType), returnType) - -fun createUnaryProtocol(methodName: String, returnType: UtType): UtType = - createProtocolWithFunction(methodName, emptyList(), returnType) - -fun createCallableProtocol(argBounds: List, returnBound: UtType): UtType = - createPythonProtocol( - Name(emptyList(), "SupportsCall"), - 0, - listOf(PythonVariableDescription("__call__")), - listOf("__call__") - ) { - CompositeTypeCreator.InitializationData( - members = listOf( - createPythonCallableType( - 0, - List(argBounds.size) { PythonCallableTypeDescription.ArgKind.ARG_POS }, - List(argBounds.size) { "" } - ) { - FunctionTypeCreator.InitializationData(argBounds, returnBound) - } - ), - supertypes = emptyList() - ) - } \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeHintsStorage.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeHintsStorage.kt deleted file mode 100644 index a5f1c3554a..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeHintsStorage.kt +++ /dev/null @@ -1,75 +0,0 @@ -package org.utbot.python.newtyping - -import org.utbot.python.newtyping.general.CompositeType -import org.utbot.python.newtyping.general.DefaultSubstitutionProvider -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.mypy.ClassDef -import org.utbot.python.newtyping.mypy.CompositeAnnotationNode -import org.utbot.python.newtyping.mypy.MypyAnnotation -import org.utbot.python.newtyping.mypy.MypyInfoBuild - -class PythonTypeHintsStorage( - val pythonObject: UtType, - val pythonBool: UtType, - val pythonList: UtType, - val pythonDict: UtType, - val pythonSet: UtType, - val pythonInt: UtType, - val pythonFloat: UtType, - val pythonComplex: UtType, - val pythonStr: UtType, - val pythonTuple: UtType, - val tupleOfAny: UtType, - val pythonSlice: UtType, - val allTypes: Set -) { - - val simpleTypes: List - get() = allTypes.filter { - val description = it.pythonDescription() - !description.name.name.startsWith("_") - && description is PythonConcreteCompositeTypeDescription - && !description.isAbstract - && !listOf("typing", "typing_extensions").any { mod -> description.name.prefix == listOf(mod) } - }.sortedBy { type -> if (type.pythonTypeName().startsWith("builtins")) 0 else 1 } - - companion object { - private fun getNestedClasses(cur: MypyAnnotation, result: MutableSet) { - val type = cur.asUtBotType - if (type is CompositeType && cur.node is CompositeAnnotationNode) { - result.add(type) - (cur.node as CompositeAnnotationNode).members.forEach { - if (it is ClassDef) - getNestedClasses(it.type, result) - } - } - } - fun get(mypyStorage: MypyInfoBuild): PythonTypeHintsStorage { - val module = mypyStorage.definitions["builtins"]!! - val allTypes: MutableSet = mutableSetOf() - mypyStorage.definitions.forEach { (_, curModule) -> - curModule.forEach { - if (it.value is ClassDef) - getNestedClasses(it.value.type, allTypes) - } - } - val tuple = module["tuple"]!!.type.asUtBotType - val tupleOfAny = DefaultSubstitutionProvider.substituteAll(tuple, listOf(pythonAnyType)) - return PythonTypeHintsStorage( - pythonObject = module["object"]!!.type.asUtBotType, - pythonBool = module["bool"]!!.type.asUtBotType, - pythonList = module["list"]!!.type.asUtBotType, - pythonDict = module["dict"]!!.type.asUtBotType, - pythonSet = module["set"]!!.type.asUtBotType, - pythonInt = module["int"]!!.type.asUtBotType, - pythonFloat = module["float"]!!.type.asUtBotType, - pythonComplex = module["complex"]!!.type.asUtBotType, - pythonStr = module["str"]!!.type.asUtBotType, - pythonTuple = tuple, - tupleOfAny = tupleOfAny, - pythonSlice = module["slice"]!!.type.asUtBotType, - allTypes = allTypes - ) - } - } -} \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/TypeCreation.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/TypeCreation.kt deleted file mode 100644 index c51ed56488..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/TypeCreation.kt +++ /dev/null @@ -1,83 +0,0 @@ -package org.utbot.python.newtyping.general - -object TypeCreator { - fun create(numberOfParameters: Int, meta: TypeMetaData, initialization: (Original) -> Unit): UtType { - val result = Original(numberOfParameters, meta) - initialization(result) - return result - } - class Original( - numberOfParameters: Int, - override val meta: TypeMetaData - ): UtType { - override val parameters: MutableList = - List(numberOfParameters) { TypeParameter(this) }.toMutableList() - } -} - -object FunctionTypeCreator { - fun create( - numberOfParameters: Int, - meta: TypeMetaData, - initialization: (Original) -> InitializationData - ): FunctionType { - val result = Original(numberOfParameters, meta) - val data = initialization(result) - result.arguments = data.arguments - result.returnValue = data.returnValue - return result - } - open class Original( - numberOfParameters: Int, - override val meta: TypeMetaData - ): FunctionType { - override val parameters: MutableList = - List(numberOfParameters) { TypeParameter(this) }.toMutableList() - override lateinit var arguments: List - override lateinit var returnValue: UtType - } - data class InitializationData( - val arguments: List, - val returnValue: UtType - ) -} - -/* -object StatefulTypeCreator { - fun create(parameters: List, members: List, meta: TypeMetaData): StatefulType { - return Original(parameters, members, meta) - } - class Original( - override val parameters: List, - override val members: List, - override val meta: TypeMetaData - ): StatefulType -} - */ - -object CompositeTypeCreator { - fun create( - numberOfParameters: Int, - meta: TypeMetaData, - initialization: (Original) -> InitializationData - ): CompositeType { - val result = Original(numberOfParameters, meta) - val data = initialization(result) - result.members = data.members - result.supertypes = data.supertypes - return result - } - open class Original( - numberOfParameters: Int, - override val meta: TypeMetaData - ): CompositeType { - override val parameters: MutableList = - List(numberOfParameters) { TypeParameter(this) }.toMutableList() - override lateinit var members: List - override lateinit var supertypes: List - } - data class InitializationData( - val members: List, - val supertypes: List - ) -} diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/TypeSubstitution.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/TypeSubstitution.kt deleted file mode 100644 index 8abdf73802..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/TypeSubstitution.kt +++ /dev/null @@ -1,153 +0,0 @@ -package org.utbot.python.newtyping.general - -object DefaultSubstitutionProvider: SubstitutionProvider() { - override fun substitute(type: UtType, params: Map): UtType = - when (type) { - is TypeParameter -> TypeParameterSubstitutionProvider(this).substitute(type, params) - is FunctionType -> FunctionTypeSubstitutionProvider(this).substitute(type, params) - is CompositeType -> CompositeTypeSubstitutionProvider(this).substitute(type, params) - // is StatefulType -> StatefulTypeSubstitutionProvider(this).substitute(type, params) - else -> TypeSubstitutionProvider(this).substitute(type, params) - } -} - -abstract class SubstitutionProvider { - abstract fun substitute(type: I, params: Map): O - fun substituteByIndex(type: I, index: Int, newParamValue: UtType): O { - val param = type.parameters[index] as? TypeParameter - ?: error("Cannot substitute parameter at index $index of type $type") - return substitute(type, mapOf(param to newParamValue)) - } - fun substituteAll(type: I, newParamValues: List): O { - val params = type.parameters.map { - it as? TypeParameter ?: error("Can apply substituteAll only to types without any substitutions") - } - return substitute(type, (params zip newParamValues).associate { it }) - } -} - -class TypeSubstitutionProvider( - private val provider: SubstitutionProvider -): SubstitutionProvider() { - override fun substitute(type: UtType, params: Map): UtType { - return Substitution(type, params, provider) - } - open class Substitution( - originForInitialization: UtType, - rawParams: Map, - provider: SubstitutionProvider - ): UtType, TypeSubstitution { - val newBoundedTypeParameters: Map = - originForInitialization.parameters.mapNotNull { - if ( - it is TypeParameter && - !rawParams.keys.contains(it) && - it.definedAt == originForInitialization - ) { - it to TypeParameter(this).let { newParam -> - newParam.constraints = substituteConstraints(it.constraints, provider, rawParams) - newParam.meta = it.meta - newParam - } - } else { - null - } - }.associate { it } - override val rawOrigin: UtType = originForInitialization - override val params: Map = rawParams - override val parameters: List by lazy { - rawOrigin.parameters.map { - provider.substitute(it, params + newBoundedTypeParameters) - } - } - override val meta: TypeMetaData - get() = rawOrigin.meta - } -} - -class FunctionTypeSubstitutionProvider( - private val provider: SubstitutionProvider -): SubstitutionProvider() { - override fun substitute(type: FunctionType, params: Map): FunctionType { - return Substitution(type, params, provider) - } - open class Substitution( - override val rawOrigin: FunctionType, - override val params: Map, - provider: SubstitutionProvider - ): FunctionType, TypeSubstitutionProvider.Substitution(rawOrigin, params, provider) { - override val arguments: List by lazy { - rawOrigin.arguments.map { provider.substitute(it, newBoundedTypeParameters + params) } - } - override val returnValue: UtType by lazy { - provider.substitute(rawOrigin.returnValue, newBoundedTypeParameters + params) - } - } -} - -/* -class StatefulTypeSubstitutionProvider( - private val provider: SubstitutionProvider -): SubstitutionProvider() { - override fun substitute(type: StatefulType, params: Map): StatefulType { - return Substitution(type, params, provider) - } - open class Substitution( - override val rawOrigin: StatefulType, - override val params: Map, - provider: SubstitutionProvider - ): StatefulType, TypeSubstitutionProvider.Substitution(rawOrigin, params, provider) { - override val members: List by lazy { - rawOrigin.members.map { provider.substitute(it, newBoundedTypeParameters + params) } - } - } -} - */ - -class CompositeTypeSubstitutionProvider( - private val provider: SubstitutionProvider -): SubstitutionProvider() { - override fun substitute(type: CompositeType, params: Map): CompositeType { - return Substitution(type, params, provider) - } - open class Substitution( - override val rawOrigin: CompositeType, - override val params: Map, - provider: SubstitutionProvider - ): CompositeType, TypeSubstitutionProvider.Substitution(rawOrigin, params, provider) { - override val supertypes: List by lazy { - rawOrigin.supertypes.map { provider.substitute(it, newBoundedTypeParameters + params) } - } - override val members: List by lazy { - rawOrigin.members.map { provider.substitute(it, newBoundedTypeParameters + params) } - } - } -} - -class TypeParameterSubstitutionProvider( - private val provider: SubstitutionProvider -): SubstitutionProvider() { - override fun substitute(type: TypeParameter, params: Map): UtType { - return params[type] ?: run { - type.constraints = substituteConstraints(type.constraints, provider, params) - type - } - } -} - -private fun substituteConstraints( - constraints: Set, - provider: SubstitutionProvider, - params: Map -) = - constraints.map { - TypeParameterConstraint( - relation = it.relation, - boundary = provider.substitute(it.boundary, params) - ) - }.toSet() - -interface TypeSubstitution { - val params: Map - val rawOrigin: UtType -} diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/TypeUtils.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/TypeUtils.kt deleted file mode 100644 index 7355a75bdb..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/TypeUtils.kt +++ /dev/null @@ -1,28 +0,0 @@ -package org.utbot.python.newtyping.general - -fun UtType.isParameterBoundedTo(type: UtType): Boolean = - (this is TypeParameter) && (this.definedAt == type) - -fun UtType.getBoundedParametersIndexes(): List = - parameters.mapIndexedNotNull { index, parameter -> - if (parameter.isParameterBoundedTo(this)) { - index - } else { - null - } - } - -fun UtType.getBoundedParameters(): List = - parameters.mapNotNull { parameter -> - if (parameter.isParameterBoundedTo(this)) { - parameter as TypeParameter - } else { - null - } - } - -fun UtType.hasBoundedParameters(): Boolean = - parameters.any { it.isParameterBoundedTo(this) } - -fun UtType.getOrigin(): UtType = - if (this is TypeSubstitution) rawOrigin.getOrigin() else this \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/UtType.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/UtType.kt deleted file mode 100644 index e88a70eb37..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/general/UtType.kt +++ /dev/null @@ -1,57 +0,0 @@ -package org.utbot.python.newtyping.general - -interface UtType { - val parameters: List - val meta: TypeMetaData -} - -// arguments and returnValue of FunctionType instance can recursively refer to it and its parameters -interface FunctionType: UtType { - val arguments: List - val returnValue: UtType -} - -/* -interface StatefulType: Type { - val members: List -} - */ - -// members and supertypes of CompositeType instance can recursively refer to it and its parameters -interface CompositeType: UtType { - val supertypes: List - val members: List -} - -open class TypeMetaData -open class TypeMetaDataWithName(val name: Name): TypeMetaData() { - override fun toString(): String { - return name.toString() - } -} - -class TypeParameter(val definedAt: UtType): UtType { - // tricky case with cyclic dependency; constraints may be changed after substitution - var constraints: Set = emptySet() - override var meta: TypeMetaData = TypeMetaData() - override val parameters: List = emptyList() -} - -class TypeRelation( - val name: String -) - -open class TypeParameterConstraint( - val relation: TypeRelation, - val boundary: UtType -) - -class Name(val prefix: List, val name: String) { - override fun toString(): String { - return if (prefix.isEmpty()) { - name - } else { - "${prefix.joinToString(".")}.$name" - } - } -} diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceNodes.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceNodes.kt deleted file mode 100644 index 63cd2f1170..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceNodes.kt +++ /dev/null @@ -1,36 +0,0 @@ -package org.utbot.python.newtyping.inference - -import org.utbot.python.newtyping.general.UtType - -interface TypeInferenceNode { - val partialType: UtType - val ingoingEdges: Collection - val outgoingEdges: Collection -} - -interface TypeInferenceEdge { - val from: TypeInferenceNode - val to: TypeInferenceNode -} - -interface TypeInferenceEdgeWithValue: TypeInferenceEdge { - val annotationParameterId: Int -} - -interface TypeInferenceEdgeWithBound: TypeInferenceEdge { - val boundType: BoundType - val dependency: (UtType) -> List - enum class BoundType { - Lower, - Upper - } -} - -fun addEdge(edge: TypeInferenceEdge) { - val fromEdgeStorage = edge.from.outgoingEdges - val toEdgeStorage = edge.to.ingoingEdges - if (fromEdgeStorage is MutableCollection) - fromEdgeStorage.add(edge) - if (toEdgeStorage is MutableCollection) - toEdgeStorage.add(edge) -} diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/GlobalNamesStorage.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/GlobalNamesStorage.kt deleted file mode 100644 index 7db3fe7e32..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/GlobalNamesStorage.kt +++ /dev/null @@ -1,60 +0,0 @@ -package org.utbot.python.newtyping.mypy - -import com.squareup.moshi.adapters.PolymorphicJsonAdapterFactory -import org.utbot.python.newtyping.general.UtType - -class GlobalNamesStorage(private val mypyStorage: MypyInfoBuild) { - fun resolveTypeName(module: String, name: String): UtType? { - val splitName = name.split(".") - if (splitName.size == 1) { - val nameFromStorage = mypyStorage.names[module]?.find { it.name == name } ?: return null - return when (nameFromStorage) { - is LocalTypeName -> mypyStorage.definitions[module]!![name]!!.getUtBotType() - is ImportedTypeName -> { - val split = nameFromStorage.fullname.split(".") - resolveTypeName(split.dropLast(1).joinToString("."), split.last()) - } - else -> null - } - } - val withoutLast = splitName.dropLast(1) - withoutLast.foldRight(Pair(withoutLast.joinToString("."), splitName.last())) { nextPart, (left, right) -> - val next = Pair(left.dropLast(nextPart.length).removeSuffix("."), "$nextPart.$right") - val nameFromStorage = (mypyStorage.names[module]?.find { it.name == left } as? ModuleName) - ?: return@foldRight next - val attempt = resolveTypeName(nameFromStorage.fullname, right) - if (attempt != null) - return attempt - next - } - withoutLast.foldRight(Pair(withoutLast.joinToString("."), splitName.last())) { nextPart, (left, right) -> - val next = Pair(left.dropLast(nextPart.length).removeSuffix("."), "$nextPart.$right") - mypyStorage.names["$module.$left"] ?: return@foldRight next - val attempt = resolveTypeName("$module.$left", right) - if (attempt != null) - return attempt - next - } - return null - } -} - -sealed class Name(val name: String) -class ModuleName(name: String, val fullname: String): Name(name) -class LocalTypeName(name: String): Name(name) -class ImportedTypeName(name: String, val fullname: String): Name(name) -class OtherName(name: String): Name(name) - -enum class NameType { - Module, - LocalType, - ImportedType, - Other -} - -val namesAdapter: PolymorphicJsonAdapterFactory = - PolymorphicJsonAdapterFactory.of(Name::class.java, "kind") - .withSubtype(ModuleName::class.java, NameType.Module.name) - .withSubtype(LocalTypeName::class.java, NameType.LocalType.name) - .withSubtype(ImportedTypeName::class.java, NameType.ImportedType.name) - .withSubtype(OtherName::class.java, NameType.Other.name) \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyAnnotations.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyAnnotations.kt deleted file mode 100644 index 4c52b31cf5..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyAnnotations.kt +++ /dev/null @@ -1,280 +0,0 @@ -package org.utbot.python.newtyping.mypy - -import org.utbot.python.newtyping.* -import org.utbot.python.newtyping.general.* -import org.utbot.python.utils.CustomPolymorphicJsonAdapterFactory - -class MypyAnnotation( - val nodeId: String, - val args: List? = null -) { - var initialized = false - @Transient lateinit var storage: MypyInfoBuild - val node: MypyAnnotationNode - get() { - val result = storage.nodeStorage[nodeId] - require(result != null) { - "Required node is absent in storage: $nodeId" - } - return result - } - val asUtBotType: UtType - get() { - require(initialized) - val origin = storage.getUtBotTypeOfNode(node) - if (origin.pythonDescription() is PythonAnyTypeDescription) - return origin - if (args != null) { - require(origin.parameters.size == args.size) { - "Bad arguments on ${origin.pythonTypeRepresentation()}. Expected ${origin.parameters.size} parameters but got ${args.size}" - } - require(origin.parameters.all { it is TypeParameter }) - val argTypes = args.map { it.asUtBotType } - return DefaultSubstitutionProvider.substitute( - origin, - (origin.parameters.map { it as TypeParameter } zip argTypes).toMap() - ) - } - return origin - } -} - -sealed class MypyAnnotationNode { - @Transient lateinit var storage: MypyInfoBuild - open val children: List = emptyList() - abstract fun initializeType(): UtType -} - -sealed class CompositeAnnotationNode( - val module: String, - val simpleName: String, - val members: List, - val typeVars: List, - val bases: List -): MypyAnnotationNode() { - override val children: List - get() = super.children + members.map { it.type } + typeVars + bases - fun getInitData(self: CompositeTypeCreator.Original): CompositeTypeCreator.InitializationData { - storage.nodeToUtBotType[this] = self - (typeVars zip self.parameters).forEach { (node, typeParam) -> - val typeVar = node.node as? TypeVarNode - require(typeVar != null) { - "Did not construct type variable" - } - storage.nodeToUtBotType[typeVar] = typeParam - typeParam.meta = PythonTypeVarDescription(Name(emptyList(), typeVar.varName), typeVar.variance, typeVar.kind) - typeParam.constraints = typeVar.constraints - } - val membersForType = members.mapNotNull { def -> - def.getUtBotDefinition()?.type // for now ignore inner types - } - val baseTypes = bases.map { it.asUtBotType } - return CompositeTypeCreator.InitializationData(membersForType, baseTypes) - } -} - - -class ConcreteAnnotation( - module: String, - simpleName: String, - members: List, - typeVars: List, - bases: List, - val isAbstract: Boolean -): CompositeAnnotationNode(module, simpleName, members, typeVars, bases) { - override fun initializeType(): UtType { - require(storage.nodeToUtBotType[this] == null) - return createPythonConcreteCompositeType( - Name(module.split('.'), simpleName), - typeVars.size, - members.mapNotNull { it.getUtBotDescription() }, - isAbstract - ) { self -> getInitData(self) } - } -} - - -class Protocol( - val protocolMembers: List, - module: String, - simpleName: String, - members: List, - typeVars: List, - bases: List -): CompositeAnnotationNode(module, simpleName, members, typeVars, bases) { - override fun initializeType(): UtType { - return createPythonProtocol( - Name(module.split('.'), simpleName), - typeVars.size, - members.mapNotNull { it.getUtBotDescription() }, - protocolMembers - ) { self -> getInitData(self) } - } -} - - -class FunctionNode( - val argTypes: List, // for now ignore other argument kinds - val returnType: MypyAnnotation, - val typeVars: List, - val argKinds: List, - var argNames: List, -): MypyAnnotationNode() { - override val children: List - get() = super.children + argTypes + listOf(returnType) - override fun initializeType(): UtType { - return createPythonCallableType( - typeVars.size, - argKinds, - argNames - ) { self -> - storage.nodeToUtBotType[this] = self - (typeVars zip self.parameters).forEach { (nodeId, typeParam) -> - val typeVar = storage.nodeStorage[nodeId] as? TypeVarNode - require(typeVar != null) { - "Did not construct type variable" - } - storage.nodeToUtBotType[typeVar] = typeParam - typeParam.meta = PythonTypeVarDescription(Name(emptyList(), typeVar.varName), typeVar.variance, typeVar.kind) - typeParam.constraints = typeVar.constraints - } - FunctionTypeCreator.InitializationData( - arguments = argTypes.map { it.asUtBotType }, - returnValue = returnType.asUtBotType - ) - } - } -} - - -class TypeVarNode( - val varName: String, - val values: List, - var upperBound: MypyAnnotation?, - val def: String, - val variance: PythonTypeVarDescription.Variance -): MypyAnnotationNode() { - override val children: List - get() = super.children + values + (upperBound?.let { listOf(it) } ?: emptyList()) - override fun initializeType(): UtType { - /*error( - "Initialization of TypeVar must be done in defining class or function." + - " TypeVar name: $varName, def_id: $def" - )*/ - // this a rare and bad case: - // https://github.com/sqlalchemy/sqlalchemy/blob/rel_2_0_20/lib/sqlalchemy/sql/sqltypes.py#L2091C5-L2091C23 - storage.nodeStorage[def]!!.initializeType() - return storage.nodeToUtBotType[this] ?: error("Error while initializing TypeVar name: $varName, def_id: $def") - } - val constraints: Set by lazy { - val upperBoundConstraint: Set = - upperBound?.let { setOf(TypeParameterConstraint(upperBoundRelation, it.asUtBotType)) } ?: emptySet() - values.map { TypeParameterConstraint(exactTypeRelation, it.asUtBotType) }.toSet() + upperBoundConstraint - } - val kind: PythonTypeVarDescription.ParameterKind - get() { - return if (values.isEmpty()) - PythonTypeVarDescription.ParameterKind.WithUpperBound - else { - upperBound = null - PythonTypeVarDescription.ParameterKind.WithConcreteValues - } - } -} - - -class PythonTuple( - val items: List -): MypyAnnotationNode() { - override val children: List - get() = super.children + items - override fun initializeType(): UtType { - return createPythonTupleType(items.map { it.asUtBotType }) - } -} - -class PythonAny: MypyAnnotationNode() { - override fun initializeType(): UtType { - return pythonAnyType - } -} - -//class PythonLiteral: PythonAnnotationNode("typing", "Literal", AnnotationType.Literal) - -class PythonUnion( - val items: List -): MypyAnnotationNode() { - override val children: List - get() = super.children + items - override fun initializeType(): UtType { - return createPythonUnionType(items.map { it.asUtBotType }) - } -} - -class PythonNoneType: MypyAnnotationNode() { - override fun initializeType(): UtType { - return pythonNoneType - } -} - -class OverloadedFunction( - val items: List -): MypyAnnotationNode() { - override val children: List - get() = super.children + items - override fun initializeType(): UtType { - return createOverload(items.map { it.asUtBotType }) - } -} - -class TypeAliasNode(val target: MypyAnnotation): MypyAnnotationNode() { - override val children: List - get() = super.children + target - override fun initializeType(): UtType { - return createPythonTypeAlias { self -> - storage.nodeToUtBotType[this] = self - target.asUtBotType - } - } -} - -class UnknownAnnotationNode: MypyAnnotationNode() { - override fun initializeType(): UtType { - return pythonAnyType - } -} - -enum class AnnotationType { - Concrete, - Protocol, - TypeVar, - Overloaded, - Function, - Any, - Literal, - Union, - Tuple, - NoneType, - TypeAlias, - Unknown -} - -val annotationAdapter = CustomPolymorphicJsonAdapterFactory( - MypyAnnotationNode::class.java, - contentLabel = "content", - keyLabel = "type", - mapOf( - AnnotationType.Concrete.name to ConcreteAnnotation::class.java, - AnnotationType.Protocol.name to Protocol::class.java, - AnnotationType.TypeVar.name to TypeVarNode::class.java, - AnnotationType.Overloaded.name to OverloadedFunction::class.java, - AnnotationType.Function.name to FunctionNode::class.java, - AnnotationType.Any.name to PythonAny::class.java, - // .withSubtype(PythonLiteral::class.java, AnnotationType.Literal.name) - AnnotationType.Union.name to PythonUnion::class.java, - AnnotationType.Tuple.name to PythonTuple::class.java, - AnnotationType.NoneType.name to PythonNoneType::class.java, - AnnotationType.TypeAlias.name to TypeAliasNode::class.java, - AnnotationType.Unknown.name to UnknownAnnotationNode::class.java - ) -) \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyBuild.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyBuild.kt deleted file mode 100644 index db29856b39..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyBuild.kt +++ /dev/null @@ -1,88 +0,0 @@ -package org.utbot.python.newtyping.mypy - -import com.squareup.moshi.Moshi -import com.squareup.moshi.kotlin.reflect.KotlinJsonAdapterFactory -import org.utbot.python.newtyping.general.* - -fun readMypyInfoBuild(mypyBuildDir: MypyBuildDirectory): MypyInfoBuild { - val result = readMypyInfoBuildWithoutRoot(mypyBuildDir.fileForAnnotationStorage.readText()) - result.buildRoot = mypyBuildDir - return result -} - -fun readMypyInfoBuildWithoutRoot(jsonWithAnnotations: String): MypyInfoBuild { - return jsonAdapter.fromJson(jsonWithAnnotations) ?: error("Couldn't parse json with mypy storage") -} - -private val moshi = Moshi.Builder() - .add(annotationAdapter) - .add(namesAdapter) - .add(definitionAdapter) - .addLast(KotlinJsonAdapterFactory()) - .build() - -private val jsonAdapter = moshi.adapter(MypyInfoBuild::class.java) - -class ExpressionTypeFromMypy( - val startOffset: Long, - val endOffset: Long, - val line: Long, - val type: MypyAnnotation -) - -class MypyInfoBuild( - val nodeStorage: Map, - val definitions: Map>, - val exprTypes: Map>, - val names: Map> -) { - @Transient lateinit var buildRoot: MypyBuildDirectory - private fun initAnnotation(annotation: MypyAnnotation) { - if (annotation.initialized) - return - annotation.storage = this - annotation.initialized = true - annotation.args?.forEach { initAnnotation(it) } - } - private fun fillArgNames(definition: MypyDefinition) { - val node = definition.type.node - if (node is ConcreteAnnotation) { - node.members.filterIsInstance().forEach { funcDef -> - val nodeInfo = nodeStorage[funcDef.type.nodeId] - if (nodeInfo is FunctionNode && nodeInfo.argNames.contains(null)) { - nodeInfo.argNames = nodeInfo.argNames.zip(funcDef.args).map { - it.first ?: (it.second as Variable).name - } - } - } - } - } - val nodeToUtBotType: MutableMap = mutableMapOf() - fun getUtBotTypeOfNode(node: MypyAnnotationNode): UtType { - //println("entering $node") - val mem = nodeToUtBotType[node] - if (mem != null) { - //println("exiting $node") - return mem - } - val res = node.initializeType() - nodeToUtBotType[node] = res - //println("exiting $node") - return res - } - init { - definitions.values.forEach { defsInModule -> - defsInModule.forEach { - initAnnotation(it.value.type) - fillArgNames(it.value) - } - } - exprTypes.values.flatten().forEach { - initAnnotation(it.type) - } - nodeStorage.values.forEach { node -> - node.storage = this - node.children.forEach { initAnnotation(it) } - } - } -} \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyDefinitions.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyDefinitions.kt deleted file mode 100644 index 16d810b5fd..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyDefinitions.kt +++ /dev/null @@ -1,82 +0,0 @@ -package org.utbot.python.newtyping.mypy - -import org.utbot.python.newtyping.* -import org.utbot.python.newtyping.general.FunctionType -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.utils.CustomPolymorphicJsonAdapterFactory - -sealed class MypyDefinition(val type: MypyAnnotation) { - fun getUtBotType(): UtType = type.asUtBotType - abstract fun getUtBotDescription(): PythonDefinitionDescription? - abstract fun getUtBotDefinition(): PythonDefinition? -} - -class Variable( - val name: String, - val isProperty: Boolean, - val isSelf: Boolean, - type: MypyAnnotation -): MypyDefinition(type) { - override fun getUtBotDescription(): PythonVariableDescription = - PythonVariableDescription(name, isProperty = isProperty, isSelf = isSelf) - override fun getUtBotDefinition(): PythonDefinition = - PythonDefinition(getUtBotDescription(), getUtBotType()) -} - -class ClassDef(type: MypyAnnotation): MypyDefinition(type) { - override fun getUtBotDefinition(): PythonDefinition? = null - override fun getUtBotDescription(): PythonDefinitionDescription? = null -} - -class FuncDef( - type: MypyAnnotation, - val args: List, - val name: String -): MypyDefinition(type) { - override fun getUtBotDescription(): PythonFuncItemDescription = - PythonFuncItemDescription( - name, - args.map { - val variable = it as Variable - PythonVariableDescription(variable.name, isProperty = variable.isProperty, isSelf = variable.isSelf) - } - ) - - override fun getUtBotDefinition(): PythonFunctionDefinition = - PythonFunctionDefinition(getUtBotDescription(), getUtBotType() as FunctionType) -} - -class OverloadedFuncDef( - type: MypyAnnotation, - val items: List, - val name: String -): MypyDefinition(type) { - override fun getUtBotDescription(): PythonOverloadedFuncDefDescription = - PythonOverloadedFuncDefDescription( - name, - items.mapNotNull { it.getUtBotDescription() } - ) - - override fun getUtBotDefinition(): PythonDefinition = - PythonDefinition(getUtBotDescription(), getUtBotType()) -} - - -enum class MypyDefinitionLabel { - Variable, - ClassDef, - FuncDef, - OverloadedFuncDef -} - -val definitionAdapter = CustomPolymorphicJsonAdapterFactory( - MypyDefinition::class.java, - contentLabel = "content", - keyLabel = "kind", - mapOf( - MypyDefinitionLabel.Variable.name to Variable::class.java, - MypyDefinitionLabel.ClassDef.name to ClassDef::class.java, - MypyDefinitionLabel.FuncDef.name to FuncDef::class.java, - MypyDefinitionLabel.OverloadedFuncDef.name to OverloadedFuncDef::class.java - ) -) \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/RunMypy.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/RunMypy.kt deleted file mode 100644 index bf76a12be6..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/RunMypy.kt +++ /dev/null @@ -1,126 +0,0 @@ -package org.utbot.python.newtyping.mypy - -import org.utbot.python.utils.runCommand -import java.io.File - -private const val configFilename = "config.ini" -private const val mypyCacheDirectoryName = ".mypy_cache" -private const val annotationsFilename = "annotations.json" -private const val mypyStdoutFilename = "mypy.out" -private const val mypyStderrFilename = "mypy.err" -private const val mypyExitStatusFilename = "mypy.exit" - -class MypyBuildDirectory( - val root: File, - val directoriesForSysPath: Set -) { - val configFile = File(root, configFilename) - val fileForAnnotationStorage = File(root, annotationsFilename) - val fileForMypyStdout = File(root, mypyStdoutFilename) - val fileForMypyStderr = File(root, mypyStderrFilename) - val fileForMypyExitStatus = File(root, mypyExitStatusFilename) - val dirForCache = File(root, mypyCacheDirectoryName) - - init { - val configContent = """ - [mypy] - mypy_path = ${directoriesForSysPath.joinToString(separator = ":") { it.modifyWindowsPath() } } - namespace_packages = True - cache_dir = ${dirForCache.absolutePath} - show_absolute_path = True - cache_fine_grained = True - check_untyped_defs = True - disable_error_code = assignment,union-attr - implicit_optional = True - strict_optional = False - allow_redefinition = True - local_partial_types = True - """.trimIndent() - writeText(configFile, configContent) - } -} - -fun buildMypyInfo( - pythonPath: String, - sourcePaths: List, - modules: List, - mypyBuildDir: MypyBuildDirectory, - moduleForTypes: String? = null, - indent: Int? = null -) { - val cmdPrefix = listOf( - pythonPath, - "-X", - "utf8", - "-m", - "utbot_mypy_runner", - "--config", - mypyBuildDir.configFile.absolutePath, - "--annotations_out", - mypyBuildDir.fileForAnnotationStorage.absolutePath, - "--mypy_stdout", - mypyBuildDir.fileForMypyStdout.absolutePath, - "--mypy_stderr", - mypyBuildDir.fileForMypyStderr.absolutePath, - "--mypy_exit_status", - mypyBuildDir.fileForMypyExitStatus.absolutePath, - ) - val cmdIndent = if (indent != null) listOf("--indent", indent.toString()) else emptyList() - val cmdSources = listOf("--sources") + sourcePaths.map { it.modifyWindowsPath() } - val cmdModules = listOf("--modules") + modules - val cmdModuleForTypes = if (moduleForTypes != null) listOf("--module_for_types", moduleForTypes) else emptyList() - val cmd = cmdPrefix + cmdIndent + cmdSources + cmdModules + cmdModuleForTypes - val result = runCommand(cmd) - val stderr = if (mypyBuildDir.fileForMypyStderr.exists()) mypyBuildDir.fileForMypyStderr.readText() else null - val stdout = if (mypyBuildDir.fileForMypyStdout.exists()) mypyBuildDir.fileForMypyStdout.readText() else null - val mypyExitStatus = if (mypyBuildDir.fileForMypyExitStatus.exists()) mypyBuildDir.fileForMypyExitStatus.readText() else null - if (result.exitValue != 0 || mypyExitStatus != "0") - error("Something went wrong in initial mypy run. " + - "\nPython stdout:\n${result.stdout}" + - "\nPython stderr:\n${result.stderr}" + - "\nMypy stderr:\n$stderr" + - "\nMypy stdout:\n$stdout") -} - -fun readMypyAnnotationStorageAndInitialErrors( - pythonPath: String, - sourcePath: String, - module: String, - mypyBuildDir: MypyBuildDirectory -): Pair> { - buildMypyInfo(pythonPath, listOf(sourcePath), listOf(module), mypyBuildDir, module) - return Pair( - readMypyInfoBuild(mypyBuildDir), - getErrorsAndNotes(mypyBuildDir.fileForMypyStdout.readText()) - ) -} - -data class MypyReportLine( - val line: Int, - val type: String, - val message: String, - val file: String -) - -fun getErrorNumber(mypyReport: List, filename: String, startLine: Int, endLine: Int) = - mypyReport.count { it.type == "error" && it.file == filename && it.line >= startLine && it.line <= endLine } - -fun getErrorsAndNotes(mypyOutput: String): List { - // logger.debug(mypyOutput) - val regex = Regex("(?m)^([^\n]*):([0-9]*): (error|note): ([^\n]*)\n") - return regex.findAll(mypyOutput).toList().map { match -> - val file = match.groupValues[1] - MypyReportLine( - match.groupValues[2].toInt(), - match.groupValues[3], - match.groupValues[4], - file - ) - } -} - -private fun writeText(file: File, content: String) { - file.parentFile?.mkdirs() - file.writeText(content) - file.createNewFile() -} \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/Utils.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/Utils.kt deleted file mode 100644 index 0c0c74df05..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/Utils.kt +++ /dev/null @@ -1,18 +0,0 @@ -package org.utbot.python.newtyping.mypy - -fun String.modifyWindowsPath(): String { - return if (this.contains(":")) { - val (disk, path) = this.split(":", limit = 2) - "\\\\localhost\\$disk$${path.replace("/", "\\")}" - } else this -} - -/** - * Remove .__init__ suffix if it exists. - It resolves problem with duplication module names in mypy, e.g. mod.__init__ and mod - */ -fun String.dropInitFile(): String { - return if (this.endsWith(".__init__")) { - this.dropLast(9) - } else this -} \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/utils/TypeUtils.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/utils/TypeUtils.kt deleted file mode 100644 index 45e138e5bf..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/utils/TypeUtils.kt +++ /dev/null @@ -1,13 +0,0 @@ -package org.utbot.python.newtyping.utils - -import org.utbot.python.newtyping.PythonCallableTypeDescription - -fun getOffsetLine(sourceFileContent: String, offset: Int): Int { - return sourceFileContent.take(offset).count { it == '\n' } + 1 -} - -fun isRequired(kind: PythonCallableTypeDescription.ArgKind) = - listOf(PythonCallableTypeDescription.ArgKind.ARG_POS, PythonCallableTypeDescription.ArgKind.ARG_NAMED).contains(kind) - -fun isNamed(kind: PythonCallableTypeDescription.ArgKind) = - listOf(PythonCallableTypeDescription.ArgKind.ARG_NAMED_OPT, PythonCallableTypeDescription.ArgKind.ARG_NAMED).contains(kind) \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/utils/CustomJsonAdapter.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/utils/CustomJsonAdapter.kt deleted file mode 100644 index 7b9138c015..0000000000 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/utils/CustomJsonAdapter.kt +++ /dev/null @@ -1,57 +0,0 @@ -package org.utbot.python.utils - -import com.squareup.moshi.* -import com.squareup.moshi.JsonAdapter.Factory -import java.lang.reflect.Type - -class CustomPolymorphicJsonAdapterFactory( - private val baseType: Type, - contentLabel: String, - keyLabel: String, - private val elementAdapters: Map -): Factory { - private val contentOption = JsonReader.Options.of(contentLabel) - private val keyLabelOption = JsonReader.Options.of(keyLabel) - private val labels = elementAdapters.keys.toList() - private val labelOptions = JsonReader.Options.of(*labels.toTypedArray()) - - class CustomPolymorphicJsonAdapter( - private val contentOption: JsonReader.Options, - private val keyLabelOption: JsonReader.Options, - private val adapters: List>, - private val labelOptions: JsonReader.Options - ): JsonAdapter() { - override fun fromJson(reader: JsonReader): Any? { - reader.beginObject() - - val index = reader.selectName(keyLabelOption) - if (index == -1) - return null - - val labelIndex = reader.selectString(labelOptions) - if (labelIndex == -1) - return null - - val contentIndex = reader.selectName(contentOption) - if (contentIndex == -1) - return null - - val result = adapters[labelIndex].fromJson(reader) - reader.endObject() - - return result - } - - override fun toJson(writer: JsonWriter, value: Any?) { - error("Writing with this Json adapter is not supported") - } - } - - override fun create(type: Type, annotations: MutableSet, moshi: Moshi): JsonAdapter<*>? { - if (Types.getRawType(type) != baseType || annotations.isNotEmpty()) { - return null - } - val adapters: List> = labels.map { moshi.adapter(elementAdapters[it]!!) } - return CustomPolymorphicJsonAdapter(contentOption, keyLabelOption, adapters, labelOptions) - } -} \ No newline at end of file diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/.gitignore b/utbot-python-types/src/main/python/utbot_mypy_runner/.gitignore deleted file mode 100644 index 8af07748b9..0000000000 --- a/utbot-python-types/src/main/python/utbot_mypy_runner/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -mypy_config.ini -out.json -.vscode/ \ No newline at end of file diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/README.md b/utbot-python-types/src/main/python/utbot_mypy_runner/README.md deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/pyproject.toml b/utbot-python-types/src/main/python/utbot_mypy_runner/pyproject.toml deleted file mode 100644 index 463e26f345..0000000000 --- a/utbot-python-types/src/main/python/utbot_mypy_runner/pyproject.toml +++ /dev/null @@ -1,16 +0,0 @@ -[tool.poetry] -name = "utbot_mypy_runner" -version = "0.2.17" -description = "" -authors = ["Ekaterina Tochilina "] -readme = "README.md" -packages = [{include = "utbot_mypy_runner"}] - -[tool.poetry.dependencies] -python = "^3.8" -mypy = "1.5.1" - - -[build-system] -requires = ["poetry-core"] -build-backend = "poetry.core.masonry.api" diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/__init__.py b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/__main__.py b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/__main__.py deleted file mode 100644 index 2fbe311f05..0000000000 --- a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/__main__.py +++ /dev/null @@ -1,54 +0,0 @@ -import argparse -import os - -import utbot_mypy_runner.mypy_main as mypy_main -import utbot_mypy_runner.extract_annotations as extraction - - -parser = argparse.ArgumentParser() -parser.add_argument('--config', required=True) -parser.add_argument('--sources', required=True, nargs='+') -parser.add_argument('--modules', required=True, nargs='+') -parser.add_argument('--annotations_out') -parser.add_argument('--mypy_stdout') -parser.add_argument('--mypy_stderr') -parser.add_argument('--mypy_exit_status') -parser.add_argument('--module_for_types') -parser.add_argument('--indent', type=int) - -args = parser.parse_args() - -if len(args.sources) != len(args.modules): - print("Sources must correspond to modules") - exit(10) - -mypy_args = ["--config-file", args.config] -for module_name in args.modules: - mypy_args += ["-m", module_name] - -stdout, stderr, exit_status, build_result = mypy_main.run(mypy_args) - -if args.mypy_stdout is not None: - with open(args.mypy_stdout, "w") as file: - file.write(stdout) - print("Wrote mypy stdout to", args.mypy_stdout) - -if args.mypy_stderr is not None: - with open(args.mypy_stderr, "w") as file: - file.write(stderr) - print("Wrote mypy stderr to", args.mypy_stderr) - -if args.mypy_exit_status is not None: - with open(args.mypy_exit_status, "w") as file: - file.write(str(exit_status)) - print("Wrote mypy exit status to", args.mypy_exit_status) - -if args.annotations_out is not None: - if build_result is not None: - with open(args.annotations_out, "w") as file: - sources = [os.path.abspath(x) for x in args.sources] - file.write(extraction.get_result_from_mypy_build(build_result, sources, args.module_for_types, args.indent)) - print("Extracted annotations and wrote to", args.annotations_out) - else: - print("For some reason BuildResult is None") - exit(11) \ No newline at end of file diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/expression_traverser.py b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/expression_traverser.py deleted file mode 100644 index 21d045f74b..0000000000 --- a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/expression_traverser.py +++ /dev/null @@ -1,180 +0,0 @@ -import typing as tp -import copy - -from mypy.nodes import * -from mypy.traverser import * -import mypy.types - -import utbot_mypy_runner.nodes as my_nodes - - -class MyTraverserVisitor(TraverserVisitor): - def __init__(self, types, processor: tp.Callable[[int, int, int, int, mypy.types.Type, Any], None], definitions: tp.Dict[str, Any], annotation_node_dict: tp.Dict[str, Any], meta: my_nodes.Meta): - self.types = types - self.processor = processor - self.meta: tp.Optional[my_nodes.Meta] = meta - self.depth = 0 - self.definitions = definitions - self.annotation_node_dict = annotation_node_dict - - def process_expression(self, o: Expression) -> None: - if self.meta is not None and o in self.types.keys() and not isinstance(self.types[o], mypy.types.AnyType) \ - and o.end_line is not None and o.end_column is not None and o.line >= 0: - self.processor(o.line, o.column, o.end_line, o.end_column, self.types[o], self.meta) - - def visit_name_expr(self, o: NameExpr) -> None: - self.process_expression(o) - super().visit_name_expr(o) - - def visit_member_expr(self, o: MemberExpr) -> None: - self.process_expression(o) - super().visit_member_expr(o) - - def visit_func(self, o: FuncItem) -> None: - old_meta = self.meta - definition: tp.Optional[my_nodes.Definition] = None - - containing_class: tp.Optional[my_nodes.AnnotationNode] = None - if old_meta is not None and old_meta.containing_class is not None: - containing_class = self.annotation_node_dict[old_meta.containing_class] - - if containing_class is not None and isinstance(containing_class, my_nodes.CompositeAnnotationNode): - definition = next((x for x in containing_class.members if isinstance(x, my_nodes.FuncDef) and x.name == o.name), None) - - elif self.depth == 0 and o.name in self.definitions.keys(): - definition = self.definitions[o.name] - - if definition is not None and old_meta is not None: - self.meta = copy.deepcopy(old_meta) - self.meta.fullname_to_node_id[""] = definition.type.node_id - else: - self.meta = None - - self.depth += 1 - #print("META after func:", self.meta) - #print("old meta:", self.meta) - #print("name:", o.name) - super().visit_func(o) - self.depth -= 1 - self.meta = old_meta - - def visit_class_def(self, o: ClassDef) -> None: - old_meta = self.meta - self.meta = copy.copy(old_meta) - - if self.meta is not None and o.name in self.definitions.keys(): - self.meta.containing_class = self.definitions[o.name].type.node_id - else: - self.meta = None - - self.depth += 1 - super().visit_class_def(o) - self.depth -= 1 - self.meta = old_meta - - -""" - def visit_yield_expr(self, o: YieldExpr) -> None: - self.process_expression(o) - super().visit_yield_expr(o) - - def visit_call_expr(self, o: CallExpr) -> None: - self.process_expression(o) - super().visit_call_expr(o) - - def visit_op_expr(self, o: OpExpr) -> None: - self.process_expression(o) - super().visit_op_expr(o) - - def visit_comparison_expr(self, o: ComparisonExpr) -> None: - self.process_expression(o) - super().visit_comparison_expr(o) - - def visit_slice_expr(self, o: SliceExpr) -> None: - self.process_expression(o) - super().visit_slice_expr(o) - - def visit_cast_expr(self, o: CastExpr) -> None: - self.process_expression(o) - super().visit_cast_expr(o) - - def visit_assert_type_expr(self, o: AssertTypeExpr) -> None: - self.process_expression(o) - super().visit_assert_type_expr(o) - - def visit_reveal_expr(self, o: RevealExpr) -> None: - self.process_expression(o) - super().visit_reveal_expr(o) - - def visit_assignment_expr(self, o: AssignmentExpr) -> None: - self.process_expression(o) - super().visit_assignment_expr(o) - - def visit_unary_expr(self, o: UnaryExpr) -> None: - self.process_expression(o) - super().visit_unary_expr(o) - - def visit_list_expr(self, o: ListExpr) -> None: - self.process_expression(o) - super().visit_list_expr(o) - - def visit_tuple_expr(self, o: TupleExpr) -> None: - self.process_expression(o) - super().visit_tuple_expr(o) - - def visit_dict_expr(self, o: DictExpr) -> None: - self.process_expression(o) - super().visit_dict_expr(o) - - def visit_set_expr(self, o: SetExpr) -> None: - self.process_expression(o) - super().visit_set_expr(o) - - def visit_index_expr(self, o: IndexExpr) -> None: - self.process_expression(o) - super().visit_index_expr(o) - - def visit_generator_expr(self, o: GeneratorExpr) -> None: - self.process_expression(o) - super().visit_generator_expr(o) - - def visit_dictionary_comprehension(self, o: DictionaryComprehension) -> None: - self.process_expression(o) - super().visit_dictionary_comprehension(o) - - def visit_list_comprehension(self, o: ListComprehension) -> None: - self.process_expression(o) - super().visit_list_comprehension(o) - - def visit_set_comprehension(self, o: SetComprehension) -> None: - self.process_expression(o) - super().visit_set_comprehension(o) - - def visit_conditional_expr(self, o: ConditionalExpr) -> None: - self.process_expression(o) - super().visit_conditional_expr(o) - - def visit_type_application(self, o: TypeApplication) -> None: - self.process_expression(o) - super().visit_type_application(o) - - def visit_lambda_expr(self, o: LambdaExpr) -> None: - self.process_expression(o) - super().visit_lambda_expr(o) - - def visit_star_expr(self, o: StarExpr) -> None: - self.process_expression(o) - super().visit_star_expr(o) - - def visit_backquote_expr(self, o: BackquoteExpr) -> None: - self.process_expression(o) - super().visit_backquote_expr(o) - - def visit_await_expr(self, o: AwaitExpr) -> None: - self.process_expression(o) - super().visit_await_expr(o) - - def visit_super_expr(self, o: SuperExpr) -> None: - self.process_expression(o) - super().visit_super_expr(o) -""" diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/extract_annotations.py b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/extract_annotations.py deleted file mode 100644 index 90a0f8b5c3..0000000000 --- a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/extract_annotations.py +++ /dev/null @@ -1,110 +0,0 @@ -import json -import mypy.nodes -import mypy.types -import typing as tp -import utbot_mypy_runner.expression_traverser as expression_traverser -import utbot_mypy_runner.mypy_main as mypy_main -import utbot_mypy_runner.names -from collections import defaultdict -from utbot_mypy_runner.nodes import * -from utbot_mypy_runner.utils import get_borders - - -class ExpressionType: - def __init__(self, start_offset: int, end_offset: int, line: int, type_: Annotation): - self.start_offset = start_offset - self.end_offset = end_offset - self.line = line - self.type_ = type_ - - def encode(self): - return { - "startOffset": self.start_offset, - "endOffset": self.end_offset, - "line": self.line, - "type": self.type_.encode() - } - - -def get_output_json(annotations: tp.Dict[str, tp.Dict[str, Definition]], - expression_types: tp.Dict[str, tp.List[ExpressionType]], - names_dict: tp.Dict[str, tp.List[utbot_mypy_runner.names.Name]], - indent: tp.Optional[int]): - node_storage_key = 'nodeStorage' - types_key = 'exprTypes' - definitions_key = 'definitions' - names_key = 'names' - - result: tp.Dict[str, tp.Any] = {node_storage_key: {}, types_key: {}} - for key in annotation_node_dict: - try: - encoded = annotation_node_dict[key].encode() - except: - # Partial AnnotationNode (probably because of NoTypeVarBindingException) - continue - result[node_storage_key][str(key)] = encoded - - result[definitions_key] = {} - for module in annotations.keys(): - result[definitions_key][module] = {} - for name in annotations[module].keys(): - result[definitions_key][module][name] = annotations[module][name].encode() - - for module in expression_types.keys(): - result[types_key][module] = [x.encode() for x in expression_types[module]] - - result[names_key] = {} - for module in names_dict.keys(): - result[names_key][module] = [x.encode() for x in names_dict[module]] - - return json.dumps(result, indent=indent) - - -def skip_node(node: mypy.nodes.SymbolTableNode) -> bool: - - if isinstance(node.node, mypy.nodes.TypeInfo): - x = node.node - return x.is_named_tuple or (x.typeddict_type is not None) or x.is_newtype or x.is_intersection - - return False - - -def get_result_from_mypy_build(build_result: mypy_main.build.BuildResult, source_paths: tp.List[str], - module_for_types: tp.Optional[str], indent=None) -> str: - annotation_dict: tp.Dict[str, tp.Dict[str, Definition]] = defaultdict(dict) - names_dict: tp.Dict[str, tp.List[utbot_mypy_runner.names.Name]] = utbot_mypy_runner.names.get_names(build_result) - for module in build_result.files.keys(): - mypy_file: mypy.nodes.MypyFile = build_result.files[module] - - for name in mypy_file.names.keys(): - symbol_table_node = build_result.files[module].names[name] - - if skip_node(symbol_table_node): - continue - - only_types = mypy_file.path not in source_paths - - try: - definitions = get_definition_from_symbol_node(symbol_table_node, Meta(module), name, only_types) - except NoTypeVarBindingException: - # Bad definition, like this one: - # https://github.com/sqlalchemy/sqlalchemy/blob/rel_2_0_20/lib/sqlalchemy/orm/mapped_collection.py#L521 - definitions = {} - - for def_name, definition in definitions.items(): - annotation_dict[module][def_name] = definition - - def processor(line, col, end_line, end_col, type_, meta): - expression_types[module_for_types].append( - ExpressionType(*get_borders(line, col, end_line, end_col, content), line, get_annotation(type_, meta))) - - expression_types: tp.Dict[str, tp.List[ExpressionType]] = defaultdict(list) - if module_for_types is not None: - mypy_file = build_result.files[module_for_types] - with open(mypy_file.path, "r") as file: - content = file.readlines() - meta = Meta(module_for_types) - traverser = expression_traverser.MyTraverserVisitor(build_result.types, processor, annotation_dict[module_for_types], annotation_node_dict, meta) - traverser.visit_mypy_file(build_result.files[module_for_types]) - - return get_output_json(annotation_dict, expression_types, names_dict, indent) diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/mypy_main.py b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/mypy_main.py deleted file mode 100644 index 2b2aedec68..0000000000 --- a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/mypy_main.py +++ /dev/null @@ -1,158 +0,0 @@ -from mypy.main import * - -import sys - -from io import StringIO -from typing import List, Tuple, TextIO, Callable, Optional, cast - - -""" -Copy with some changes of function 'main' from here: -https://github.com/python/mypy/blob/v1.5.1/mypy/main.py -""" -def new_main( - stdout: TextIO, - stderr: TextIO, - args: Optional[List[str]] = None, - clean_exit: bool = False -) -> Optional[build.BuildResult]: - """Main entry point to the type checker. - - Args: - args: Custom command-line arguments. If not given, sys.argv[1:] will - be used. - clean_exit: Don't hard kill the process on exit. This allows catching - SystemExit. - """ - util.check_python_version("mypy") - t0 = time.time() - # To log stat() calls: os.stat = stat_proxy - sys.setrecursionlimit(2**14) - if args is None: - args = sys.argv[1:] - - fscache = FileSystemCache() - sources, options = process_options(args, stdout=stdout, stderr=stderr, fscache=fscache) - - # CHANGE: export types of AST nodes - options.preserve_asts = True - options.export_types = True - - if clean_exit: - options.fast_exit = False - - formatter = util.FancyFormatter(stdout, stderr, options.hide_error_codes) - - if options.install_types and (stdout is not sys.stdout or stderr is not sys.stderr): - # Since --install-types performs user input, we want regular stdout and stderr. - fail("error: --install-types not supported in this mode of running mypy", stderr, options) - - if options.non_interactive and not options.install_types: - fail("error: --non-interactive is only supported with --install-types", stderr, options) - - if options.install_types and not options.incremental: - fail( - "error: --install-types not supported with incremental mode disabled", stderr, options - ) - - if options.install_types and options.python_executable is None: - fail( - "error: --install-types not supported without python executable or site packages", - stderr, - options, - ) - - # CHANGE - # if options.install_types and not sources: - # install_types(formatter, options, non_interactive=options.non_interactive) - # return - - res, messages, blockers = run_build(sources, options, fscache, t0, stdout, stderr) - - if options.non_interactive: - missing_pkgs = read_types_packages_to_install(options.cache_dir, after_run=True) - if missing_pkgs: - # Install missing type packages and rerun build. - install_types(formatter, options, after_run=True, non_interactive=True) - fscache.flush() - print() - res, messages, blockers = run_build(sources, options, fscache, t0, stdout, stderr) - show_messages(messages, stderr, formatter, options) - - if MEM_PROFILE: - from mypy.memprofile import print_memory_profile - - print_memory_profile() - - code = 0 - n_errors, n_notes, n_files = util.count_stats(messages) - if messages and n_notes < len(messages): - code = 2 if blockers else 1 - if options.error_summary: - if n_errors: - summary = formatter.format_error( - n_errors, n_files, len(sources), blockers=blockers, use_color=options.color_output - ) - stdout.write(summary + "\n") - # Only notes should also output success - elif not messages or n_notes == len(messages): - stdout.write(formatter.format_success(len(sources), options.color_output) + "\n") - stdout.flush() - - if options.install_types and not options.non_interactive: - result = install_types(formatter, options, after_run=True, non_interactive=False) - if result: - print() - print("note: Run mypy again for up-to-date results with installed types") - code = 2 - - return res - - -""" -Copy with some changes of mypy api functions from here: -https://github.com/python/mypy/blob/v0.971/mypy/api.py -""" -def _run( - main_wrapper: Callable[[TextIO, TextIO], Optional[build.BuildResult]] -) -> Tuple[str, str, int, Optional[build.BuildResult]]: - - stdout = StringIO() - stderr = StringIO() - - res = None - try: - res = main_wrapper(stdout, stderr) - exit_status = 0 - except SystemExit as system_exit: - exit_status = cast(int, system_exit.code) - - return stdout.getvalue(), stderr.getvalue(), exit_status, res - - -def run(args: List[str]) -> Tuple[str, str, int, Optional[build.BuildResult]]: - args.append("--no-incremental") - return _run(lambda stdout, stderr: new_main(args=args, stdout=stdout, stderr=stderr, clean_exit=True)) - - -if __name__ == "__main__": - import time - start = time.time() - stdout, stderr, exit_status, build_result = run(sys.argv[1:]) - print(f"Seconds passed: {time.time() - start}") - print(stdout, stderr, exit_status, sep='\n') - if build_result is None: - print("BuildResult is None") - else: - pass - #print(build_result.files['utbot_mypy_runner.nodes'].names['CompositeAnnotationNode'].node.names["module_key"].node.is_initialized_in_class) - #print(build_result.files['builtins'].names['str'].node.names["count"].node.arguments[2].initializer) - #print(build_result.files['dijkstra'].names['Dijkstra'].node.names['Node'].node.module_name) - #print(build_result.files['numpy'].names['ndarray'].module_public) - #print(build_result.files['_pytest.runner'].names[''].node.is_intersection) - #print(build_result.files['subtypes'].names['P'].node.names['f'].fullname) - #print([build_result.files['subtypes'].names[x].fullname for x in build_result.files['subtypes'].names]) - #print(build_result.files['collections'].names['deque'].node.mro) - #print(build_result.files['collections'].names['Counter'].node._promote) - #for x in build_result.files['builtins'].names['set'].node.defn.type_vars: - # print(type(x)) diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/names.py b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/names.py deleted file mode 100644 index e2e4ee0468..0000000000 --- a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/names.py +++ /dev/null @@ -1,71 +0,0 @@ -import typing as tp -import mypy.nodes -import utbot_mypy_runner.mypy_main as mypy_main - - -class Name: - def __init__(self, name, type_='Other'): - self.name = name - self.type_ = type_ - - def encode(self): - return {'name': self.name, 'kind': self.type_} - - -class ModuleName(Name): - def __init__(self, name, fullname): - super().__init__(name, 'Module') - self.fullname = fullname - - def encode(self): - superclass_dict = super().encode() - subclass_dict = {'fullname': self.fullname} - return dict(superclass_dict, **subclass_dict) - - -class LocalTypeName(Name): - def __init__(self, name): - super().__init__(name, 'LocalType') - - -class ImportedTypeName(Name): - def __init__(self, name, fullname): - super().__init__(name, 'ImportedType') - self.fullname = fullname - - def encode(self): - superclass_dict = super().encode() - subclass_dict = {'fullname': self.fullname} - return dict(superclass_dict, **subclass_dict) - - -def get_names_from_module(module_name: str, table: mypy.nodes.SymbolTable) -> tp.List[Name]: - result: tp.List[Name] = [] - for name in table.keys(): - # TODO: remove synthetic names - - node = table[name].node - - if isinstance(node, mypy.nodes.TypeInfo): - if node.is_intersection: - continue - - if node._fullname.startswith(module_name): - result.append(LocalTypeName(name)) - else: - result.append(ImportedTypeName(name, node._fullname)) - - elif isinstance(node, mypy.nodes.MypyFile): - result.append(ModuleName(name, node._fullname)) - - else: - result.append(Name(name)) - - return result - - -def get_names(build_result: mypy_main.build.BuildResult) -> tp.Dict[str, tp.List[Name]]: - names_dict: tp.Dict[str, tp.List[Name]] = {} - for module in build_result.files.keys(): - names_dict[module] = get_names_from_module(module, build_result.files[module].names) - return names_dict \ No newline at end of file diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/nodes.py b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/nodes.py deleted file mode 100644 index 0b350ed4ff..0000000000 --- a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/nodes.py +++ /dev/null @@ -1,585 +0,0 @@ -import copy -import mypy.nodes -import mypy.types -import sys -import typing as tp -from collections import defaultdict - -added_keys: tp.List[str] = [] -annotation_node_dict: tp.Dict[str, "AnnotationNode"] = {} -type_vars_of_node: tp.Dict[str, tp.List[str]] = defaultdict(list) -any_type_instance = mypy.types.AnyType(mypy.types.TypeOfAny.unannotated) -global_fullname_to_node_id: tp.Dict[str, str] = {} - - -if sys.version_info >= (3, 10): - EncodedInfo: tp.TypeAlias = tp.Union[str, bool, tp.Dict[str, 'EncodedInfo'], tp.List['EncodedInfo']] -else: - EncodedInfo = tp.Any - - -class Annotation: - node_id_key = "nodeId" - args_key = "args" # optional - - def __init__(self, node_id, args: tp.Optional[tp.List['Annotation']] = None): - self.node_id = node_id - self.args = args - - def encode(self) -> tp.Dict[str, EncodedInfo]: - result: tp.Dict[str, EncodedInfo] = { - self.node_id_key: str(self.node_id)} - if self.args is not None: - result[self.args_key] = [x.encode() for x in self.args] - return result - - -def encode_extension(super_encode: tp.Callable[[tp.Any], tp.Dict[str, EncodedInfo]]): - - def decorator(func: tp.Callable[[tp.Any], tp.Dict[str, EncodedInfo]]): - def wrapper(self) -> tp.Dict[str, EncodedInfo]: - superclass_dict = super_encode(self) - subclass_dict = func(self) - return dict(superclass_dict, **subclass_dict) - - return wrapper - - return decorator - - -class Encodable: - kind_key: str - content_key: str - kind_value: str - - def encode_outer(self, subobject: EncodedInfo) -> tp.Dict[str, EncodedInfo]: - return {self.kind_key: self.kind_value, self.content_key: subobject} - - def encode_inner(self) -> tp.Dict[str, EncodedInfo]: - return dict() - - def encode(self): - inner = self.encode_inner() - return self.encode_outer(inner) - - -class AnnotationNode(Encodable): - kind_key = 'type' - content_key = 'content' - - def __init__(self, annotation_type, id_, meta: 'Meta'): - self.kind_value = annotation_type - self.id_ = id_ - annotation_node_dict[id_] = self - added_keys.append(id_) - self.meta = copy.deepcopy(meta) - - def __eq__(self, other): - return self.id_ == other.id_ - - def __hash__(self): - return hash(self.id_) - - -class Definition(Encodable): - kind_key = 'kind' - content_key = 'content' - - def __init__(self, kind: str, meta: 'Meta'): - self.type: Annotation - self.kind_value = kind - self.meta = copy.deepcopy(meta) - - -class Variable(Definition): - kind = 'Variable' - - name_key = 'name' - is_property_key = 'isProperty' - is_self_key = 'isSelf' - type_key = 'type' - is_initialized_in_class_key = 'isInitializedInClass' - - def __init__(self, var: mypy.nodes.Var, meta: 'Meta'): - super().__init__(self.kind, meta) - self.name: str = var.name - self.is_property: bool = var.is_property - self.is_self: bool = var.is_self - self.is_initialized_in_class: bool = var.is_initialized_in_class - self.type: Annotation - try: - if var.type is None or self.meta.is_arg: - self.type = get_annotation(any_type_instance, self.meta) - else: - self.type = get_annotation(var.type, self.meta) - - except NoTypeVarBindingException: - self.type = get_annotation(any_type_instance, self.meta) - - - @encode_extension(Definition.encode_inner) - def encode_inner(self) -> tp.Dict[str, EncodedInfo]: - return { - self.name_key: self.name, - self.is_property_key: self.is_property, - self.is_self_key: self.is_self, - self.type_key: self.type.encode(), - self.is_initialized_in_class_key: self.is_initialized_in_class - } - - -class ClassDef(Definition): - kind = 'ClassDef' - - type_key = 'type' - - def __init__(self, type_info: mypy.nodes.TypeInfo, meta: 'Meta'): - super().__init__(self.kind, meta) - self.type: Annotation = get_annotation(mypy.types.Instance(type_info, []), self.meta) - - @encode_extension(Definition.encode_inner) - def encode_inner(self): - return {self.type_key: self.type.encode()} - - -class FuncDef(Definition): - kind = 'FuncDef' - - type_key = 'type' - args_key = 'args' - name_key = 'name' - - def __init__(self, func_def: mypy.nodes.FuncDef, meta: 'Meta'): - super().__init__(self.kind, meta) - self.type: Annotation - - if func_def.type is None: - node = FunctionNode(str(id(func_def)), self.meta, func_def) - self.type = Annotation(node.id_) - else: - self.type = get_annotation(func_def.type, self.meta) - - self.args: tp.List[Definition] = [] - self.name: str = func_def.name - self.meta.is_arg = True - for x in func_def.arguments: - defn = get_definition_from_node(x.variable, self.meta) - assert defn is not None - self.args.append(defn) - self.meta.is_arg = False - - @encode_extension(Definition.encode_inner) - def encode_inner(self): - return { - self.args_key: [x.encode() for x in self.args], - self.type_key: self.type.encode(), - self.name_key: self.name - } - - -class OverloadedFuncDef(Definition): - kind = 'OverloadedFuncDef' - - type_key = 'type' - items_key = 'items' - name_key = 'name' - - def __init__(self, func_def: mypy.nodes.OverloadedFuncDef, meta: 'Meta'): - super().__init__(self.kind, meta) - self.type: Annotation - if func_def.type is None: - self.type = get_annotation(any_type_instance, self.meta) - else: - self.type = get_annotation(func_def.type, self.meta) - - self.items: tp.List[Definition] = [] - for x in func_def.items: - cur = get_definition_from_node(x, self.meta) - assert cur is not None - self.items.append(cur) - - self.name: str = func_def.name - - @encode_extension(Definition.encode_inner) - def encode_inner(self): - return { - self.type_key: self.type.encode(), - self.items_key: [x.encode() for x in self.items], - self.name_key: self.name - } - - -class TypeVarNode(AnnotationNode): - annotation_type = 'TypeVar' - - var_name_key = 'varName' - values_key = 'values' - upper_bound_key = 'upperBound' - def_key = 'def' - variance_key = 'variance' - - # variance values - covariant = "COVARIANT" - contravariant = "CONTRAVARIANT" - invariant = "INVARIANT" - - def __init__(self, type_var: mypy.types.TypeVarType, id_: str, meta: 'Meta'): - super().__init__(self.annotation_type, id_, meta) - self.name: str = type_var.name - self.values: tp.List[Annotation] = [ - get_annotation(x, self.meta) - for x in type_var.values - ] - self.def_id: str = self.meta.fullname_to_node_id[type_var.id.namespace] - type_vars_of_node[self.def_id].append(id_) - self.upper_bound: Annotation = get_annotation(type_var.upper_bound, self.meta) - self.variance: str - if type_var.variance == mypy.nodes.COVARIANT: - self.variance = self.covariant - elif type_var.variance == mypy.nodes.CONTRAVARIANT: - self.variance = self.contravariant - else: - self.variance = self.invariant - - @encode_extension(AnnotationNode.encode_inner) - def encode_inner(self): - return { - self.var_name_key: self.name, - self.values_key: [x.encode() for x in self.values], - self.upper_bound_key: self.upper_bound.encode(), - self.def_key: self.def_id, - self.variance_key: self.variance - } - - -class FunctionNode(AnnotationNode): - annotation_type = 'Function' - - type_vars_key = 'typeVars' - arg_types_key = 'argTypes' - return_type_key = 'returnType' - arg_kinds_key = 'argKinds' - arg_names_key = 'argNames' - - # argKinds values - arg_pos = "ARG_POS" - arg_opt = "ARG_OPT" - arg_star = "ARG_STAR" - arg_star_2 = "ARG_STAR_2" - arg_named = "ARG_NAMED" - arg_named_opt = "ARG_NAMED_OPT" # TODO: is it needed? - - def __init__(self, id_: str, meta: 'Meta', type: tp.Union[mypy.types.CallableType, mypy.nodes.FuncItem]): - super().__init__(self.annotation_type, id_, meta) - self.type_vars: tp.List[str] - self.arg_types: tp.List[Annotation] - self.return_type: Annotation - self.arg_kinds: tp.List[str] - self.arg_names: tp.List[tp.Optional[str]] - - self.meta.fullname_to_node_id[''] = id_ - - if isinstance(type, mypy.types.CallableType): - self.arg_types = [get_annotation(x, meta=self.meta) for x in type.arg_types] - self.return_type = get_annotation(type.ret_type, self.meta) - self.arg_kinds = [self._get_arg_kind(x) for x in type.arg_kinds] - self.arg_names = type.arg_names - self.type_vars = type_vars_of_node[id_] - elif isinstance(type, mypy.nodes.FuncItem): - self.type_vars = [] - first_arg = [] - if len(type.arguments) and type.arguments[0].variable.is_self: - first_arg = [Annotation(self.meta.containing_class)] - elif len(type.arguments): - first_arg = [get_annotation(any_type_instance, meta=self.meta)] - - self.arg_types = first_arg + \ - [get_annotation(any_type_instance, meta=self.meta) - for _ in type.arguments[1:]] - self.return_type = get_annotation( - any_type_instance, meta=self.meta) - self.arg_kinds = [self._get_arg_kind(x) for x in type.arg_kinds] - self.arg_names = type.arg_names - else: - assert False, "Not reachable" - - def _get_arg_kind(self, kind): - if kind == mypy.nodes.ARG_POS: - return self.arg_pos - elif kind == mypy.nodes.ARG_OPT: - return self.arg_opt - elif kind == mypy.nodes.ARG_STAR: - return self.arg_star - elif kind == mypy.nodes.ARG_STAR2: - return self.arg_star_2 - elif kind == mypy.nodes.ARG_NAMED_OPT: - return self.arg_named_opt - elif kind == mypy.nodes.ARG_NAMED: - return self.arg_named - else: - assert False, "Not reachable" - - @encode_extension(AnnotationNode.encode_inner) - def encode_inner(self): - return { - self.type_vars_key: self.type_vars, - self.arg_types_key: [x.encode() for x in self.arg_types], - self.return_type_key: self.return_type.encode(), - self.arg_kinds_key: self.arg_kinds, - self.arg_names_key: self.arg_names - } - - -class CompositeAnnotationNode(AnnotationNode): - module_key = 'module' - simple_name_key = 'simpleName' - members_key = 'members' - type_vars_key = 'typeVars' - bases_key = 'bases' - - @staticmethod - def recordable(symbol_node: mypy.nodes.TypeInfo) -> bool: - type_vars = symbol_node.defn.type_vars - return all(isinstance(x, mypy.types.TypeVarType) for x in type_vars) - - def __init__(self, annotation_type: str, symbol_node: mypy.nodes.TypeInfo, id_, meta: 'Meta'): - assert self.recordable(symbol_node) - super().__init__(annotation_type, id_, meta) - self.meta.fullname_to_node_id[symbol_node._fullname] = id_ - self.module: str = symbol_node.module_name - self.simple_name: str = symbol_node._fullname[len(self.module)+1:] - global_fullname_to_node_id[symbol_node._fullname] = id_ - - self.raw_type_vars: tp.Sequence[mypy.types.Type] = symbol_node.defn.type_vars - self.type_vars: tp.List[Annotation] = [ - get_annotation(x, self.meta) for x in self.raw_type_vars - ] - - self.meta.containing_class = id_ - self.members: tp.List[Definition] = [] - for name in symbol_node.names.keys(): - inner_node = symbol_node.names[name].node - if inner_node is None: - continue - definition = get_definition_from_node(inner_node, self.meta) - if definition is not None: - self.members.append(definition) - - self.bases: tp.List[Annotation] = [ - get_annotation(x, self.meta) for x in symbol_node.bases] - - @encode_extension(AnnotationNode.encode_inner) - def encode_inner(self): - return { - self.module_key: self.module, - self.simple_name_key: self.simple_name, - self.members_key: [x.encode() for x in self.members], - self.type_vars_key: [x.encode() for x in self.type_vars], - self.bases_key: [x.encode() for x in self.bases] - } - - -class ConcreteAnnotationNode(CompositeAnnotationNode): - annotation_type = 'Concrete' - - is_abstract_key = 'isAbstract' - - def __init__(self, symbol_node: mypy.nodes.TypeInfo, id_, meta: 'Meta'): - assert not symbol_node.is_protocol - super().__init__(self.annotation_type, symbol_node, id_, meta) - self.is_abstract: bool = symbol_node.is_abstract - - @encode_extension(CompositeAnnotationNode.encode_inner) - def encode_inner(self): - return {self.is_abstract_key: self.is_abstract} - - -class ProtocolAnnotationNode(CompositeAnnotationNode): - annotation_type = 'Protocol' - - member_names_key = 'protocolMembers' - - def __init__(self, symbol_node: mypy.nodes.TypeInfo, id_, meta: 'Meta'): - assert symbol_node.is_protocol - super().__init__(self.annotation_type, symbol_node, id_, meta) - self.member_names: tp.List[str] = symbol_node.protocol_members - - @encode_extension(CompositeAnnotationNode.encode_inner) - def encode_inner(self): - return {self.member_names_key: self.member_names} - - -class AnnotationNodeWithItems(AnnotationNode): - items_key = 'items' - - def __init__(self, annotation_type: str, mypy_type, id_, namespace: 'Meta'): - super().__init__(annotation_type, id_, namespace) - self.items: tp.List[Annotation] = [ - get_annotation(x, self.meta) for x in mypy_type.items - ] - - @encode_extension(AnnotationNode.encode_inner) - def encode_inner(self): - return {self.items_key: [x.encode() for x in self.items]} - - -class TypeAliasNode(AnnotationNode): - annotation_type = 'TypeAlias' - - target_key = 'target' - - def __init__(self, alias: mypy.nodes.TypeAlias, id_: str, meta: 'Meta'): - super().__init__(self.annotation_type, id_, meta) - self.target: Annotation = get_annotation(alias.target, meta) - - @encode_extension(AnnotationNode.encode_inner) - def encode_inner(self): - return {self.target_key: self.target.encode()} - - -class Meta: - def __init__(self, module_name: str, is_arg: bool = False): - self.fullname_to_node_id: tp.Dict[str, str] = {} - self.module_name = module_name - self.is_arg = is_arg - self.containing_class = None - - -class NoTypeVarBindingException(Exception): - def __init__(self, namespace: str, keys): - self.namespace = namespace - self.keys = keys - - def __repr__(self): - return f"NoTypeVarBindingException({self.namespace}, {self.keys})" - - -def get_annotation_node(mypy_type: mypy.types.Type, meta: Meta) -> AnnotationNode: - if isinstance(mypy_type, mypy.types.Instance): - id_ = str(id(mypy_type.type)) - - elif isinstance(mypy_type, mypy.types.TypeVarType): - if mypy_type.id.namespace in meta.fullname_to_node_id.keys(): - node = meta.fullname_to_node_id[mypy_type.id.namespace] - - elif mypy_type.id.namespace in global_fullname_to_node_id.keys(): - node = global_fullname_to_node_id[mypy_type.id.namespace] - - else: - # this might happen, for example, if __init__ has its own type variables - raise NoTypeVarBindingException(mypy_type.id.namespace, meta.fullname_to_node_id.keys()) - - id_ = '.' + str(mypy_type.id.raw_id) + '.' + node - - elif isinstance(mypy_type, mypy.types.AnyType): - id_ = 'A' - - elif isinstance(mypy_type, mypy.types.NoneType): - id_ = 'N' - - else: - id_ = str(id(mypy_type)) - - if id_ in annotation_node_dict.keys(): - return annotation_node_dict[id_] - - result: tp.Optional[AnnotationNode] = None - - if isinstance(mypy_type, mypy.types.Instance) and CompositeAnnotationNode.recordable(mypy_type.type): - if mypy_type.type.is_protocol: - result = ProtocolAnnotationNode(mypy_type.type, id_, meta) - else: - result = ConcreteAnnotationNode(mypy_type.type, id_, meta) - - elif isinstance(mypy_type, mypy.types.CallableType): - result = FunctionNode(id_, meta, mypy_type) - - elif isinstance(mypy_type, mypy.types.Overloaded): # several signatures for one function - result = AnnotationNodeWithItems("Overloaded", mypy_type, id_, meta) - - elif isinstance(mypy_type, mypy.types.TypeVarType): - result = TypeVarNode(mypy_type, id_, meta) - - elif isinstance(mypy_type, mypy.types.AnyType): - result = AnnotationNode("Any", id_, meta) - - elif isinstance(mypy_type, mypy.types.TupleType): - result = AnnotationNodeWithItems("Tuple", mypy_type, id_, meta) - - elif isinstance(mypy_type, mypy.types.UnionType): - result = AnnotationNodeWithItems("Union", mypy_type, id_, meta) - - elif isinstance(mypy_type, mypy.types.NoneType): - result = AnnotationNode("NoneType", id_, meta) - - elif isinstance(mypy_type, mypy.types.TypeAliasType) and \ - mypy_type.alias is not None and len(mypy_type.args) == 0: - result = TypeAliasNode(mypy_type.alias, id_, meta) - - # TODO: consider LiteralType - - if result is None: - id_ = '0' - result = AnnotationNode("Unknown", id_, meta) - - assert id_ in annotation_node_dict.keys() - return result - - -def get_annotation(mypy_type: mypy.types.Type, meta: Meta) -> Annotation: - cur_node = get_annotation_node(mypy_type, meta) - - if isinstance(mypy_type, mypy.types.Instance): - children = [] - for arg in mypy_type.args: - children.append(get_annotation(arg, meta)) - - if len(children) == 0: - return Annotation(cur_node.id_) - else: - return Annotation(cur_node.id_, children) - - else: - return Annotation(cur_node.id_) - - -def get_definition_from_node(node: mypy.nodes.Node, meta: Meta, only_types: bool = False) -> tp.Optional[Definition]: - if isinstance(node, mypy.nodes.TypeInfo): - return ClassDef(node, meta) - elif not only_types and isinstance(node, mypy.nodes.FuncDef): - return FuncDef(node, meta) - elif not only_types and isinstance(node, mypy.nodes.OverloadedFuncDef): - return OverloadedFuncDef(node, meta) - elif not only_types and isinstance(node, mypy.nodes.Var): - return Variable(node, meta) - elif not only_types and isinstance(node, mypy.nodes.Decorator): - return Variable(node.var, meta) - else: - return None - - -def get_definition_from_symbol_node( - table_node: mypy.nodes.SymbolTableNode, - meta: Meta, - base_name: str, - only_types: bool = False -) -> tp.Dict[str, Definition]: - if table_node.node is None or not (table_node.node.fullname.startswith(meta.module_name)) \ - or not isinstance(table_node.node, mypy.nodes.Node): # this check is only for mypy - return {} - - definitions = {} - base_def = get_definition_from_node(table_node.node, meta, only_types) - if base_def is not None: - definitions[base_name] = base_def - - node = table_node.node - if isinstance(node, mypy.nodes.TypeInfo): - defn = node.defn - if isinstance(defn, mypy.nodes.ClassDef): - for inner_class in filter(lambda x: isinstance(x, mypy.nodes.ClassDef), defn.defs.body): - definitions[f"{base_name}.{inner_class.name}"] = ( - get_definition_from_node(inner_class.info, meta, only_types) - ) - - return definitions diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/utils.py b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/utils.py deleted file mode 100644 index 6d3fb12d27..0000000000 --- a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/utils.py +++ /dev/null @@ -1,37 +0,0 @@ -import typing as tp - - -def bad_symbol(c: str) -> bool: - return c.isspace() or c == '[' or c == '(' - - -def get_borders(line: int, column: int, end_line: int, end_column: int, - file_content: tp.List[str]) -> tp.Tuple[int, int]: - while bad_symbol(file_content[line - 1][column - 1]): - line, column = inc_position(line, column, file_content) - - while bad_symbol(file_content[end_line - 1][end_column - 1]): - end_line, end_column = dec_position(end_line, end_column, file_content) - - return get_offset(line, column, file_content), get_offset(end_line, end_column, file_content) - - -def get_offset(line: int, column: int, file_content: tp.List[str]) -> int: - return sum([len(x) for x in file_content[:line-1]]) + column - 1 - - -def inc_position(line: int, column: int, file_content: tp.List[str]) -> tp.Tuple[int, int]: - if column == len(file_content[line - 1]): - line += 1 - column = 1 - else: - column += 1 - return line, column - - -def dec_position(line: int, column: int, file_content: tp.List[str]) -> tp.Tuple[int, int]: - column -= 1 - if column == 0: - line -= 1 - column = len(file_content[line - 1]) - return line, column diff --git a/utbot-python-types/src/main/resources/utbot_mypy_runner_version b/utbot-python-types/src/main/resources/utbot_mypy_runner_version deleted file mode 100644 index dd767842d8..0000000000 --- a/utbot-python-types/src/main/resources/utbot_mypy_runner_version +++ /dev/null @@ -1 +0,0 @@ -0.2.17 \ No newline at end of file diff --git a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonCompositeTypeDescriptionTest.kt b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonCompositeTypeDescriptionTest.kt deleted file mode 100644 index c37a68722c..0000000000 --- a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonCompositeTypeDescriptionTest.kt +++ /dev/null @@ -1,63 +0,0 @@ -package org.utbot.python.newtyping - -import org.junit.jupiter.api.Assertions.* -import org.junit.jupiter.api.BeforeAll -import org.junit.jupiter.api.Test -import org.junit.jupiter.api.TestInstance -import org.utbot.python.newtyping.mypy.MypyInfoBuild -import org.utbot.python.newtyping.mypy.readMypyInfoBuildWithoutRoot - -@TestInstance(TestInstance.Lifecycle.PER_CLASS) -internal class PythonCompositeTypeDescriptionTest { - lateinit var storage: MypyInfoBuild - private lateinit var pythonTypeStorage: PythonTypeHintsStorage - @BeforeAll - fun setup() { - val sample = this::class.java.getResource("/annotation_tests.json")!!.readText() - storage = readMypyInfoBuildWithoutRoot(sample) - pythonTypeStorage = PythonTypeHintsStorage.get(storage) - } - - @Test - fun testMroForCounter() { - val counter = storage.definitions["collections"]!!["Counter"]!!.getUtBotType() - val counterDescription = counter.pythonDescription() as PythonCompositeTypeDescription - assertTrue( - counterDescription.mro(pythonTypeStorage, counter).map { it.pythonDescription().name.name } == listOf( - "Counter", "dict", "MutableMapping", "Mapping", "Collection", "Iterable", "Container", "object" - ) - ) - val dict = counterDescription.mro(pythonTypeStorage, counter).find { it.pythonDescription().name.name == "dict" }!! - assertTrue(dict.parameters.size == 2) - assertTrue(dict.parameters[0] == counter.parameters[0]) - assertTrue(dict.parameters[1].pythonDescription().name.name == "int") - - val mapping = counterDescription.mro(pythonTypeStorage, counter).find { it.pythonDescription().name.name == "Mapping" }!! - assertTrue(mapping.parameters.size == 2) - assertTrue(mapping.parameters[0] == counter.parameters[0]) - assertTrue(mapping.parameters[1].pythonDescription().name.name == "int") - } - - @Test - fun testMroForObject() { - val obj = storage.definitions["builtins"]!!["object"]!!.getUtBotType() - val description = obj.pythonDescription() as PythonCompositeTypeDescription - assertTrue( - description.mro(pythonTypeStorage, obj).map { it.pythonDescription().name.name } == listOf("object") - ) - } - - @Test - fun testMroForDeque() { - val deque = storage.definitions["collections"]!!["deque"]!!.getUtBotType() - val description = deque.pythonDescription() as PythonCompositeTypeDescription - assertTrue( - description.mro(pythonTypeStorage, deque).map { it.pythonDescription().name.name } == listOf( - "deque", "MutableSequence", "Sequence", "Collection", "Reversible", "Iterable", "Container", "object" - ) - ) - val iterable = description.mro(pythonTypeStorage, deque).find { it.pythonDescription().name.name == "Iterable" }!! - assertTrue(deque.parameters.size == 1) - assertTrue(iterable.parameters == deque.parameters) - } -} \ No newline at end of file diff --git a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonSubtypeCheckerTest.kt b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonSubtypeCheckerTest.kt deleted file mode 100644 index 70022a3f59..0000000000 --- a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonSubtypeCheckerTest.kt +++ /dev/null @@ -1,148 +0,0 @@ -package org.utbot.python.newtyping - -import org.junit.jupiter.api.Assertions.* -import org.junit.jupiter.api.BeforeAll -import org.junit.jupiter.api.Test -import org.junit.jupiter.api.TestInstance -import org.utbot.python.newtyping.PythonSubtypeChecker.Companion.checkIfRightIsSubtypeOfLeft -import org.utbot.python.newtyping.general.DefaultSubstitutionProvider -import org.utbot.python.newtyping.general.FunctionType -import org.utbot.python.newtyping.general.TypeParameter -import org.utbot.python.newtyping.mypy.MypyInfoBuild -import org.utbot.python.newtyping.mypy.readMypyInfoBuildWithoutRoot - -@TestInstance(TestInstance.Lifecycle.PER_CLASS) -internal class PythonSubtypeCheckerTest { - lateinit var storage: MypyInfoBuild - lateinit var pythonTypeStorage: PythonTypeHintsStorage - @BeforeAll - fun setup() { - val sample = PythonSubtypeCheckerTest::class.java.getResource("/subtypes.json")!!.readText() - storage = readMypyInfoBuildWithoutRoot(sample) - pythonTypeStorage = PythonTypeHintsStorage.get(storage) - } - - @Test - fun testCustomProtocol() { - val protocolP = storage.definitions["subtypes"]!!["P"]!!.getUtBotType() - assertTrue(protocolP.pythonDescription() is PythonProtocolDescription) - val classS = storage.definitions["subtypes"]!!["S"]!!.getUtBotType() - assertTrue(classS.pythonDescription() is PythonConcreteCompositeTypeDescription) - val classS1 = storage.definitions["subtypes"]!!["S1"]!!.getUtBotType() - assertTrue(classS1.pythonDescription() is PythonConcreteCompositeTypeDescription) - assertTrue(checkIfRightIsSubtypeOfLeft(protocolP, classS, pythonTypeStorage)) - assertFalse(checkIfRightIsSubtypeOfLeft(protocolP, classS1, pythonTypeStorage)) - } - - @Test - fun testCustomProtocolWithPossibleInfiniteRecursion() { - val protocolR = storage.definitions["subtypes"]!!["R"]!!.getUtBotType() - assertTrue(protocolR.pythonDescription() is PythonProtocolDescription) - val classRImpl = storage.definitions["subtypes"]!!["RImpl"]!!.getUtBotType() - assertTrue(classRImpl.pythonDescription() is PythonConcreteCompositeTypeDescription) - assertTrue(checkIfRightIsSubtypeOfLeft(protocolR, classRImpl, pythonTypeStorage)) - } - - @Test - fun testVariance() { - val list = storage.definitions["builtins"]!!["list"]!!.getUtBotType() - val frozenset = storage.definitions["builtins"]!!["frozenset"]!!.getUtBotType() - val int = storage.definitions["builtins"]!!["int"]!!.getUtBotType() - val obj = storage.definitions["builtins"]!!["object"]!!.getUtBotType() - val listOfInt = DefaultSubstitutionProvider.substitute(list, - mapOf(list.parameters.first() as TypeParameter to int) - ) - val listOfObj = DefaultSubstitutionProvider.substitute(list, - mapOf(list.parameters.first() as TypeParameter to obj) - ) - val listOfAny = DefaultSubstitutionProvider.substitute(list, - mapOf(list.parameters.first() as TypeParameter to pythonAnyType) - ) - val frozensetOfInt = DefaultSubstitutionProvider.substitute(frozenset, - mapOf(frozenset.parameters.first() as TypeParameter to int) - ) - val frozensetOfObj = DefaultSubstitutionProvider.substitute(frozenset, - mapOf(frozenset.parameters.first() as TypeParameter to obj) - ) - - // list is invariant - assertFalse(checkIfRightIsSubtypeOfLeft(listOfObj, listOfInt, pythonTypeStorage)) - assertTrue(checkIfRightIsSubtypeOfLeft(listOfAny, listOfInt, pythonTypeStorage)) - assertTrue(checkIfRightIsSubtypeOfLeft(listOfInt, listOfAny, pythonTypeStorage)) - - // frozenset is covariant - assertTrue(checkIfRightIsSubtypeOfLeft(frozensetOfObj, frozensetOfInt, pythonTypeStorage)) - assertFalse(checkIfRightIsSubtypeOfLeft(frozensetOfInt, frozensetOfObj, pythonTypeStorage)) - } - - @Test - fun testSimpleFunctionWithVariables() { - val b = storage.definitions["subtypes"]!!["b"]!!.getUtBotType() - val func = storage.definitions["subtypes"]!!["func_abs"]!!.getUtBotType() as FunctionType - - assertTrue(checkIfRightIsSubtypeOfLeft(func.arguments[0], b, pythonTypeStorage)) - } - - @Test - fun testSyntheticProtocol() { - val getItemProtocol = createBinaryProtocol("__getitem__", pythonAnyType, pythonAnyType) - val list = DefaultSubstitutionProvider.substituteAll( - storage.definitions["builtins"]!!["list"]!!.getUtBotType(), - listOf(pythonAnyType) - ) - - assertTrue(checkIfRightIsSubtypeOfLeft(getItemProtocol, list, pythonTypeStorage)) - } - - @Test - fun testNumpyArray() { - val numpyArray = storage.definitions["numpy"]!!["ndarray"]!!.getUtBotType() - val numpyArrayOfAny = DefaultSubstitutionProvider.substituteAll(numpyArray, listOf(pythonAnyType, pythonAnyType)) - val getItemProtocol = createBinaryProtocol("__getitem__", pythonTypeStorage.tupleOfAny, pythonAnyType) - - assertTrue(checkIfRightIsSubtypeOfLeft(getItemProtocol, numpyArrayOfAny, pythonTypeStorage)) - } - - @Test - fun testTuple() { - val tuple = storage.definitions["builtins"]!!["tuple"]!!.getUtBotType() - val tupleOfAny = DefaultSubstitutionProvider.substituteAll(tuple, listOf(pythonAnyType)) - val int = storage.definitions["builtins"]!!["int"]!!.getUtBotType() - val float = storage.definitions["builtins"]!!["float"]!!.getUtBotType() - val tupleOfInt = DefaultSubstitutionProvider.substituteAll(tuple, listOf(int)) - val tupleOfIntAndFloat = createPythonTupleType(listOf(int, float)) - - assertTrue(checkIfRightIsSubtypeOfLeft(tupleOfAny, tupleOfIntAndFloat, pythonTypeStorage)) - assertFalse(checkIfRightIsSubtypeOfLeft(tupleOfInt, tupleOfIntAndFloat, pythonTypeStorage)) - } - - @Test - fun testAbstractSet() { - val abstractSet = storage.definitions["typing"]!!["AbstractSet"]!!.getUtBotType() - assertTrue((abstractSet.pythonDescription() as PythonConcreteCompositeTypeDescription).isAbstract) - val set = storage.definitions["builtins"]!!["set"]!!.getUtBotType() - - val abstractSetOfAny = DefaultSubstitutionProvider.substituteByIndex(abstractSet, 0, pythonAnyType) - val setOfAny = DefaultSubstitutionProvider.substituteByIndex(set, 0, pythonAnyType) - - assertTrue(checkIfRightIsSubtypeOfLeft(abstractSetOfAny, setOfAny, pythonTypeStorage)) - } - - @Test - fun testSupportsCall() { - val hasF = storage.definitions["subtypes"]!!["HasF"]!!.getUtBotType() - val classS = storage.definitions["subtypes"]!!["S"]!!.getUtBotType() - - assertTrue(checkIfRightIsSubtypeOfLeft(hasF, classS, pythonTypeStorage)) - } - - @Test - fun testSupportsSpecificCall() { - val hasF = storage.definitions["subtypes"]!!["HasSpecificF"]!!.getUtBotType() - val classS = storage.definitions["subtypes"]!!["S"]!!.getUtBotType() - val classR = storage.definitions["subtypes"]!!["RImpl"]!!.getUtBotType() - - assertFalse(checkIfRightIsSubtypeOfLeft(hasF, classS, pythonTypeStorage)) - assertTrue(checkIfRightIsSubtypeOfLeft(hasF, classR, pythonTypeStorage)) - } -} \ No newline at end of file diff --git a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonTypeConstraintPropagationKtTest.kt b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonTypeConstraintPropagationKtTest.kt deleted file mode 100644 index 40cffeca77..0000000000 --- a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonTypeConstraintPropagationKtTest.kt +++ /dev/null @@ -1,37 +0,0 @@ -package org.utbot.python.newtyping - -import org.junit.jupiter.api.Assertions.* -import org.junit.jupiter.api.BeforeAll -import org.junit.jupiter.api.Test -import org.junit.jupiter.api.TestInstance -import org.utbot.python.newtyping.general.DefaultSubstitutionProvider -import org.utbot.python.newtyping.mypy.MypyInfoBuild -import org.utbot.python.newtyping.mypy.readMypyInfoBuildWithoutRoot - -@TestInstance(TestInstance.Lifecycle.PER_CLASS) -internal class PythonTypeConstraintPropagationKtTest { - lateinit var storage: MypyInfoBuild - lateinit var pythonTypeStorage: PythonTypeHintsStorage - @BeforeAll - fun setup() { - val sample = this::class.java.getResource("/annotation_tests.json")!!.readText() - storage = readMypyInfoBuildWithoutRoot(sample) - pythonTypeStorage = PythonTypeHintsStorage.get(storage) - } - - @Test - fun testSimpleCompositeTypePropagation() { - val dict = storage.definitions["builtins"]!!["dict"]!!.getUtBotType() - val str = storage.definitions["builtins"]!!["str"]!!.getUtBotType() - val int = storage.definitions["builtins"]!!["int"]!!.getUtBotType() - val dictOfAny = DefaultSubstitutionProvider.substituteAll(dict, listOf(pythonAnyType, pythonAnyType)) - val dictOfStrToInt = DefaultSubstitutionProvider.substituteAll(dict, listOf(str, int)) - val constraint = TypeConstraint(dictOfStrToInt, ConstraintKind.LowerBound) - val propagated = propagateConstraint(dictOfAny, constraint, pythonTypeStorage) - assertTrue(propagated.size == 2) - assertTrue(PythonTypeWrapperForEqualityCheck(propagated[0]!!.type) == PythonTypeWrapperForEqualityCheck(str)) - assertTrue(propagated[0]!!.kind == ConstraintKind.BothSided) - assertTrue(PythonTypeWrapperForEqualityCheck(propagated[1]!!.type) == PythonTypeWrapperForEqualityCheck(int)) - assertTrue(propagated[1]!!.kind == ConstraintKind.BothSided) - } -} \ No newline at end of file diff --git a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonTypeWrapperForEqualityCheckTest.kt b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonTypeWrapperForEqualityCheckTest.kt deleted file mode 100644 index 3b5db11323..0000000000 --- a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonTypeWrapperForEqualityCheckTest.kt +++ /dev/null @@ -1,60 +0,0 @@ -package org.utbot.python.newtyping - -import org.junit.jupiter.api.Assertions.* -import org.junit.jupiter.api.BeforeAll -import org.junit.jupiter.api.Test -import org.junit.jupiter.api.TestInstance -import org.utbot.python.newtyping.general.DefaultSubstitutionProvider -import org.utbot.python.newtyping.general.TypeParameter -import org.utbot.python.newtyping.mypy.MypyBuildKtTest -import org.utbot.python.newtyping.mypy.MypyInfoBuild -import org.utbot.python.newtyping.mypy.readMypyInfoBuildWithoutRoot - -@TestInstance(TestInstance.Lifecycle.PER_CLASS) -internal class PythonTypeWrapperForEqualityCheckTest { - lateinit var storage: MypyInfoBuild - @BeforeAll - fun setup() { - val sample = MypyBuildKtTest::class.java.getResource("/annotation_tests.json")!!.readText() - storage = readMypyInfoBuildWithoutRoot(sample) - } - - @Test - fun smokeTest() { - val int = storage.definitions["builtins"]!!["int"]!!.getUtBotType() - val set = storage.definitions["builtins"]!!["set"]!!.getUtBotType() - - assert(PythonTypeWrapperForEqualityCheck(int) == PythonTypeWrapperForEqualityCheck(int)) - assert(PythonTypeWrapperForEqualityCheck(int).hashCode() == PythonTypeWrapperForEqualityCheck(int).hashCode()) - assert(PythonTypeWrapperForEqualityCheck(int) != PythonTypeWrapperForEqualityCheck(set)) - assert(PythonTypeWrapperForEqualityCheck(int).hashCode() != PythonTypeWrapperForEqualityCheck(set).hashCode()) - } - - @Test - fun testSubstitutions() { - val int = storage.definitions["builtins"]!!["int"]!!.getUtBotType() - val set = storage.definitions["builtins"]!!["set"]!!.getUtBotType() - val set1 = DefaultSubstitutionProvider.substitute(set, emptyMap()) - val setOfInt = DefaultSubstitutionProvider.substitute(set, mapOf((set.parameters.first() as TypeParameter) to int)) - val setOfInt1 = DefaultSubstitutionProvider.substitute(set, mapOf((set.parameters.first() as TypeParameter) to int)) - - assert(set != set1) - assert(PythonTypeWrapperForEqualityCheck(set) == PythonTypeWrapperForEqualityCheck(set1)) - assert(PythonTypeWrapperForEqualityCheck(set).hashCode() == PythonTypeWrapperForEqualityCheck(set1).hashCode()) - - assert(setOfInt != setOfInt1) - assert(PythonTypeWrapperForEqualityCheck(setOfInt) == PythonTypeWrapperForEqualityCheck(setOfInt1)) - assert(PythonTypeWrapperForEqualityCheck(setOfInt).hashCode() == PythonTypeWrapperForEqualityCheck(setOfInt1).hashCode()) - } - - @Test - fun testBuiltinsModule() { - storage.definitions["builtins"]!!.forEach { (_, def) -> - val type = def.getUtBotType() - val type1 = DefaultSubstitutionProvider.substitute(type, emptyMap()) - assert(type != type1) - assert(PythonTypeWrapperForEqualityCheck(type) == PythonTypeWrapperForEqualityCheck(type1)) - assert(PythonTypeWrapperForEqualityCheck(type).hashCode() == PythonTypeWrapperForEqualityCheck(type1).hashCode()) - } - } -} \ No newline at end of file diff --git a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/general/DefaultSubstitutionProviderTest.kt b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/general/DefaultSubstitutionProviderTest.kt deleted file mode 100644 index 9aff91cba4..0000000000 --- a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/general/DefaultSubstitutionProviderTest.kt +++ /dev/null @@ -1,176 +0,0 @@ -package org.utbot.python.newtyping.general - -import org.junit.jupiter.api.Test -import org.junit.jupiter.api.Assertions.* - -internal class DefaultSubstitutionProviderTest { - @Test - fun test1() { - val unionOfTwo = TypeCreator.create(2, TypeMetaDataWithName(Name(listOf("typing"), "Union"))) {} - - val provider = DefaultSubstitutionProvider - val set = CompositeTypeCreator.create( - numberOfParameters = 1, - TypeMetaDataWithName(Name(listOf("builtins"), "set")) - ) { set -> - val T = set.parameters.first() - CompositeTypeCreator.InitializationData( - members = listOf( - FunctionTypeCreator.create( - numberOfParameters = 1, - TypeMetaData() - ) { self -> - val S = self.parameters.first() - FunctionTypeCreator.InitializationData( - arguments = listOf(provider.substitute(set, mapOf(T to S))), - returnValue = provider.substitute( - set, - mapOf( - T to DefaultSubstitutionProvider.substituteAll(unionOfTwo, listOf(T, S)) - ) - ) - ) - } - ), - supertypes = emptyList() - ) - } - assertTrue(set.members[0] is FunctionType) - val unionMethod = set.members[0] as FunctionType - assertTrue(unionMethod.arguments.size == 1) - assertTrue(unionMethod.arguments[0] is CompositeType) - val setOfS = unionMethod.arguments[0] as CompositeType - assertTrue(setOfS.members.size == 1) - assertTrue(setOfS.members[0] is FunctionType) - assertTrue((setOfS.members[0] as FunctionType).returnValue is CompositeType) - // (setOfS.members[0] as FunctionType).returnValue --- Set> - assertTrue(((setOfS.members[0] as FunctionType).returnValue.parameters[0]).parameters.let { it[0] != it[1] }) - val setOfUnionType = (setOfS.members[0] as FunctionType).returnValue as CompositeType - assertTrue(setOfUnionType.parameters.size == 1) - assertTrue((setOfUnionType.parameters[0].meta as TypeMetaDataWithName).name.name == "Union") - assertTrue(setOfUnionType.parameters[0].parameters.size == 2) - assertTrue(setOfUnionType.parameters[0].parameters.all { it is TypeParameter }) - - val compositeTypeDescriptor = CompositeTypeSubstitutionProvider(provider) - val T = set.parameters.first() as TypeParameter - val int = TypeCreator.create(0, TypeMetaDataWithName(Name(emptyList(), "int"))) {} - val setOfInt = compositeTypeDescriptor.substitute( - set, - mapOf(T to int) - ) - assertTrue(setOfInt.members[0] is FunctionType) - val unionMethod1 = setOfInt.members[0] as FunctionType - val innerUnionType = (unionMethod1.returnValue as CompositeType).parameters[0] - assertTrue(innerUnionType.parameters.size == 2) - assertTrue(((innerUnionType.parameters[0].meta as TypeMetaDataWithName).name.name == "int")) - assertTrue(innerUnionType.parameters[1] is TypeParameter) - - val setOfSets = compositeTypeDescriptor.substitute(set, mapOf(T to setOfInt)) - assertTrue(setOfSets.members[0] is FunctionType) - val unionMethod2 = setOfSets.members[0] as FunctionType - assertTrue((unionMethod2.returnValue as CompositeType).parameters[0].parameters.size == 2) - assertTrue((unionMethod2.returnValue as CompositeType).parameters[0].parameters[0] is CompositeType) - assertTrue((unionMethod2.returnValue as CompositeType).parameters[0].parameters[1] is TypeParameter) - } - - @Test - fun testCyclicParameter() { - var classA: CompositeType? = null - val classB = CompositeTypeCreator.create( - 1, - TypeMetaDataWithName(Name(emptyList(), "B")) - ) { classB -> - classA = CompositeTypeCreator.create( - 0, - TypeMetaDataWithName(Name(emptyList(), "A")) - ) { - CompositeTypeCreator.InitializationData( - members = listOf( - FunctionTypeCreator.create( - numberOfParameters = 0, - TypeMetaData() - ) { - FunctionTypeCreator.InitializationData( - arguments = emptyList(), - returnValue = classB - ) - } - ), - supertypes = emptyList() - ) - } - val paramT = classB.parameters.first() - paramT.constraints = setOf( - TypeParameterConstraint(TypeRelation(":"), classA!!) - ) - CompositeTypeCreator.InitializationData( - members = listOf( - FunctionTypeCreator.create( - numberOfParameters = 0, - TypeMetaData() - ) { - FunctionTypeCreator.InitializationData( - arguments = emptyList(), - returnValue = paramT - ) - } - ), - supertypes = listOf(classA!!) - ) - } - - assertTrue(classB.parameters.size == 1) - assertTrue((classB.parameters[0] as TypeParameter).constraints.size == 1) - assertTrue(classB.supertypes.size == 1) - assertTrue(classB.supertypes.first() == classA) - assertTrue((classA as CompositeType).members.size == 1) - assertTrue((classA as CompositeType).members[0] is FunctionType) - - val paramT = classB.parameters.first() as TypeParameter - val bOfA = DefaultSubstitutionProvider.substitute(classB, mapOf(paramT to classA!!)) as CompositeType - assertTrue(bOfA.parameters.size == 1) - assertTrue(bOfA.parameters[0] == classA) - assertTrue(bOfA.members.size == 1) - assertTrue(bOfA.members[0] is FunctionType) - assertTrue((bOfA.members[0] as FunctionType).returnValue == classA) - - val classC = CompositeTypeCreator.create( - numberOfParameters = 0, - TypeMetaDataWithName(Name(emptyList(), "C")) - ) { - CompositeTypeCreator.InitializationData( - members = emptyList(), - supertypes = listOf(bOfA), - ) - } - assertTrue(classC.supertypes.size == 1) - assertTrue(classC.supertypes.first() == bOfA) - } - - @Test - fun testSubstitutionInConstraint() { - val int = TypeCreator.create(0, TypeMetaDataWithName(Name(emptyList(), "int"))) {} - lateinit var classA: UtType - val dummyFunction = FunctionTypeCreator.create( - numberOfParameters = 1, - TypeMetaData() - ) { dummyFunction -> - val typeVarT = dummyFunction.parameters.first() - classA = CompositeTypeCreator.create( - numberOfParameters = 1, - TypeMetaDataWithName(Name(emptyList(), "A")) - ) { classA -> - val param = classA.parameters.first() - param.constraints = setOf(TypeParameterConstraint(TypeRelation(":"), typeVarT)) - CompositeTypeCreator.InitializationData( - members = emptyList(), - supertypes = emptyList() - ) - } - FunctionTypeCreator.InitializationData(arguments = emptyList(), returnValue = classA) - } - val typeVarT = dummyFunction.parameters.first() as TypeParameter - val substituted = DefaultSubstitutionProvider.substitute(classA, mapOf(typeVarT to int)) - assertTrue(substituted.parameters.map { it as TypeParameter }.first().constraints.first().boundary == int) - } -} \ No newline at end of file diff --git a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/GlobalNamesStorageTest.kt b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/GlobalNamesStorageTest.kt deleted file mode 100644 index 0941c16d47..0000000000 --- a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/GlobalNamesStorageTest.kt +++ /dev/null @@ -1,49 +0,0 @@ -package org.utbot.python.newtyping.mypy - -import org.junit.jupiter.api.Assertions.* -import org.junit.jupiter.api.BeforeAll -import org.junit.jupiter.api.Test -import org.junit.jupiter.api.TestInstance -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.general.TypeMetaDataWithName -import org.utbot.python.newtyping.pythonTypeRepresentation - -@TestInstance(TestInstance.Lifecycle.PER_CLASS) -internal class GlobalNamesStorageTest { - lateinit var namesStorage: GlobalNamesStorage - @BeforeAll - fun setup() { - val sample = MypyBuildKtTest::class.java.getResource("/import_test.json")!!.readText() - namesStorage = GlobalNamesStorage(readMypyInfoBuildWithoutRoot(sample)) - } - - @Test - fun testImportlib1() { - val pathFinderClass = namesStorage.resolveTypeName("import_test", "im.PathFinder") - assertTrue(pathFinderClass is UtType && (pathFinderClass.meta as TypeMetaDataWithName).name.name == "PathFinder") - } - - @Test - fun testImportlib2() { - val pathFinderClass = namesStorage.resolveTypeName("import_test", "importlib.machinery.PathFinder") - assertTrue(pathFinderClass is UtType && (pathFinderClass.meta as TypeMetaDataWithName).name.name == "PathFinder") - } - - @Test - fun testSimpleAsImport() { - val deque = namesStorage.resolveTypeName("import_test", "c.deque") - assertTrue(deque is UtType && deque.pythonTypeRepresentation().startsWith("collections.deque")) - } - - @Test - fun testImportFrom() { - val deque = namesStorage.resolveTypeName("import_test", "deque") - assertTrue(deque is UtType && deque.pythonTypeRepresentation().startsWith("collections.deque")) - } - - @Test - fun testLocal() { - val classA = namesStorage.resolveTypeName("import_test", "A") - assertTrue(classA is UtType && classA.pythonTypeRepresentation() == "import_test.A") - } -} \ No newline at end of file diff --git a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/MypyBuildKtTest.kt b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/MypyBuildKtTest.kt deleted file mode 100644 index 25aad494a7..0000000000 --- a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/MypyBuildKtTest.kt +++ /dev/null @@ -1,144 +0,0 @@ -package org.utbot.python.newtyping.mypy - -import org.junit.jupiter.api.Assertions.* -import org.junit.jupiter.api.BeforeAll -import org.junit.jupiter.api.Test -import org.junit.jupiter.api.TestInstance -import org.utbot.python.newtyping.* -import org.utbot.python.newtyping.general.* - -@TestInstance(TestInstance.Lifecycle.PER_CLASS) -internal class MypyBuildKtTest { - lateinit var storage: MypyInfoBuild - lateinit var typeStorage: PythonTypeHintsStorage - lateinit var storageBoruvka: MypyInfoBuild - @BeforeAll - fun setup() { - val sample = this::class.java.getResource("/annotation_tests.json")!!.readText() - storage = readMypyInfoBuildWithoutRoot(sample) - typeStorage = PythonTypeHintsStorage.get(storage) - val sample1 = this::class.java.getResource("/boruvka.json")!!.readText() - storageBoruvka = readMypyInfoBuildWithoutRoot(sample1) - } - - @Test - fun testDefinitions() { - val int = storage.definitions["builtins"]!!["int"]!!.getUtBotType() as CompositeType - assertTrue( - int.getPythonAttributes().map { it.meta.name }.containsAll( - listOf("__add__", "__sub__", "__pow__", "__abs__", "__or__", "__eq__") - ) - ) - - val set = storage.definitions["builtins"]!!["set"]!!.getUtBotType() as CompositeType - assertTrue( - set.getPythonAttributes().map { it.meta.name }.containsAll( - listOf("add", "copy", "difference", "intersection", "remove", "union") - ) - ) - } - - @Test - fun testUnionMethodOfSet() { - val set = storage.definitions["builtins"]!!["set"]!!.getUtBotType() as CompositeType - val unionMethod = set.getPythonAttributes().find { it.meta.name == "__or__" }!!.type as FunctionType - assertTrue(unionMethod.parameters.size == 1) - - val setOfUnion = unionMethod.returnValue as CompositeType - assertTrue(setOfUnion.getPythonAttributes().find { it.meta.name == "__or__" }!!.type.parameters.size == 1) - - val unionType = setOfUnion.parameters[0] - assert(unionType.pythonDescription().name == pythonUnionName) - - val s = unionType.parameters[1] as TypeParameter - val paramOfUnionMethod = setOfUnion.getPythonAttributes().find { it.meta.name == "__or__" }!!.type.parameters[0] as TypeParameter - assertTrue(s != paramOfUnionMethod) - } - - @Test - fun testSubstitution() { - val set = storage.definitions["builtins"]!!["set"]!!.getUtBotType() as CompositeType - val int = storage.definitions["builtins"]!!["int"]!!.getUtBotType() as CompositeType - val setOfInts = DefaultSubstitutionProvider.substitute( - set, - mapOf((set.parameters.first() as TypeParameter) to int) - ) as CompositeType - assertTrue(setOfInts.meta is PythonConcreteCompositeTypeDescription) - assertTrue((setOfInts.getPythonAttributes().find { it.meta.name == "add" }!!.type as FunctionType).arguments[1] == int) - } - - @Test - fun testSubstitution2() { - val counter = storage.definitions["collections"]!!["Counter"]!!.getUtBotType() as CompositeType - val int = storage.definitions["builtins"]!!["int"]!!.getUtBotType() as CompositeType - val counterOfInt = DefaultSubstitutionProvider.substituteByIndex(counter, 0, int) - val subtract = counterOfInt.getPythonAttributeByName(typeStorage, "subtract")!!.type.parameters[2] as FunctionType - val iterable = storage.definitions["typing"]!!["Iterable"]!!.getUtBotType() - val iterableOfInt = DefaultSubstitutionProvider.substituteByIndex(iterable, 0, int) - assertTrue(typesAreEqual(subtract.arguments.last(), iterableOfInt)) - } - - @Test - fun testUserClass() { - val classA = storage.definitions["annotation_tests"]!!["A"]!!.getUtBotType() as CompositeType - assertTrue(classA.parameters.size == 1) - assertTrue((classA.parameters[0] as TypeParameter).constraints.size == 2) - assertTrue((classA.parameters[0] as TypeParameter).definedAt === classA) - assertTrue( - (classA.parameters[0] as TypeParameter).constraints.any { - it.boundary.pythonDescription().name == classA.pythonDescription().name && it.relation == exactTypeRelation - } - ) - assertTrue( - (classA.parameters[0] as TypeParameter).constraints.all { - it.relation == exactTypeRelation - } - ) - } - - @Test - fun testUserFunction() { - val int = storage.definitions["builtins"]!!["int"]!!.getUtBotType() as CompositeType - val square = storage.definitions["annotation_tests"]!!["square"]!!.getUtBotType() as FunctionType - assertTrue(square.arguments[0].parameters[0].pythonDescription().name == int.pythonDescription().name) - } - - @Test - fun initializeAllTypes() { - storage.definitions.forEach { (_, contents) -> - contents.forEach { (_, annotation) -> - assert(annotation.getUtBotType().isPythonType()) - } - } - } - - @Test - fun testIncludedDefinitions() { - val defs = storage.definitions["annotation_tests"]!!.keys - assertTrue(listOf("Optional", "collections", "Enum", "Iterable", "list", "int").all { !defs.contains(it) }) - assertTrue(listOf("sequence", "enum_literal", "Color", "A", "tuple_").all { defs.contains(it) }) - } - - @Test - fun testFunctionArgNames() { - val square = storage.definitions["annotation_tests"]!!["square"]!!.getUtBotType() - assertTrue( - (square.pythonDescription() as PythonCallableTypeDescription).argumentNames == listOf("collection", "x") - ) - } - - @Test - fun testCustomClassAttributes() { - val A = storage.definitions["annotation_tests"]!!["A"]!!.getUtBotType() - val attrs = A.getPythonAttributes().map { it.meta.name } - assertTrue(attrs.containsAll(listOf("y", "x", "self_"))) - } - - @Test - fun testTypeAlias() { - val isinstance = storageBoruvka.exprTypes["boruvka"]!!.find { it.startOffset == 3701L }!!.type.asUtBotType - val func = isinstance as FunctionType - val classInfo = func.arguments[1] - assertTrue(classInfo.pythonDescription() is PythonTypeAliasDescription) - } -} \ No newline at end of file diff --git a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/ParseMypyBuild.kt b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/ParseMypyBuild.kt deleted file mode 100644 index e9428efe77..0000000000 --- a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/ParseMypyBuild.kt +++ /dev/null @@ -1,12 +0,0 @@ -package org.utbot.python.newtyping.mypy - -import java.io.File - -fun main() { - val started = System.currentTimeMillis() - val filename = "/home/tochilinak/Documents/projects/utbot/UTBotJava/utbot-python-types/src/main/python/utbot_mypy_runner/out.json" - val text = File(filename).readText() - println("Read text in ${System.currentTimeMillis() - started} ms") - readMypyInfoBuildWithoutRoot(text) - println("Finished in ${System.currentTimeMillis() - started} ms") -} \ No newline at end of file diff --git a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/samples/GenerateMypyInfoBuild.kt b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/samples/GenerateMypyInfoBuild.kt deleted file mode 100644 index 05347b3650..0000000000 --- a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/samples/GenerateMypyInfoBuild.kt +++ /dev/null @@ -1,20 +0,0 @@ -package org.utbot.python.newtyping.samples - -import org.utbot.python.newtyping.mypy.MypyBuildDirectory -import org.utbot.python.newtyping.mypy.buildMypyInfo -import java.io.File - -fun main(args: Array) { - val pythonPath = args[0] - val source = File(args[1]) - val module = args[2] - val buildDir = File(args[3]) - val jsonName = args[4] - val path = source.parent - val mypyDir = MypyBuildDirectory(buildDir, setOf(path)) - buildMypyInfo(pythonPath, listOf(source.canonicalPath), listOf(module), mypyDir, moduleForTypes = module, indent = null) - val jsonText = mypyDir.fileForAnnotationStorage.readText() - val output = File(jsonName) - output.writeText(jsonText) - output.createNewFile() -} \ No newline at end of file diff --git a/utbot-python-types/src/test/resources/annotation_tests.json b/utbot-python-types/src/test/resources/annotation_tests.json deleted file mode 100644 index 087789edb1..0000000000 --- a/utbot-python-types/src/test/resources/annotation_tests.json +++ /dev/null @@ -1 +0,0 @@ -{"nodeStorage": {"140265790227200": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748352016"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823590592"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823591040"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823591488"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823591936"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823592384"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823592832"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823593280"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823594176"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823594624"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823595072"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823595520"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823595968"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823596416"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823596864"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823597312"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823597760"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823598208"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823598656"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823599104"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823599552"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823600000"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823699008"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823699456"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823699904"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823700352"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823700800"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823701248"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823701696"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823702144"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823702592"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823703040"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823703488"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823703936"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823704384"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823704832"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823705280"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823705728"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823706176"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823706624"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823707072"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823707520"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823707968"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823708416"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823708864"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823709312"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823709760"}, "name": "zfill"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748352240"}, "items": [{"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "maketrans"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823711552"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823712000"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823712448"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823712896"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823713344"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823713792"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823714240"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823714688"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823862848"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823863296"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823863744"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823864192"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823864640"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823865088"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823865536"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}], "isAbstract": false}}, "140265748352016": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265823589696"}, {"nodeId": "140265823590144"}]}}, "140265823589696": {"type": "Function", "content": {"typeVars": [".0.140265823589696"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": ".0.140265823589696"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}}, "0": {"type": "Unknown", "content": {}}, "140265861254656": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765156592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265747836240"}, "items": [{"kind": "Variable", "content": {"name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710328000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832170432"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832170880"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832171328"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832171776"}, "name": "__delattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832172224"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832172672"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832173120"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832173568"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832174016"}, "name": "__hash__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832174464"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832174912"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832175360"}, "name": "__sizeof__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832175808"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832176256"}, "name": "__reduce_ex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832177600"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832178048"}, "name": "__init_subclass__"}}, {"kind": "Variable", "content": {"name": "__subclasshook__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710336064"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [], "isAbstract": false}}, "140265765156592": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "N": {"type": "NoneType", "content": {}}, "140265790229664": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743457008"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819574720"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819575168"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819575616"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819576064"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819576512"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743457456"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743458240"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743458576"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819579648"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819580096"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819580544"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819580992"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819581440"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819581888"}, "name": "__reversed__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819582336"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819582784"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819583232"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743458912"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}], "bases": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "isAbstract": false}}, ".1.140265790229664": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790229664", "variance": "INVARIANT"}}, ".2.140265790229664": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790229664", "variance": "INVARIANT"}}, "140265743457008": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819571136"}, {"nodeId": "140265819571584"}, {"nodeId": "140265819572032"}, {"nodeId": "140265819572480"}, {"nodeId": "140265819572928"}, {"nodeId": "140265819573376"}, {"nodeId": "140265819573824"}, {"nodeId": "140265819574272"}]}}, "140265819571136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819571584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".2.140265790229664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140265819572032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265764926944": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848368352"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848368800"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140265764926944"}, {"nodeId": ".2.140265764926944"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__getitem__", "keys"]}}, ".1.140265764926944": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764926944", "variance": "INVARIANT"}}, ".2.140265764926944": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764926944", "variance": "COVARIANT"}}, "140265848368352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265764926944"}, {"nodeId": ".2.140265764926944"}]}], "returnType": {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265764926944"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861259232": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739603968"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861259232"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__iter__"]}}, ".1.140265861259232": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861259232", "variance": "COVARIANT"}}, "140265739603968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265861259232"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861259232"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265861259584": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739607552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849141536"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140265861259584"}], "bases": [{"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265861259584"}]}], "protocolMembers": ["__iter__", "__next__"]}}, ".1.140265861259584": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861259584", "variance": "COVARIANT"}}, "140265739607552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861259584"}]}], "returnType": {"nodeId": ".1.140265861259584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265849141536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861259584"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861259584"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "A": {"type": "Any", "content": {}}, "140265848368800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265764926944"}, {"nodeId": ".2.140265764926944"}]}, {"nodeId": ".1.140265764926944"}], "returnType": {"nodeId": ".2.140265764926944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819572480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": "140265764926944", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".2.140265790229664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265819572928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265743457904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265743457904": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}}, "140265819573376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265743458128"}]}, {"nodeId": ".2.140265790229664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265743458128": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265790229664"}]}}, "140265819573824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265790229312": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743455216"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819426368"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819426816"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819427264"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819427712"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819428160"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819428608"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819429056"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819429504"}, "name": "remove"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743455328"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819430848"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819431296"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743456448"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743456560"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819433536"}, "name": "__delitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743456784"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819434880"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819435328"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819435776"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819436224"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819436672"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819437120"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819437568"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819438016"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819438464"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819570240"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819570688"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265790229312"}], "bases": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265790229312"}]}], "isAbstract": false}}, ".1.140265790229312": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790229312", "variance": "INVARIANT"}}, "140265743455216": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819425472"}, {"nodeId": "140265819425920"}]}}, "140265819425472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819425920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819426368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819426816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": ".1.140265790229312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819427264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819427712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".1.140265790229312"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265789863040": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265744211904"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__index__"]}}, "140265744211904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861266272": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748115552"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836455616"}, "name": "as_integer_ratio"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710198944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710198272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710199840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710200288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836457856"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836458304"}, "name": "bit_length"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836458752"}, "name": "bit_count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836460096"}, "name": "to_bytes"}}, {"kind": "Variable", "content": {"name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710200064"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836461440"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823240256"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823240704"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823241152"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823241600"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823242048"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823242496"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823242944"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823243392"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823243840"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823244288"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823244736"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823245184"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823245632"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748116672"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823248768"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823249216"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823249664"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823250112"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823250560"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823251008"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823251456"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823251904"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823252352"}, "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823252800"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823253248"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823253696"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823254144"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823254592"}, "name": "__invert__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823255040"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823255488"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823255936"}, "name": "__floor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823322176"}, "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823322624"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823323072"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823323520"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823323968"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823324416"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823324864"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823325312"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823325760"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823326208"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823326656"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823327104"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823327552"}, "name": "__index__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265748115552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265836454720"}, {"nodeId": "140265836455168"}]}}, "140265836454720": {"type": "Function", "content": {"typeVars": [".0.140265836454720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265748117344"}], "returnType": {"nodeId": ".0.140265836454720"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140265748117344": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789865152"}, {"nodeId": "140265789849664"}, {"nodeId": "140265789863040"}, {"nodeId": "140265764926240"}]}}, "140265789865152": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "Buffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827350368"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__buffer__"]}}, "140265827350368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265790228256": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "content": {"name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706423680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706424576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706424352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706424800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706425024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706423232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706425920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706426144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706425696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706426592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706426816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706425472"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819151424"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819151872"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819152320"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819152768"}, "name": "cast"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743450624"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819154112"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819154560"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819155008"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743451632"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819156352"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819157696"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819158144"}, "name": "toreadonly"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819158592"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819159040"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819159936"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819275328"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265706423680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706424576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706424352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265743451296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743451296": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "N"}]}}, "140265790228960": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819284736"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819285184"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819285632"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743453648"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819286976"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819287424"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819287872"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819288320"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819288768"}, "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743455104"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819290112"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819290560"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819291008"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819422784"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819423232"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265790228960"}], "bases": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265790228960"}]}], "isAbstract": false}}, ".1.140265790228960": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790228960", "variance": "COVARIANT"}}, "140265819284736": {"type": "Function", "content": {"typeVars": [".0.140265819284736"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": ".0.140265819284736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, ".0.140265819284736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, "def": "140265819284736", "variance": "INVARIANT"}}, "140265819285184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819285632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265861255360": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819275776"}, "name": "__new__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743452192"}, "items": [{"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__and__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743452976"}, "items": [{"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__or__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743453088"}, "items": [{"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__xor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743453200"}, "items": [{"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743453312"}, "items": [{"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743453424"}, "items": [{"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819281600"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140265861266272"}], "isAbstract": false}}, "140265819275776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140265743452192": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819276224"}, {"nodeId": "140265819276672"}]}}, "140265819276224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819276672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743452976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819277120"}, {"nodeId": "140265819277568"}]}}, "140265819277120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819277568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743453088": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819278016"}, {"nodeId": "140265819278464"}]}}, "140265819278016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819278464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743453200": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819278912"}, {"nodeId": "140265819279360"}]}}, "140265819278912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819279360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743453312": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819279808"}, {"nodeId": "140265819280256"}]}}, "140265819279808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819280256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743453424": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819280704"}, {"nodeId": "140265819281152"}]}}, "140265819280704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819281152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819281600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265743453872"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743453872": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}]}}, "140265743453648": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819286080"}, {"nodeId": "140265819286528"}]}}, "140265819286080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".1.140265790228960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819286528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265790228608": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265701874528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265705962432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265705961536"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743453536"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819284288"}, "name": "indices"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265701874528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228608"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265705962432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228608"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265705961536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228608"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743453536": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819283392"}, {"nodeId": "140265819283840"}]}}, "140265819283392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228608"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819283840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228608"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265819284288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228608"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265743454992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265743454992": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265819286976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265790228960"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819287424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819287872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819288320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819288768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743455104": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819289216"}, {"nodeId": "140265819289664"}]}}, "140265819289216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819289664": {"type": "Function", "content": {"typeVars": [".-1.140265819289664"], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": ".-1.140265819289664"}]}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265743455440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819289664": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819289664", "variance": "INVARIANT"}}, "140265743455440": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265790228960"}, {"nodeId": ".-1.140265819289664"}]}}, "140265819290112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819290560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819291008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819422784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "A"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265819423232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265785727936": {"type": "Concrete", "content": {"module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735762240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735762688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735762912"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811173536"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811173984"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811175328"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735762240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727936"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861265568": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "content": {"name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265709939712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710201632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710202752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710194240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710193792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710193120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710194464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710194912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710195136"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265747836576"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748111968"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836449792"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836450240"}, "name": "__subclasses__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836450688"}, "name": "mro"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836451136"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836451584"}, "name": "__subclasscheck__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710195584"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836452480"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836452928"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265709939712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710201632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710202752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265785721600", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785721600": {"type": "Concrete", "content": {"module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810696608"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810697056"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810697504"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810697952"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810698400"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810698848"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810699296"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810699744"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810700192"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810700640"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810701088"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810701536"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810701984"}, "name": "__ror__"}}], "typeVars": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}], "bases": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "isAbstract": false}}, ".1.140265785721600": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785721600", "variance": "INVARIANT"}}, ".2.140265785721600": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785721600", "variance": "COVARIANT"}}, "140265810696608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140265810697056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}, {"nodeId": ".1.140265785721600"}], "returnType": {"nodeId": ".2.140265785721600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265810697504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265785721600"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265810697952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265810698400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265810698848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810699296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265785721600"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789853184": {"type": "Concrete", "content": {"module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844398496"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844398944"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844399392"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844399840"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844400288"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844400736"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844401184"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844401632"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844402080"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844402528"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844402976"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844403424"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140265789853184"}], "bases": [{"nodeId": "140265789852480"}, {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265789853184"}]}], "isAbstract": false}}, ".1.140265789853184": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789853184", "variance": "COVARIANT"}}, "140265844398496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265789853184"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140265861264512": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739924448"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760780384"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844407008"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844407456"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844407904"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844506912"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844507360"}, "name": "__eq__"}}], "typeVars": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}], "bases": [{"nodeId": "140265861262752", "args": [{"nodeId": ".1.140265861264512"}]}], "isAbstract": true}}, ".1.140265861264512": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861264512", "variance": "INVARIANT"}}, ".2.140265861264512": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861264512", "variance": "COVARIANT"}}, "140265739924448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}, {"nodeId": ".1.140265861264512"}], "returnType": {"nodeId": ".2.140265861264512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265760780384": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844406112"}, {"nodeId": "140265844406560"}]}}, "140265844406112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}, {"nodeId": ".1.140265861264512"}], "returnType": {"nodeId": "140265761015280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265761015280": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265861264512"}, {"nodeId": "N"}]}}, "140265844406560": {"type": "Function", "content": {"typeVars": [".-1.140265844406560"], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}, {"nodeId": ".1.140265861264512"}, {"nodeId": "140265761015392"}], "returnType": {"nodeId": "140265761015504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140265761015392": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265861264512"}, {"nodeId": ".-1.140265844406560"}]}}, ".-1.140265844406560": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844406560", "variance": "INVARIANT"}}, "140265761015504": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265861264512"}, {"nodeId": ".-1.140265844406560"}]}}, "140265844407008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}], "returnType": {"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789852832": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844393120"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844393568"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844394016"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844394464"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844394912"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844395360"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844395808"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844396256"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844396704"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844397152"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844397600"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844398048"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}], "bases": [{"nodeId": "140265789852480"}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265773689184"}]}], "isAbstract": false}}, ".1.140265789852832": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789852832", "variance": "COVARIANT"}}, ".2.140265789852832": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789852832", "variance": "COVARIANT"}}, "140265844393120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140265844393568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265760782512"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265789856704": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743459360"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819585472"}, "name": "add"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819585920"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819717696"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819718144"}, "name": "difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819718592"}, "name": "discard"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819719040"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819719488"}, "name": "intersection_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819719936"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819720384"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819720832"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819721280"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819721728"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819722176"}, "name": "symmetric_difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819722624"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819723072"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819723520"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819723968"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819724416"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819724864"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819725312"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819725760"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819726208"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819726656"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819727104"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819727552"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819728000"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819728448"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819728896"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819729344"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819729792"}, "name": "__gt__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819730240"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265789856704"}], "bases": [{"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265789856704"}]}], "isAbstract": false}}, ".1.140265789856704": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789856704", "variance": "INVARIANT"}}, "140265743459360": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819584576"}, {"nodeId": "140265819585024"}]}}, "140265819584576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819585024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819585472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": ".1.140265789856704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819585920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819717696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140265819718144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140265819718592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": ".1.140265789856704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819719040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140265819719488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140265819719936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819720384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819720832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819721280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": ".1.140265789856704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819721728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819722176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819722624": {"type": "Function", "content": {"typeVars": [".-1.140265819722624"], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265819722624"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265743461488"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140265819722624": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819722624", "variance": "INVARIANT"}}, "140265743461488": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789856704"}, {"nodeId": ".-1.140265819722624"}]}}, "140265819723072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140265819723520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819723968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819724416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789856704"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819724864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265861263808": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739740640"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844252384"}, "name": "_hash"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844252832"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844253280"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844253728"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844254176"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844254624"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844255072"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844255520"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844255968"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844256416"}, "name": "isdisjoint"}}], "typeVars": [{"nodeId": ".1.140265861263808"}], "bases": [{"nodeId": "140265861262752", "args": [{"nodeId": ".1.140265861263808"}]}], "isAbstract": true}}, ".1.140265861263808": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861263808", "variance": "COVARIANT"}}, "140265739740640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844252384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844252832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844253280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844253728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844254176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844254624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844255072": {"type": "Function", "content": {"typeVars": [".-1.140265844255072"], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".-1.140265844255072"}]}], "returnType": {"nodeId": "140265861263808", "args": [{"nodeId": "140265760781280"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844255072": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844255072", "variance": "INVARIANT"}}, "140265760781280": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265861263808"}, {"nodeId": ".-1.140265844255072"}]}}, "140265844255520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844255968": {"type": "Function", "content": {"typeVars": [".-1.140265844255968"], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".-1.140265844255968"}]}], "returnType": {"nodeId": "140265861263808", "args": [{"nodeId": "140265760781504"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844255968": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844255968", "variance": "INVARIANT"}}, "140265760781504": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265861263808"}, {"nodeId": ".-1.140265844255968"}]}}, "140265844256416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140265861262752": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739733696"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861262752"}], "bases": [{"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265861262752"}]}, {"nodeId": "140265861262400", "args": [{"nodeId": ".1.140265861262752"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}}, ".1.140265861262752": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861262752", "variance": "COVARIANT"}}, "140265739733696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262752", "args": [{"nodeId": ".1.140265861262752"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265861262400": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739680928"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861262400"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__contains__"]}}, ".1.140265861262400": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861262400", "variance": "COVARIANT"}}, "140265739680928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262400", "args": [{"nodeId": ".1.140265861262400"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819725312": {"type": "Function", "content": {"typeVars": [".0.140265819725312"], "argTypes": [{"nodeId": ".0.140265819725312"}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": ".0.140265819725312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819725312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "def": "140265819725312", "variance": "INVARIANT"}}, "140265819725760": {"type": "Function", "content": {"typeVars": [".-1.140265819725760"], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".-1.140265819725760"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265743461712"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819725760": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819725760", "variance": "INVARIANT"}}, "140265743461712": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789856704"}, {"nodeId": ".-1.140265819725760"}]}}, "140265819726208": {"type": "Function", "content": {"typeVars": [".0.140265819726208"], "argTypes": [{"nodeId": ".0.140265819726208"}, {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": ".0.140265819726208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819726208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "def": "140265819726208", "variance": "INVARIANT"}}, "140265819726656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265743461824"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743461824": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789856704"}, {"nodeId": "N"}]}}, "140265819727104": {"type": "Function", "content": {"typeVars": [".0.140265819727104"], "argTypes": [{"nodeId": ".0.140265819727104"}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": ".0.140265819727104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819727104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "def": "140265819727104", "variance": "INVARIANT"}}, "140265819727552": {"type": "Function", "content": {"typeVars": [".-1.140265819727552"], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".-1.140265819727552"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265743461936"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819727552": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819727552", "variance": "INVARIANT"}}, "140265743461936": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789856704"}, {"nodeId": ".-1.140265819727552"}]}}, "140265819728000": {"type": "Function", "content": {"typeVars": [".0.140265819728000"], "argTypes": [{"nodeId": ".0.140265819728000"}, {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": ".0.140265819728000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819728000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "def": "140265819728000", "variance": "INVARIANT"}}, "140265819728448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819728896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819729344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819729792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819730240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265861264160": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "content": {"name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739742208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739833120"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844257760"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844258208"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844258656"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844259104"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844259552"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844260000"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844260448"}, "name": "__isub__"}}], "typeVars": [{"nodeId": ".1.140265861264160"}], "bases": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861264160"}]}], "isAbstract": true}}, ".1.140265861264160": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861264160", "variance": "INVARIANT"}}, "140265739742208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}, {"nodeId": ".1.140265861264160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140265739833120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}, {"nodeId": ".1.140265861264160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140265844257760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844258208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}], "returnType": {"nodeId": ".1.140265861264160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844258656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}, {"nodeId": ".1.140265861264160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140265844259104": {"type": "Function", "content": {"typeVars": [".0.140265844259104"], "argTypes": [{"nodeId": ".0.140265844259104"}, {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861264160"}]}], "returnType": {"nodeId": ".0.140265844259104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844259104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}, "def": "140265844259104", "variance": "INVARIANT"}}, "140265844259552": {"type": "Function", "content": {"typeVars": [".0.140265844259552"], "argTypes": [{"nodeId": ".0.140265844259552"}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140265844259552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844259552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}, "def": "140265844259552", "variance": "INVARIANT"}}, "140265844260000": {"type": "Function", "content": {"typeVars": [".0.140265844260000"], "argTypes": [{"nodeId": ".0.140265844260000"}, {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861264160"}]}], "returnType": {"nodeId": ".0.140265844260000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844260000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}, "def": "140265844260000", "variance": "INVARIANT"}}, "140265844260448": {"type": "Function", "content": {"typeVars": [".0.140265844260448"], "argTypes": [{"nodeId": ".0.140265844260448"}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140265844260448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844260448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}, "def": "140265844260448", "variance": "INVARIANT"}}, "140265760782512": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844394016": {"type": "Function", "content": {"typeVars": [".-1.140265844394016"], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844394016"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".-1.140265844394016"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844394016": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844394016", "variance": "INVARIANT"}}, "140265844394464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844394912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265760782736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265760782736": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844395360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265760782960"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265760782960": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844395808": {"type": "Function", "content": {"typeVars": [".-1.140265844395808"], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844395808"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265760783296"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844395808": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844395808", "variance": "INVARIANT"}}, "140265760783296": {"type": "Union", "content": {"items": [{"nodeId": "140265760783184"}, {"nodeId": ".-1.140265844395808"}]}}, "140265760783184": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844396256": {"type": "Function", "content": {"typeVars": [".-1.140265844396256"], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844396256"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265760783632"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844396256": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844396256", "variance": "INVARIANT"}}, "140265760783632": {"type": "Union", "content": {"items": [{"nodeId": "140265760783520"}, {"nodeId": ".-1.140265844396256"}]}}, "140265760783520": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844396704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265760783968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265760783968": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844397152": {"type": "Function", "content": {"typeVars": [".-1.140265844397152"], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844397152"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".-1.140265844397152"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844397152": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844397152", "variance": "INVARIANT"}}, "140265844397600": {"type": "Function", "content": {"typeVars": [".-1.140265844397600"], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844397600"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265761013824"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844397600": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844397600", "variance": "INVARIANT"}}, "140265761013824": {"type": "Union", "content": {"items": [{"nodeId": "140265760784192"}, {"nodeId": ".-1.140265844397600"}]}}, "140265760784192": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844398048": {"type": "Function", "content": {"typeVars": [".-1.140265844398048"], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844398048"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265761014160"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844398048": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844398048", "variance": "INVARIANT"}}, "140265761014160": {"type": "Union", "content": {"items": [{"nodeId": "140265761014048"}, {"nodeId": ".-1.140265844398048"}]}}, "140265761014048": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265789852480": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844392224"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844392672"}, "name": "__len__"}}], "typeVars": [], "bases": [{"nodeId": "140265789851424"}], "isAbstract": false}}, "140265844392224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852480"}, {"nodeId": "140265861264512", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140265844392672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852480"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789851424": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739601728"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__len__"]}}, "140265739601728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789851424"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265773689184": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844407456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}], "returnType": {"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265861264512"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844407904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}], "returnType": {"nodeId": "140265789853536", "args": [{"nodeId": ".2.140265861264512"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789853536": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844403872"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844404320"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844404768"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844405216"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265789853536"}], "bases": [{"nodeId": "140265789852480"}, {"nodeId": "140265861262752", "args": [{"nodeId": ".1.140265789853536"}]}], "isAbstract": false}}, ".1.140265789853536": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789853536", "variance": "COVARIANT"}}, "140265844403872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853536", "args": [{"nodeId": ".1.140265789853536"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": "A"}, {"nodeId": ".1.140265789853536"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140265844404320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853536", "args": [{"nodeId": ".1.140265789853536"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844404768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853536", "args": [{"nodeId": ".1.140265789853536"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789853536"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265844405216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853536", "args": [{"nodeId": ".1.140265789853536"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789853536"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265844506912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844507360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844398944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789853184"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844399392": {"type": "Function", "content": {"typeVars": [".-1.140265844399392"], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844399392"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".-1.140265844399392"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844399392": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844399392", "variance": "INVARIANT"}}, "140265844399840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844400288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789853184"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265844400736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789853184"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265844401184": {"type": "Function", "content": {"typeVars": [".-1.140265844401184"], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844401184"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265761014496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844401184": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844401184", "variance": "INVARIANT"}}, "140265761014496": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789853184"}, {"nodeId": ".-1.140265844401184"}]}}, "140265844401632": {"type": "Function", "content": {"typeVars": [".-1.140265844401632"], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844401632"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265761014608"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844401632": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844401632", "variance": "INVARIANT"}}, "140265761014608": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789853184"}, {"nodeId": ".-1.140265844401632"}]}}, "140265844402080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789853184"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844402528": {"type": "Function", "content": {"typeVars": [".-1.140265844402528"], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844402528"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".-1.140265844402528"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844402528": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844402528", "variance": "INVARIANT"}}, "140265844402976": {"type": "Function", "content": {"typeVars": [".-1.140265844402976"], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844402976"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265761014832"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844402976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844402976", "variance": "INVARIANT"}}, "140265761014832": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789853184"}, {"nodeId": ".-1.140265844402976"}]}}, "140265844403424": {"type": "Function", "content": {"typeVars": [".-1.140265844403424"], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844403424"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265761014944"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844403424": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844403424", "variance": "INVARIANT"}}, "140265761014944": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789853184"}, {"nodeId": ".-1.140265844403424"}]}}, "140265810699744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "140265789853536", "args": [{"nodeId": ".2.140265785721600"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810700192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810700640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140265810701088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265785721600"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265810701536": {"type": "Function", "content": {"typeVars": [".-1.140265810701536", ".-2.140265810701536"], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265810701536"}, {"nodeId": ".-2.140265810701536"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265761023792"}, {"nodeId": "140265761023904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265810701536": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265810701536", "variance": "INVARIANT"}}, ".-2.140265810701536": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265810701536", "variance": "INVARIANT"}}, "140265761023792": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".-1.140265810701536"}]}}, "140265761023904": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265785721600"}, {"nodeId": ".-2.140265810701536"}]}}, "140265810701984": {"type": "Function", "content": {"typeVars": [".-1.140265810701984", ".-2.140265810701984"], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265810701984"}, {"nodeId": ".-2.140265810701984"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265761024016"}, {"nodeId": "140265761024128"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265810701984": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265810701984", "variance": "INVARIANT"}}, ".-2.140265810701984": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265810701984", "variance": "INVARIANT"}}, "140265761024016": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".-1.140265810701984"}]}}, "140265761024128": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265785721600"}, {"nodeId": ".-2.140265810701984"}]}}, "140265710194240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710193792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710193120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710194464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710194912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265748115104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748115104": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265710195136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747836576": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265836448000"}, {"nodeId": "140265836448448"}]}}, "140265836448000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265836448448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, null, "kwds"]}}, "140265748111968": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265836448896"}, {"nodeId": "140265836449344"}]}}, "140265836448896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265836449344": {"type": "Function", "content": {"typeVars": [".-1.140265836449344"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140265836449344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}}, ".-1.140265836449344": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265836449344", "variance": "INVARIANT"}}, "140265836449792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140265836450240": {"type": "Function", "content": {"typeVars": [".-1.140265836450240"], "argTypes": [{"nodeId": ".-1.140265836450240"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".-1.140265836450240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140265836450240": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265836450240", "variance": "INVARIANT"}}, "140265836450688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265861265568"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836451136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265836451584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}, {"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265710195584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}}, "140265836452480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785728640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265785728640": {"type": "Concrete", "content": {"module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735848000"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811176672"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811177120"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735848000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785728640"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811176672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785728640"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785728640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265811177120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785728640"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785728640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265836452928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785728640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265735762688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727936"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735762912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727936"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811173536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727936"}, {"nodeId": "140265861265568"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}}, "140265811173984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727936"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265811175328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727936"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265861263104": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760778928"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849322208"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849322656"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849323104"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844244768"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844245216"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265861263104"}], "bases": [{"nodeId": "140265861262752", "args": [{"nodeId": ".1.140265861263104"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": ".1.140265861263104"}]}], "isAbstract": true}}, ".1.140265861263104": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861263104", "variance": "COVARIANT"}}, "140265760778928": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265849321312"}, {"nodeId": "140265849321760"}]}}, "140265849321312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265861263104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265849321760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265849322208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}, {"nodeId": "A"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}}, "140265849322656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140265849323104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844244768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861263104"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265844245216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861263104"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265861259936": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "content": {"name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739610240"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861259936"}], "bases": [{"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265861259936"}]}], "protocolMembers": ["__iter__", "__reversed__"]}}, ".1.140265861259936": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861259936", "variance": "COVARIANT"}}, "140265739610240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861259936", "args": [{"nodeId": ".1.140265861259936"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861259936"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265706424800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265743451408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743451408": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "N"}]}}, "140265706425024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265743451520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743451520": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "N"}]}}, "140265706423232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706425920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706426144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265789865152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706425696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706426592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706426816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706425472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819151424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140265819151872": {"type": "Function", "content": {"typeVars": [".0.140265819151872"], "argTypes": [{"nodeId": ".0.140265819151872"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265819151872": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790228256"}, "def": "140265819151872", "variance": "INVARIANT"}}, "140265819152320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265743451744"}, {"nodeId": "140265743451856"}, {"nodeId": "140265743451968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265743451744": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265743451856": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265790233888": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773689296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773693664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773692880"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815451776"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815452224"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815452672"}, "name": "with_traceback"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265773689296": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265773693664": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265773692880": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265785726528": {"type": "Concrete", "content": {"module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811043808"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785904032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735751712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735751936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735752160"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265811043808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726528"}, {"nodeId": "140265756051600"}, {"nodeId": "140265785726880"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}}, "140265756051600": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265785726880": {"type": "Concrete", "content": {"module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "content": {"name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735753728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735754176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735754400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735754624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735754848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735755072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735755296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785905264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811048736"}, "name": "clear"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735753728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "140265756051712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756051712": {"type": "Union", "content": {"items": [{"nodeId": "140265785726880"}, {"nodeId": "N"}]}}, "140265735754176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735754400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "140265785721248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785721248": {"type": "Concrete", "content": {"module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "content": {"name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735336256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735337376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735336928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735337600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735337824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735338048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735338272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735338496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735338720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735338944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735339168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735339392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735339616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735438400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735438624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735438848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735439520"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810691680"}, "name": "co_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810693920"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810695712"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735336256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735337376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735336928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735337600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735337824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735338048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735338272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265790227552": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748353024"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823867328"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823867776"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823868224"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823868672"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823869120"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823869568"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823870464"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823870912"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823871808"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823872256"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823872704"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823873152"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823873600"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823874048"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823874496"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823874944"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823875392"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823875840"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823876288"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823876736"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823877184"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823877632"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823878080"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823878528"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824010304"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824010752"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824011200"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824011648"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824012096"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824012544"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824012992"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824013440"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824013888"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824014336"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824014784"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824015232"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824015680"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824016128"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824016576"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824017024"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265705771680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265705885920"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824018368"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824018816"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748355936"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824020160"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824020608"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824021056"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824021504"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824021952"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824022400"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824022848"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824023296"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824023744"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824024192"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824024640"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824025088"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824025984"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265748353024": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265823865984"}, {"nodeId": "140265823866432"}, {"nodeId": "140265823866880"}]}}, "140265823865984": {"type": "Function", "content": {"typeVars": [".0.140265823865984"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265748357056"}], "returnType": {"nodeId": ".0.140265823865984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265748357056": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265789863040"}]}, {"nodeId": "140265789863040"}, {"nodeId": "140265789850720"}, {"nodeId": "140265789865152"}]}}, "140265789850720": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "content": {"name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739493760"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__bytes__"]}}, "140265739493760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789850720"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265823865984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227552"}, "def": "140265823865984", "variance": "INVARIANT"}}, "140265823866432": {"type": "Function", "content": {"typeVars": [".0.140265823866432"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265823866432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}}, ".0.140265823866432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227552"}, "def": "140265823866432", "variance": "INVARIANT"}}, "140265823866880": {"type": "Function", "content": {"typeVars": [".0.140265823866880"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265823866880"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265823866880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227552"}, "def": "140265823866880", "variance": "INVARIANT"}}, "140265823867328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823867776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265823868224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748357168"}, {"nodeId": "140265748357280"}, {"nodeId": "140265748357392"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748357168": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748357280": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748357392": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823868672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140265823869120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748357504"}, {"nodeId": "140265748357616"}, {"nodeId": "140265748357728"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748357504": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265789865152"}]}]}}, "140265748357616": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748357728": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823869568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140265823870464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748357840"}, {"nodeId": "140265748357952"}, {"nodeId": "140265748358064"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748357840": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748357952": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748358064": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823870912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748358176"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140265748358176": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}]}}, "140265823871808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748358288"}, {"nodeId": "140265748358400"}, {"nodeId": "140265748358512"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748358288": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748358400": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748358512": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823872256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823872704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823873152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823873600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823874048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823874496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823874944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823875392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823875840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265789865152"}]}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265823876288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}, {"nodeId": "140265748358624"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265748358624": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}]}}, "140265790227904": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748356944"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824109952"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824110400"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824110848"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824111296"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824111744"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824112192"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824112640"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824113088"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824113984"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824114432"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824114880"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824115776"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824116224"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824116672"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824117120"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824117568"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824118016"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824118464"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824118912"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824119360"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824119808"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824120256"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824120704"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824121152"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824121600"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824122048"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824122496"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824122944"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824123392"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824123840"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824124288"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818996800"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818997248"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818997696"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818998144"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818998592"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818999040"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818999488"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818999936"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819000384"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819000832"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819001280"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819001728"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819002176"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819002624"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819003072"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265705982880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701561216"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819004416"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819004864"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748360976"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743450512"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819007104"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819007552"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819008000"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819008448"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819008896"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819009344"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819009792"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819010240"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819010688"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819011136"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819011584"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819012032"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819012480"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819144256"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819144704"}, "name": "__alloc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819145152"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819145600"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140265861263456", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265748356944": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265824108608"}, {"nodeId": "140265824109056"}, {"nodeId": "140265824109504"}]}}, "140265824108608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824109056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748361648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748361648": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265789863040"}]}, {"nodeId": "140265789863040"}, {"nodeId": "140265789865152"}]}}, "140265824109504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}}, "140265824109952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824110400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824110848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265824111296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748361760"}, {"nodeId": "140265748361872"}, {"nodeId": "140265748361984"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748361760": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748361872": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748361984": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265824111744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824112192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140265824112640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748362096"}, {"nodeId": "140265748362208"}, {"nodeId": "140265748362320"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748362096": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265789865152"}]}]}}, "140265748362208": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748362320": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265824113088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140265824113984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265789863040"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824114432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748362432"}, {"nodeId": "140265748362544"}, {"nodeId": "140265748362656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748362432": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748362544": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748362656": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265824114880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748362768"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140265748362768": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}]}}, "140265824115776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748362880"}, {"nodeId": "140265748362992"}, {"nodeId": "140265748363104"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748362880": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748362992": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748363104": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265824116224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265824116672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824117120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824117568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824118016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824118464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824118912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824119360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824119808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824120256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265789865152"}]}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824120704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}, {"nodeId": "140265748363216"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265748363216": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}]}}, "140265824121152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824121600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748363328"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748363328": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265824122048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265748363552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748363552": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227904"}, {"nodeId": "140265790227904"}, {"nodeId": "140265790227904"}]}}, "140265824122496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265824122944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824123392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824123840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824124288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}, {"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265818996800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748363664"}, {"nodeId": "140265748363776"}, {"nodeId": "140265748363888"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748363664": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748363776": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748363888": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265818997248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748364000"}, {"nodeId": "140265748364112"}, {"nodeId": "140265748364224"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748364000": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748364112": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748364224": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265818997696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}, {"nodeId": "140265748364336"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265748364336": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}]}}, "140265818998144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265748364560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748364560": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227904"}, {"nodeId": "140265790227904"}, {"nodeId": "140265790227904"}]}}, "140265818998592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748364672"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227904"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265748364672": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265818999040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748364784"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748364784": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265818999488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748364896"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227904"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265748364896": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265818999936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227904"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140265819000384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748365008"}, {"nodeId": "140265748365120"}, {"nodeId": "140265743450176"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748365008": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265789865152"}]}]}}, "140265748365120": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265743450176": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265819000832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265743450288"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265743450288": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265819001280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819001728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819002176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265743450400"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140265743450400": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265819002624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819003072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265705982880": {"type": "Function", "content": {"typeVars": [".0.140265705982880"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265705982880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265705982880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227904"}, "def": "140265705982880", "variance": "INVARIANT"}}, "140265701561216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789865152"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819004416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819004864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265748360976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819005312"}, {"nodeId": "140265819005760"}]}}, "140265819005312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819005760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743450512": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819006208"}, {"nodeId": "140265819006656"}]}}, "140265819006208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265819006656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265790228608"}, {"nodeId": "140265743450848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265743450848": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265789863040"}]}, {"nodeId": "140265790227552"}]}}, "140265819007104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265743450960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743450960": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "140265790228608"}]}}, "140265819007552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819008000": {"type": "Function", "content": {"typeVars": [".0.140265819008000"], "argTypes": [{"nodeId": ".0.140265819008000"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": ".0.140265819008000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819008000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227904"}, "def": "140265819008000", "variance": "INVARIANT"}}, "140265819008448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819008896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819009344": {"type": "Function", "content": {"typeVars": [".0.140265819009344"], "argTypes": [{"nodeId": ".0.140265819009344"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".0.140265819009344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819009344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227904"}, "def": "140265819009344", "variance": "INVARIANT"}}, "140265819009792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819010240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265743451184"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743451184": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "140265789865152"}]}}, "140265819010688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819011136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819011584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819012032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819012480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819144256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819144704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819145152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819145600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265790228256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265861263456": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "content": {"name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739737952"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760779376"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760779936"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760780272"}, "items": [{"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844248800"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844249248"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844249696"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844250144"}, "name": "reverse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844250592"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844251040"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844251488"}, "name": "__iadd__"}}], "typeVars": [{"nodeId": ".1.140265861263456"}], "bases": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263456"}]}], "isAbstract": true}}, ".1.140265861263456": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861263456", "variance": "INVARIANT"}}, "140265739737952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265861266272"}, {"nodeId": ".1.140265861263456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}}, "140265760779376": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844246112"}, {"nodeId": "140265844246560"}]}}, "140265844246112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265861263456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844246560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265760779936": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844247008"}, {"nodeId": "140265844247456"}]}}, "140265844247008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265861266272"}, {"nodeId": ".1.140265861263456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265844247456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265790228608"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265861263456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265760780272": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844247904"}, {"nodeId": "140265844248352"}]}}, "140265844247904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844248352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844248800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": ".1.140265861263456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140265844249248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844249696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265861263456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}}, "140265844250144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844250592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265861263456"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}}, "140265844251040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": ".1.140265861263456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140265844251488": {"type": "Function", "content": {"typeVars": [".0.140265844251488"], "argTypes": [{"nodeId": ".0.140265844251488"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265861263456"}]}], "returnType": {"nodeId": ".0.140265844251488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844251488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, "def": "140265844251488", "variance": "INVARIANT"}}, "140265823876736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823877184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748358736"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748358736": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265823877632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265748358960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748358960": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}]}}, "140265823878080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789865152"}, {"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265823878528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824010304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824010752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748359072"}, {"nodeId": "140265748359184"}, {"nodeId": "140265748359296"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748359072": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748359184": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748359296": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265824011200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748359408"}, {"nodeId": "140265748359520"}, {"nodeId": "140265748359632"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748359408": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748359520": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748359632": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265824011648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}, {"nodeId": "140265748359744"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265748359744": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}]}}, "140265824012096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265748359968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748359968": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}]}}, "140265824012544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748360080"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227552"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265748360080": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265824012992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748360192"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748360192": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265824013440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748360304"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227552"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265748360304": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265824013888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227552"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140265824014336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748360416"}, {"nodeId": "140265748360528"}, {"nodeId": "140265748360640"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748360416": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265789865152"}]}]}}, "140265748360528": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748360640": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265824014784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748360752"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748360752": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265824015232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824015680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824016128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748360864"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140265748360864": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265824016576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824017024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265705771680": {"type": "Function", "content": {"typeVars": [".0.140265705771680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265705771680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265705771680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227552"}, "def": "140265705771680", "variance": "INVARIANT"}}, "140265705885920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789865152"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824018368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265824018816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265748355936": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265824019264"}, {"nodeId": "140265824019712"}]}}, "140265824019264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824019712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824020160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824020608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824021056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824021504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824021952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748361200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265748361200": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "140265789865152"}]}}, "140265824022400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824022848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824023296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824023744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824024192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824024640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824025088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265748361424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748361424": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}]}}, "140265824025984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265735338496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735338720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735338944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735339168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735339392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735339616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735438400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735438624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735438848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735439520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810691680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265761023568"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761023568": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265761023344"}]}}, "140265761023344": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265810693920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null]}}, "140265810695712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265785721248"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "co_argcount", "co_posonlyargcount", "co_kwonlyargcount", "co_nlocals", "co_stacksize", "co_flags", "co_firstlineno", "co_code", "co_consts", "co_names", "co_varnames", "co_freevars", "co_cellvars", "co_filename", "co_name", "co_linetable"]}}, "140265735754624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735754848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735755072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "140265756052160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756052160": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "A"}]}}, "140265735755296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785905264": {"type": "Union", "content": {"items": [{"nodeId": "140265764880672"}, {"nodeId": "N"}]}}, "140265764880672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265811048736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785904032": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265735751712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726528"}], "returnType": {"nodeId": "140265785726880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735751936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726528"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735752160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726528"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265815451776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790233888"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "140265815452224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790233888"}, {"nodeId": "140265743997344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265743997344": {"type": "Union", "content": {"items": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265815452672": {"type": "Function", "content": {"typeVars": [".0.140265815452672"], "argTypes": [{"nodeId": ".0.140265815452672"}, {"nodeId": "140265743997568"}], "returnType": {"nodeId": ".0.140265815452672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140265815452672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790233888"}, "def": "140265815452672", "variance": "INVARIANT"}}, "140265743997568": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265743451968": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265819152768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265790227200"}, {"nodeId": "140265743452080"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}}, "140265743452080": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}]}}, "140265743450624": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819153216"}, {"nodeId": "140265819153664"}]}}, "140265819153216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819153664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819154112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819154560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819155008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265743451632": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819155456"}, {"nodeId": "140265819155904"}]}}, "140265819155456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265790228608"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265819155904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265819156352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265743452864"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "140265743452864": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140265819157696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819158144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819158592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819159040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265743452752"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140265743452752": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}]}}, "140265819159936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819275328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265790228256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265789849664": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "content": {"name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739488832"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__int__"]}}, "140265739488832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789849664"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265764926240": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848367456"}, "name": "__trunc__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__trunc__"]}}, "140265848367456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764926240"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265836454720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861266272"}, "def": "140265836454720", "variance": "INVARIANT"}}, "140265836455168": {"type": "Function", "content": {"typeVars": [".0.140265836455168"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265748117456"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".0.140265836455168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}}, "140265748117456": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}]}}, ".0.140265836455168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861266272"}, "def": "140265836455168", "variance": "INVARIANT"}}, "140265836455616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265748117792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748117792": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "0"}]}}, "140265710198944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710198272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710199840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710200288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836457856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836458304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836458752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836460096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265789863040"}, {"nodeId": "140265748118352"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}}, "140265748118352": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265710200064": {"type": "Function", "content": {"typeVars": [".0.140265710200064"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265748118464"}, {"nodeId": "140265748118800"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": ".0.140265710200064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}}, "140265748118464": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265789863040"}]}, {"nodeId": "140265789850720"}, {"nodeId": "140265789865152"}]}}, "140265748118800": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, ".0.140265710200064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861266272"}, "def": "140265710200064", "variance": "INVARIANT"}}, "140265836461440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823240256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823240704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823241152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823241600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265861266624": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823328000"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823328448"}, "name": "as_integer_ratio"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823328896"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823329344"}, "name": "is_integer"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710022976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710024096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710020288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823331136"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823331584"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823332032"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823332480"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823332928"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823333376"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823333824"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823334272"}, "name": "__divmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748117232"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823335616"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823336064"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823336512"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823336960"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823337408"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823337856"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823453248"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748350224"}, "items": [{"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823455040"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823455488"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823455936"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823456384"}, "name": "__floor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748350896"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823457728"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823458176"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823458624"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823459072"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823459520"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823459968"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823460416"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823460864"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823461312"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823461760"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823462208"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823462656"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265823328000": {"type": "Function", "content": {"typeVars": [".0.140265823328000"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265748350336"}], "returnType": {"nodeId": ".0.140265823328000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140265748350336": {"type": "Union", "content": {"items": [{"nodeId": "140265789850016"}, {"nodeId": "140265789863040"}, {"nodeId": "140265790227200"}, {"nodeId": "140265789865152"}]}}, "140265789850016": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "content": {"name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739490624"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__float__"]}}, "140265739490624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789850016"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265823328000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861266624"}, "def": "140265823328000", "variance": "INVARIANT"}}, "140265823328448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265748350560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748350560": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265823328896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823329344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710022976": {"type": "Function", "content": {"typeVars": [".0.140265710022976"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265710022976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265710022976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861266624"}, "def": "140265710022976", "variance": "INVARIANT"}}, "140265710024096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710020288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823331136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823331584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823332032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823332480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823332928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823333376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823333824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823334272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265748350784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265748350784": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265748117232": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265823334720"}, {"nodeId": "140265823335168"}]}}, "140265823334720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265823335168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265823335616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823336064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823336512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823336960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823337408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823337856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823453248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265748351232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748351232": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265748350224": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265823453696"}, {"nodeId": "140265823454144"}, {"nodeId": "140265823454592"}]}}, "140265823453696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265748351456"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265748351456": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765152560"}}}, "140265765152560": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265823454144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265748351568"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265748351568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765154688"}}}, "140265765154688": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265861266976": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748351344"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710366816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710584992"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823465792"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823466240"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823466688"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823467136"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823467584"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823468032"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823468480"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823468928"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823584320"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823584768"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823585216"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823585664"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823586112"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823586560"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823587008"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823587456"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823587904"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265748351344": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265823463104"}, {"nodeId": "140265823463552"}]}}, "140265823463104": {"type": "Function", "content": {"typeVars": [".0.140265823463104"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265748352352"}, {"nodeId": "140265748352464"}], "returnType": {"nodeId": ".0.140265823463104"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}}, "140265748352352": {"type": "Union", "content": {"items": [{"nodeId": "140265861266976"}, {"nodeId": "140265789850368"}, {"nodeId": "140265789850016"}, {"nodeId": "140265789863040"}]}}, "140265789850368": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "content": {"name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739492192"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__complex__"]}}, "140265739492192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789850368"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265748352464": {"type": "Union", "content": {"items": [{"nodeId": "140265861266976"}, {"nodeId": "140265789850016"}, {"nodeId": "140265789863040"}]}}, ".0.140265823463104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861266976"}, "def": "140265823463104", "variance": "INVARIANT"}}, "140265823463552": {"type": "Function", "content": {"typeVars": [".0.140265823463552"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265748352576"}], "returnType": {"nodeId": ".0.140265823463552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}}, "140265748352576": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789850368"}, {"nodeId": "140265789850016"}, {"nodeId": "140265789863040"}, {"nodeId": "140265861266976"}]}}, ".0.140265823463552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861266976"}, "def": "140265823463552", "variance": "INVARIANT"}}, "140265710366816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710584992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823465792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823466240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823466688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823467136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823467584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265823468032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823468480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823468928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823584320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823584768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265823585216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823585664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823586112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823586560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823587008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823587456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823587904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823454592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265823455040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265748351904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748351904": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}]}}, "140265823455488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823455936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823456384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748350896": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265823456832"}, {"nodeId": "140265823457280"}]}}, "140265823456832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265823457280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265823457728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823458176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823458624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823459072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823459520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823459968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823460416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823460864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823461312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823461760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823462208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823462656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823242048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823242496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265748119024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265748119024": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265823242944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823243392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823243840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823244288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823244736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823245184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823245632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265748119248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748119248": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265748116672": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265823246080"}, {"nodeId": "140265823246528"}, {"nodeId": "140265823246976"}, {"nodeId": "140265823247424"}, {"nodeId": "140265823247872"}, {"nodeId": "140265823248320"}]}}, "140265823246080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823246528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265823246976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265748349440"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265748349440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765152560"}}}, "140265823247424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265748349552"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265748349552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765154688"}}}, "140265823247872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265823248320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265823248768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265748349776"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265748349776": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265823249216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823249664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823250112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823250560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823251008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823251456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823251904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823252352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823252800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823253248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823253696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823254144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823254592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823255040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823255488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823255936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823322176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265823322624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265748350112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748350112": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}]}}, "140265823323072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823323520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823323968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823324416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823324864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823325312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823325760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823326208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823326656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823327104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823327552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819428160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": ".1.140265790229312"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265819428608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": ".1.140265790229312"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819429056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265789863040"}, {"nodeId": ".1.140265790229312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265819429504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": ".1.140265790229312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265743455328": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819429952"}, {"nodeId": "140265819430400"}]}}, "140265819429952": {"type": "Function", "content": {"typeVars": [".-1.140265819429952"], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".-1.140265819429952"}]}, {"nodeId": "N"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140265819429952": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140265760652336"}, "def": "140265819429952", "variance": "INVARIANT"}}, "140265760652336": {"type": "Union", "content": {"items": [{"nodeId": "140265764921312", "args": [{"nodeId": "A"}]}, {"nodeId": "140265764921664", "args": [{"nodeId": "A"}]}]}}, "140265764921312": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848361184"}, "name": "__lt__"}}], "typeVars": [{"nodeId": ".1.140265764921312"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__lt__"]}}, ".1.140265764921312": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764921312", "variance": "CONTRAVARIANT"}}, "140265848361184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764921312", "args": [{"nodeId": ".1.140265764921312"}]}, {"nodeId": ".1.140265764921312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764921664": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848361632"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140265764921664"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__gt__"]}}, ".1.140265764921664": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764921664", "variance": "CONTRAVARIANT"}}, "140265848361632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764921664", "args": [{"nodeId": ".1.140265764921664"}]}, {"nodeId": ".1.140265764921664"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819430400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265748541088"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140265748541088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140265790229312"}], "returnType": {"nodeId": "140265743456896"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265743456896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995808"}}}, "140265764995808": {"type": "Union", "content": {"items": [{"nodeId": "140265764921312", "args": [{"nodeId": "A"}]}, {"nodeId": "140265764921664", "args": [{"nodeId": "A"}]}]}}, "140265819430848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819431296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265790229312"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265743456448": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819431744"}, {"nodeId": "140265819432192"}]}}, "140265819431744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".1.140265790229312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819432192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743456560": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819432640"}, {"nodeId": "140265819433088"}]}}, "140265819432640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265789863040"}, {"nodeId": ".1.140265790229312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265819433088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790228608"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265819433536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265743457120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743457120": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "140265790228608"}]}}, "140265743456784": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819433984"}, {"nodeId": "140265819434432"}]}}, "140265819433984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819434432": {"type": "Function", "content": {"typeVars": [".-1.140265819434432"], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": ".-1.140265819434432"}]}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265743457344"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819434432": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819434432", "variance": "INVARIANT"}}, "140265743457344": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140265819434432"}, {"nodeId": ".1.140265790229312"}]}}, "140265819434880": {"type": "Function", "content": {"typeVars": [".0.140265819434880"], "argTypes": [{"nodeId": ".0.140265819434880"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": ".0.140265819434880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819434880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, "def": "140265819434880", "variance": "INVARIANT"}}, "140265819435328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819435776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819436224": {"type": "Function", "content": {"typeVars": [".0.140265819436224"], "argTypes": [{"nodeId": ".0.140265819436224"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".0.140265819436224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819436224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, "def": "140265819436224", "variance": "INVARIANT"}}, "140265819436672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819437120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265790229312"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819437568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819438016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819438464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819570240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819570688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265819574272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265790227552"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819574720": {"type": "Function", "content": {"typeVars": [".0.140265819574720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265819574720"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, ".0.140265819574720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, "def": "140265819574720", "variance": "INVARIANT"}}, "140265819575168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819575616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "140265789855648", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789855648": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265697628832"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265789855648"}, {"nodeId": ".2.140265789855648"}], "bases": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789855648"}]}], "isAbstract": false}}, ".1.140265789855648": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789855648", "variance": "COVARIANT"}}, ".2.140265789855648": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789855648", "variance": "COVARIANT"}}, "140265697628832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789855648", "args": [{"nodeId": ".1.140265789855648"}, {"nodeId": ".2.140265789855648"}]}], "returnType": {"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265789855648"}, {"nodeId": ".2.140265789855648"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819576064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "140265789856000", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789856000": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265697631968"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265789856000"}, {"nodeId": ".2.140265789856000"}], "bases": [{"nodeId": "140265789853536", "args": [{"nodeId": ".2.140265789856000"}]}], "isAbstract": false}}, ".1.140265789856000": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789856000", "variance": "COVARIANT"}}, ".2.140265789856000": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789856000", "variance": "COVARIANT"}}, "140265697631968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856000", "args": [{"nodeId": ".1.140265789856000"}, {"nodeId": ".2.140265789856000"}]}], "returnType": {"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265789856000"}, {"nodeId": ".2.140265789856000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819576512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "140265789856352", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789856352": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265697363328"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265789856352"}, {"nodeId": ".2.140265789856352"}], "bases": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789856352"}, {"nodeId": ".2.140265789856352"}]}], "isAbstract": false}}, ".1.140265789856352": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789856352", "variance": "COVARIANT"}}, ".2.140265789856352": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789856352", "variance": "COVARIANT"}}, "140265697363328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856352", "args": [{"nodeId": ".1.140265789856352"}, {"nodeId": ".2.140265789856352"}]}], "returnType": {"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265789856352"}, {"nodeId": ".2.140265789856352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743457456": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819576960"}, {"nodeId": "140265819577408"}]}}, "140265819576960": {"type": "Function", "content": {"typeVars": [".-1.140265819576960"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265819576960"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": ".-1.140265819576960"}, {"nodeId": "140265743458800"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}}, ".-1.140265819576960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819576960", "variance": "INVARIANT"}}, "140265743458800": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265819577408": {"type": "Function", "content": {"typeVars": [".-1.140265819577408", ".-2.140265819577408"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265819577408"}]}, {"nodeId": ".-2.140265819577408"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": ".-1.140265819577408"}, {"nodeId": ".-2.140265819577408"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140265819577408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819577408", "variance": "INVARIANT"}}, ".-2.140265819577408": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819577408", "variance": "INVARIANT"}}, "140265743458240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819577856"}, {"nodeId": "140265819578304"}]}}, "140265819577856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".1.140265790229664"}], "returnType": {"nodeId": "140265743459024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265743459024": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265790229664"}, {"nodeId": "N"}]}}, "140265819578304": {"type": "Function", "content": {"typeVars": [".-1.140265819578304"], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".1.140265790229664"}, {"nodeId": "140265743459136"}], "returnType": {"nodeId": "140265743459248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265743459136": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265790229664"}, {"nodeId": ".-1.140265819578304"}]}}, ".-1.140265819578304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819578304", "variance": "INVARIANT"}}, "140265743459248": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265790229664"}, {"nodeId": ".-1.140265819578304"}]}}, "140265743458576": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819578752"}, {"nodeId": "140265819579200"}]}}, "140265819578752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".1.140265790229664"}], "returnType": {"nodeId": ".2.140265790229664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819579200": {"type": "Function", "content": {"typeVars": [".-1.140265819579200"], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".1.140265790229664"}, {"nodeId": "140265743459472"}], "returnType": {"nodeId": "140265743459584"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265743459472": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265790229664"}, {"nodeId": ".-1.140265819579200"}]}}, ".-1.140265819579200": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819579200", "variance": "INVARIANT"}}, "140265743459584": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265790229664"}, {"nodeId": ".-1.140265819579200"}]}}, "140265819579648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819580096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".1.140265790229664"}], "returnType": {"nodeId": ".2.140265790229664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819580544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265819580992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".1.140265790229664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819581440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265790229664"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819581888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265790229664"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819582336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265819582784": {"type": "Function", "content": {"typeVars": [".-1.140265819582784", ".-2.140265819582784"], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265819582784"}, {"nodeId": ".-2.140265819582784"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265743459808"}, {"nodeId": "140265743459920"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819582784": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819582784", "variance": "INVARIANT"}}, ".-2.140265819582784": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819582784", "variance": "INVARIANT"}}, "140265743459808": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".-1.140265819582784"}]}}, "140265743459920": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265790229664"}, {"nodeId": ".-2.140265819582784"}]}}, "140265819583232": {"type": "Function", "content": {"typeVars": [".-1.140265819583232", ".-2.140265819583232"], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265819583232"}, {"nodeId": ".-2.140265819583232"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265743460032"}, {"nodeId": "140265743460144"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819583232": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819583232", "variance": "INVARIANT"}}, ".-2.140265819583232": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819583232", "variance": "INVARIANT"}}, "140265743460032": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".-1.140265819583232"}]}}, "140265743460144": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265790229664"}, {"nodeId": ".-2.140265819583232"}]}}, "140265743458912": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819583680"}, {"nodeId": "140265819584128"}]}}, "140265819583680": {"type": "Function", "content": {"typeVars": [".0.140265819583680"], "argTypes": [{"nodeId": ".0.140265819583680"}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": ".0.140265819583680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819583680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, "def": "140265819583680", "variance": "INVARIANT"}}, "140265819584128": {"type": "Function", "content": {"typeVars": [".0.140265819584128"], "argTypes": [{"nodeId": ".0.140265819584128"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265743460480"}]}], "returnType": {"nodeId": ".0.140265819584128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819584128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, "def": "140265819584128", "variance": "INVARIANT"}}, "140265743460480": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}}, "140265861264864": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739926464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739926912"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844508704"}, "name": "clear"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760781728"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844510048"}, "name": "popitem"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761015168"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761015616"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}], "typeVars": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}], "bases": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}], "isAbstract": true}}, ".1.140265861264864": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861264864", "variance": "INVARIANT"}}, ".2.140265861264864": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861264864", "variance": "INVARIANT"}}, "140265739926464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265739926912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": ".1.140265861264864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844508704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760781728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844509152"}, {"nodeId": "140265844509600"}]}}, "140265844509152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": ".1.140265861264864"}], "returnType": {"nodeId": ".2.140265861264864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265844509600": {"type": "Function", "content": {"typeVars": [".-1.140265844509600"], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": ".1.140265861264864"}, {"nodeId": "140265761015728"}], "returnType": {"nodeId": "140265761015840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140265761015728": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265861264864"}, {"nodeId": ".-1.140265844509600"}]}}, ".-1.140265844509600": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844509600", "variance": "INVARIANT"}}, "140265761015840": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265861264864"}, {"nodeId": ".-1.140265844509600"}]}}, "140265844510048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}], "returnType": {"nodeId": "140265761016064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761016064": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}}, "140265761015168": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844510496"}, {"nodeId": "140265844510944"}]}}, "140265844510496": {"type": "Function", "content": {"typeVars": [".-1.140265844510496"], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": "140265761016288"}]}, {"nodeId": ".1.140265861264864"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265761016400"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265761016288": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140265844510496"}, {"nodeId": "N"}]}}, ".-1.140265844510496": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844510496", "variance": "INVARIANT"}}, "140265761016400": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140265844510496"}, {"nodeId": "N"}]}}, "140265844510944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}], "returnType": {"nodeId": ".2.140265861264864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265761015616": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844511392"}, {"nodeId": "140265844511840"}, {"nodeId": "140265844512288"}]}}, "140265844511392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": ".2.140265861264864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265844511840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265761016736"}]}, {"nodeId": ".2.140265861264864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265761016736": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}}, "140265844512288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": ".2.140265861264864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140265747836240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265832169536"}]}}, "140265832169536": {"type": "Function", "content": {"typeVars": [".0.140265832169536"], "argTypes": [{"nodeId": ".0.140265832169536"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265832169536": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265832169536", "variance": "INVARIANT"}}, "140265710328000": {"type": "Function", "content": {"typeVars": [".0.140265710328000"], "argTypes": [{"nodeId": ".0.140265710328000"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265710328000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265710328000", "variance": "INVARIANT"}}, "140265832170432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265832170880": {"type": "Function", "content": {"typeVars": [".0.140265832170880"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265832170880"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265832170880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265832170880", "variance": "INVARIANT"}}, "140265832171328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265832171776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265832172224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265832172672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265832173120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265832173568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265832174016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265832174464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265832174912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265832175360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265832175808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265748112416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748112416": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}]}}, "140265832176256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265748112640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748112640": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}]}}, "140265832177600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265832178048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140265710336064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265823589696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227200"}, "def": "140265823589696", "variance": "INVARIANT"}}, "140265823590144": {"type": "Function", "content": {"typeVars": [".0.140265823590144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265789865152"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265823590144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}}, ".0.140265823590144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227200"}, "def": "140265823590144", "variance": "INVARIANT"}}, "140265823590592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823591040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823591488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265823591936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265748353136"}, {"nodeId": "140265748353248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}}, "140265748353136": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748353248": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823592384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140265823592832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748353360"}, {"nodeId": "140265748353472"}, {"nodeId": "140265748353584"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748353360": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}]}}, "140265748353472": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748353584": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823593280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140265823594176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265748353696"}, {"nodeId": "140265748353808"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748353696": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748353808": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823594624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265823595072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790226496"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}}, "140265790226496": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823588800"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__getitem__"]}}, "140265823588800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790226496"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823595520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265748353920"}, {"nodeId": "140265748354032"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748353920": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748354032": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823595968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823596416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823596864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823597312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823597760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823598208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823598656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823599104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823599552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823600000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823699008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823699456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823699904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265823700352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265823700800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823701248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748354144"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748354144": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265823701696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265748354368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748354368": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265823702144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265823702592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265823703040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265823703488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265748354480"}, {"nodeId": "140265748354592"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748354480": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748354592": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823703936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265748354704"}, {"nodeId": "140265748354816"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748354704": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748354816": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823704384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265823704832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265748355040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748355040": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265823705280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748355152"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265748355152": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265823705728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748355264"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748355264": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265823706176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748355376"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265748355376": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265823706624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140265823707072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748355488"}, {"nodeId": "140265748355600"}, {"nodeId": "140265748355712"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748355488": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}]}}, "140265748355600": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748355712": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823707520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748355824"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748355824": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265823707968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823708416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823708864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790226848"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265790226848": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823589248"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__getitem__"]}}, "140265823589248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790226848"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265748352800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265748352800": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265823709312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823709760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748352240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265752623392"}, {"nodeId": "140265823710208"}, {"nodeId": "140265823710656"}]}}, "140265752623392": {"type": "Function", "content": {"typeVars": [".-1.140265752623392"], "argTypes": [{"nodeId": "140265748356160"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": ".-1.140265752623392"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265748356160": {"type": "Union", "content": {"items": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": ".-1.140265752623392"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".-1.140265752623392"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265748356048"}, {"nodeId": ".-1.140265752623392"}]}]}}, ".-1.140265752623392": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265752623392", "variance": "INVARIANT"}}, "140265748356048": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265823710208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823710656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": "140265748356272"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265748356272": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265823711552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823712000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823712448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823712896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823713344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748356384"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265748356384": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "140265790228608"}]}}, "140265823713792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823714240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823714688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823862848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823863296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823863744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823864192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823864640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823865088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823865536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265748356720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748356720": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265693807008": {"type": "Concrete", "content": {"module": "annotation_tests", "simpleName": "A", "members": [{"kind": "Variable", "content": {"name": "self_", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140265693807008"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265856936064"}, "name": "f"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265874275264"}, "name": "g"}}, {"kind": "Variable", "content": {"name": "y", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693807008", "args": [{"nodeId": "140265861266272"}]}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": false}}], "typeVars": [{"nodeId": ".1.140265693807008"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265693807008": {"type": "TypeVar", "content": {"varName": "XXX", "values": [{"nodeId": "140265693807008", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861266272"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265693807008", "variance": "INVARIANT"}}, "140265856936064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693807008", "args": [{"nodeId": ".1.140265693807008"}]}, {"nodeId": "A"}, {"nodeId": "140265693807008", "args": [{"nodeId": "140265861266272"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}}, "140265874275264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693807008"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265828382560": {"type": "Function", "content": {"typeVars": [".-1.140265828382560"], "argTypes": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": ".-1.140265828382560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["collection", "x"]}}, ".-1.140265828382560": {"type": "TypeVar", "content": {"varName": "XXX", "values": [{"nodeId": "140265693807008", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861266272"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265828382560", "variance": "INVARIANT"}}, "140265874276080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265739917952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790229312", "args": [{"nodeId": "A"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": "A"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265861266272"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["x", "y", "a", "b", "c"]}}, "140265710021856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693901456"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265693901456": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265856940320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693901792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265693901792": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265693807360": {"type": "Concrete", "content": {"module": "annotation_tests", "simpleName": "Color", "members": [{"kind": "Variable", "content": {"name": "RED", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "GREEN", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "BLUE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764450048"}], "isAbstract": false}}, "140265764450048": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710021408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710022080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785801888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710022304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710022528"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844954208"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844954656"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844955104"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844955552"}, "name": "__reduce_ex__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265710021408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450048"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710022080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450048"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785801888": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}]}}, "140265710022304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, "140265710022528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790229312", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}}, "140265844954208": {"type": "Function", "content": {"typeVars": [".0.140265844954208"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": ".0.140265844954208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140265844954208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764450048"}, "def": "140265844954208", "variance": "INVARIANT"}}, "140265844954656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450048"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844955104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450048"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}}, "140265844955552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450048"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}}, "140265710023424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693902128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265693902128": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265739612256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": "140265861266272"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265828382112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265739602848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265853043424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861258528", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265861258528": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739497120"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861258528"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__abs__"]}}, ".1.140265861258528": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861258528", "variance": "COVARIANT"}}, "140265739497120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861258528", "args": [{"nodeId": ".1.140265861258528"}]}], "returnType": {"nodeId": ".1.140265861258528"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265856941664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693902464"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265693902464": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265789864096": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744218624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744384064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744384288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744384512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744384736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744384960"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827341856"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744385184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744385408"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265744218624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744384064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265760771760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760771760": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265744384288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744384512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744384736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744384960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265760771984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760771984": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265827341856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}, {"nodeId": "140265790227200"}, {"nodeId": "140265760772208"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265760772432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant", "default"]}}, "140265760772208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140265790227200"}]}}, "140265760772432": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265744385184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265861256768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861256768": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739299392"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853056864"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265739299392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256768"}], "returnType": {"nodeId": "140265861257472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861257472": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739302304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739303424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739303648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739303872"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849128992"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739304544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739304096"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849131232"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849131680"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265739302304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739303424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}], "returnType": {"nodeId": "140265760776016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760776016": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265739303648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739303872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265849128992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}, {"nodeId": "140265790227200"}, {"nodeId": "140265760776240"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}}, "140265760776240": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265739304544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}], "returnType": {"nodeId": "140265861256768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739304096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}], "returnType": {"nodeId": "140265861257120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861257120": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739300512"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853057760"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265739300512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257120"}], "returnType": {"nodeId": "140265861257472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265853057760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257120"}, {"nodeId": "140265861257472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140265849131232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265861256416": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853051936"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853052384"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853052832"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265853051936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256416"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265853052384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256416"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265853052832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256416"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265849131680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265853056864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256768"}, {"nodeId": "140265861257472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140265744385408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265861257120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861256064": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739293120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739293568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739293792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739294016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739294240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853050144"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853050592"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853051040"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265739293120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739293568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}], "returnType": {"nodeId": "140265760774784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760774784": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265739293792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739294016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739294240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265853050144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}, {"nodeId": "140265760775232"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant"]}}, "140265760775232": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265853050592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265853051040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265861257824": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849132128"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849132576"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849133024"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849133472"}, "name": "__ror__"}}, {"kind": "Variable", "content": {"name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861265568"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265849132128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257824"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}}, "140265849132576": {"type": "Function", "content": {"typeVars": [".-1.140265849132576"], "argTypes": [{"nodeId": "140265861257824"}, {"nodeId": ".-1.140265849132576"}], "returnType": {"nodeId": ".-1.140265849132576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140265849132576": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265849132576", "variance": "INVARIANT"}}, "140265849133024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257824"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265849133472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257824"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265861258176": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849135264"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265849135264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861258176"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265789898272": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789896512"}], "isAbstract": false}}, "140265789896512": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "content": {"name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265789857056", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827635872"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827636320"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827636768"}, "name": "__subclasscheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827637216"}, "name": "_dump_registry"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827637664"}, "name": "register"}}], "typeVars": [], "bases": [{"nodeId": "140265861265568"}], "isAbstract": false}}, "140265789857056": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743460256"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819731584"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819732032"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819732480"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819732928"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819733376"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819865152"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819865600"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819866048"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819866496"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819866944"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819867392"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819867840"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819868288"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819868736"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819869184"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819869632"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819870080"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819870528"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819870976"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819871424"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265789857056"}], "bases": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265789857056"}]}], "isAbstract": false}}, ".1.140265789857056": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789857056", "variance": "COVARIANT"}}, "140265743460256": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819730688"}, {"nodeId": "140265819731136"}]}}, "140265819730688": {"type": "Function", "content": {"typeVars": [".0.140265819730688"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265819730688"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265819730688": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "def": "140265819730688", "variance": "INVARIANT"}}, "140265819731136": {"type": "Function", "content": {"typeVars": [".0.140265819731136"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": ".0.140265819731136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265819731136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "def": "140265819731136", "variance": "INVARIANT"}}, "140265819731584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819732032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140265819732480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140265819732928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819733376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819865152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819865600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819866048": {"type": "Function", "content": {"typeVars": [".-1.140265819866048"], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265819866048"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": "140265743462384"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140265819866048": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819866048", "variance": "INVARIANT"}}, "140265743462384": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789857056"}, {"nodeId": ".-1.140265819866048"}]}}, "140265819866496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819866944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819867392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789857056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819867840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819868288": {"type": "Function", "content": {"typeVars": [".-1.140265819868288"], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".-1.140265819868288"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": "140265743462496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819868288": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819868288", "variance": "INVARIANT"}}, "140265743462496": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789857056"}, {"nodeId": ".-1.140265819868288"}]}}, "140265819868736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819869184": {"type": "Function", "content": {"typeVars": [".-1.140265819869184"], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".-1.140265819869184"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": "140265743462608"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819869184": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819869184", "variance": "INVARIANT"}}, "140265743462608": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789857056"}, {"nodeId": ".-1.140265819869184"}]}}, "140265819869632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819870080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819870528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819870976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819871424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265827635872": {"type": "Function", "content": {"typeVars": [".-1.140265827635872"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140265827635872"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}}, ".-1.140265827635872": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265827635872", "variance": "INVARIANT"}}, "140265827636320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789896512"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}}, "140265827636768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789896512"}, {"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140265827637216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789896512"}, {"nodeId": "140265747834560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}}, "140265747834560": {"type": "Union", "content": {"items": [{"nodeId": "140265765093440", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265765093440": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848372832"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.140265765093440"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["write"]}}, ".1.140265765093440": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265765093440", "variance": "CONTRAVARIANT"}}, "140265848372832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765093440", "args": [{"nodeId": ".1.140265765093440"}]}, {"nodeId": ".1.140265765093440"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265827637664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789896512"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140265789851072": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739495104"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__index__"]}}, "140265739495104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789851072"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861258880": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760575712"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140265861258880"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__round__"]}}, ".1.140265861258880": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861258880", "variance": "COVARIANT"}}, "140265760575712": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265849138848"}, {"nodeId": "140265849139296"}]}}, "140265849138848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861258880", "args": [{"nodeId": ".1.140265861258880"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265849139296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861258880", "args": [{"nodeId": ".1.140265861258880"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265861258880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265789851776": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739602176"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__hash__"]}}, "140265739602176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789851776"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861260288": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849142432"}, "name": "__next__"}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739613376"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760771536"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849308320"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849308768"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739613600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739614048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739614720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739614944"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861260288"}]}], "isAbstract": true}}, ".1.140265861260288": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861260288", "variance": "COVARIANT"}}, ".2.140265861260288": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861260288", "variance": "CONTRAVARIANT"}}, ".3.140265861260288": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861260288", "variance": "COVARIANT"}}, "140265849142432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}], "returnType": {"nodeId": ".1.140265861260288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739613376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}, {"nodeId": ".2.140265861260288"}], "returnType": {"nodeId": ".1.140265861260288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265760771536": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265849307424"}, {"nodeId": "140265849307872"}]}}, "140265849307424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}, {"nodeId": "0"}, {"nodeId": "140265760777808"}, {"nodeId": "140265760777920"}], "returnType": {"nodeId": ".1.140265861260288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265760777808": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "140265861254656"}]}}, "140265760777920": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265849307872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}, {"nodeId": "140265790233888"}, {"nodeId": "N"}, {"nodeId": "140265760778032"}], "returnType": {"nodeId": ".1.140265861260288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265760778032": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265849308320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265849308768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265739613600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}], "returnType": {"nodeId": "140265785721248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739614048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}], "returnType": {"nodeId": "140265785726880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739614720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739614944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}], "returnType": {"nodeId": "140265760778480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760778480": {"type": "Union", "content": {"items": [{"nodeId": "140265861260288", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265861260640": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "content": {"name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739615616"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861260640"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__await__"]}}, ".1.140265861260640": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861260640", "variance": "COVARIANT"}}, "140265739615616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260640", "args": [{"nodeId": ".1.140265861260640"}]}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.140265861260640"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861260992": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739667936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739668160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739668384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739668608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739668832"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760777584"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739669056"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}], "bases": [{"nodeId": "140265861260640", "args": [{"nodeId": ".3.140265861260992"}]}], "isAbstract": true}}, ".1.140265861260992": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861260992", "variance": "COVARIANT"}}, ".2.140265861260992": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861260992", "variance": "CONTRAVARIANT"}}, ".3.140265861260992": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861260992", "variance": "COVARIANT"}}, "140265739667936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}], "returnType": {"nodeId": "140265760778816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760778816": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265739668160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}], "returnType": {"nodeId": "140265785721248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739668384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}], "returnType": {"nodeId": "140265785726880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739668608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739668832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}, {"nodeId": ".2.140265861260992"}], "returnType": {"nodeId": ".1.140265861260992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265760777584": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265849313696"}, {"nodeId": "140265849314144"}]}}, "140265849313696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}, {"nodeId": "0"}, {"nodeId": "140265760779040"}, {"nodeId": "140265760779152"}], "returnType": {"nodeId": ".1.140265861260992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265760779040": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "140265861254656"}]}}, "140265760779152": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265849314144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}, {"nodeId": "140265790233888"}, {"nodeId": "N"}, {"nodeId": "140265760779264"}], "returnType": {"nodeId": ".1.140265861260992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265760779264": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265739669056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789852128": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.140265789852128"}, {"nodeId": ".2.140265789852128"}, {"nodeId": ".3.140265789852128"}, {"nodeId": ".4.140265789852128"}], "bases": [{"nodeId": "140265861260640", "args": [{"nodeId": ".3.140265789852128"}]}, {"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265789852128"}, {"nodeId": ".2.140265789852128"}, {"nodeId": ".3.140265789852128"}]}], "isAbstract": true}}, ".1.140265789852128": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789852128", "variance": "COVARIANT"}}, ".2.140265789852128": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789852128", "variance": "CONTRAVARIANT"}}, ".3.140265789852128": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789852128", "variance": "COVARIANT"}}, ".4.140265789852128": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789852128", "variance": "INVARIANT"}}, "140265861261344": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "content": {"name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739670400"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861261344"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__aiter__"]}}, ".1.140265861261344": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861261344", "variance": "COVARIANT"}}, "140265739670400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861261344", "args": [{"nodeId": ".1.140265861261344"}]}], "returnType": {"nodeId": "140265861261696", "args": [{"nodeId": ".1.140265861261344"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861261696": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "content": {"name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739676224"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849315936"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140265861261696"}], "bases": [{"nodeId": "140265861261344", "args": [{"nodeId": ".1.140265861261696"}]}], "protocolMembers": ["__aiter__", "__anext__"]}}, ".1.140265861261696": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861261696", "variance": "COVARIANT"}}, "140265739676224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861261696", "args": [{"nodeId": ".1.140265861261696"}]}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".1.140265861261696"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265849315936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861261696", "args": [{"nodeId": ".1.140265861261696"}]}], "returnType": {"nodeId": "140265861261696", "args": [{"nodeId": ".1.140265861261696"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861262048": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849316384"}, "name": "__anext__"}}, {"kind": "Variable", "content": {"name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739678912"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760777696"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849318176"}, "name": "aclose"}}, {"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739678016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739679808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739680032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739680256"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}], "bases": [{"nodeId": "140265861261696", "args": [{"nodeId": ".1.140265861262048"}]}], "isAbstract": true}}, ".1.140265861262048": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861262048", "variance": "COVARIANT"}}, ".2.140265861262048": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861262048", "variance": "CONTRAVARIANT"}}, "140265849316384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".1.140265861262048"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739678912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}, {"nodeId": ".2.140265861262048"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".1.140265861262048"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265760777696": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265849317280"}, {"nodeId": "140265849317728"}]}}, "140265849317280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}, {"nodeId": "0"}, {"nodeId": "140265760779488"}, {"nodeId": "140265760779600"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".1.140265861262048"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265760779488": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "140265861254656"}]}}, "140265760779600": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265849317728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}, {"nodeId": "140265790233888"}, {"nodeId": "N"}, {"nodeId": "140265760779712"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".1.140265861262048"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265760779712": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265849318176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739678016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739679808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}], "returnType": {"nodeId": "140265785721248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739680032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}], "returnType": {"nodeId": "140265785726880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739680256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789853888": {"type": "Concrete", "content": {"module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740027488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740028608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740029504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740030176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740030848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740031520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740032192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740032864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740033536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740034432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740035104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740036000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740036896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740037568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740038240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740038912"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761016176"}, "items": [{"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "write"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761016512"}, "items": [{"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "writelines"}}, {"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740206368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740207040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740207936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740209056"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265789853888"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789853888"}]}], "isAbstract": true}}, ".1.140265789853888": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789853888", "variance": "INVARIANT"}}, "140265740027488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740028608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740029504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740030176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740030848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740031520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740032192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740032864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265789853888"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265740033536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740034432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265789853888"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265740035104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265789853888"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265740036000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265740036896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740037568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740038240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": "140265761016848"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265761016848": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265740038912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761016176": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844519904"}, {"nodeId": "140265764889856"}, {"nodeId": "140265844520800"}]}}, "140265844519904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265764889856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265844520800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": ".1.140265789853888"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265761016512": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844521248"}, {"nodeId": "140265764890976"}, {"nodeId": "140265844522144"}]}}, "140265844521248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265764890976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265789865152"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265844522144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265740206368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": ".1.140265789853888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740207040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789853888"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265740207936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265740209056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": "140265761017184"}, {"nodeId": "140265761017296"}, {"nodeId": "140265761017408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265761017184": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265761017296": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265761017408": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265789854240": {"type": "Concrete", "content": {"module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740209952"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265789853888", "args": [{"nodeId": "140265790227552"}]}], "isAbstract": true}}, "140265740209952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854240"}], "returnType": {"nodeId": "140265789854240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789854592": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740211520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740211968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740212192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740212416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740212640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740212864"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265789853888", "args": [{"nodeId": "140265790227200"}]}], "isAbstract": true}}, "140265740211520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854592"}], "returnType": {"nodeId": "140265789854240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740211968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854592"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740212192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854592"}], "returnType": {"nodeId": "140265761017520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761017520": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265740212416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854592"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740212640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854592"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740212864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854592"}], "returnType": {"nodeId": "140265789854592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789854944": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761018640"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740215552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844667808"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844668704"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140265761018640": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844666464"}, {"nodeId": "140265844666912"}]}}, "140265844666464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854944"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265761020208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265761020208": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}}, "140265844666912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854944"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140265740215552": {"type": "Function", "content": {"typeVars": [".0.140265740215552"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140265740215552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140265740215552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789854944"}, "def": "140265740215552", "variance": "INVARIANT"}}, "140265844667808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854944"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844668704": {"type": "Function", "content": {"typeVars": [".0.140265844668704"], "argTypes": [{"nodeId": ".0.140265844668704"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265844668704"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140265844668704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789854944"}, "def": "140265844668704", "variance": "INVARIANT"}}, "140265789855296": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265789857056", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265789857056", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844669152"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844669600"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844670048"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844850976"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844851424"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844851872"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844852320"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844852768"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844853216"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844853664"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}], "isAbstract": true}}, "140265844669152": {"type": "Function", "content": {"typeVars": [".0.140265844669152"], "argTypes": [{"nodeId": ".0.140265844669152"}], "returnType": {"nodeId": ".0.140265844669152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265844669152": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789855296"}, "def": "140265844669152", "variance": "INVARIANT"}}, "140265844669600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789855296"}, {"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140265844670048": {"type": "Function", "content": {"typeVars": [".-1.140265844670048"], "argTypes": [{"nodeId": "140265789855296"}, {"nodeId": "0"}, {"nodeId": ".-1.140265844670048"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140265844670048": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844670048", "variance": "INVARIANT"}}, "140265844850976": {"type": "Function", "content": {"typeVars": [".-1.140265844850976"], "argTypes": [{"nodeId": ".-1.140265844850976"}, {"nodeId": ".-1.140265844850976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140265844850976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844850976", "variance": "INVARIANT"}}, "140265844851424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789855296"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844851872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789855296"}], "returnType": {"nodeId": "140265789856352", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844852320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789855296"}], "returnType": {"nodeId": "140265789855648", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844852768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789855296"}], "returnType": {"nodeId": "140265789856000", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844853216": {"type": "Function", "content": {"typeVars": [".0.140265844853216"], "argTypes": [{"nodeId": ".0.140265844853216"}, {"nodeId": ".0.140265844853216"}], "returnType": {"nodeId": ".0.140265844853216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844853216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789855296"}, "def": "140265844853216", "variance": "INVARIANT"}}, "140265844853664": {"type": "Function", "content": {"typeVars": [".0.140265844853664"], "argTypes": [{"nodeId": ".0.140265844853664"}, {"nodeId": ".0.140265844853664"}], "returnType": {"nodeId": ".0.140265844853664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844853664": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789855296"}, "def": "140265844853664", "variance": "INVARIANT"}}, "140265861265216": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "content": {"name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785721248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773689408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773687616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844854112"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844855008"}, "name": "_evaluate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844855904"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265773689408": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265773687616": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265844854112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265216"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}, {"nodeId": "140265761021104"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}}, "140265761021104": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265844855008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265216"}, {"nodeId": "140265761021328"}, {"nodeId": "140265761021552"}, {"nodeId": "140265789857056", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265761021776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}}, "140265761021328": {"type": "Union", "content": {"items": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265761021552": {"type": "Union", "content": {"items": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265761021776": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265844855904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265216"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265789859168": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752723520"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848588096"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848588544"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848588992"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848589440"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848589888"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848590336"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848590784"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848591232"}, "name": "__copy__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752723632"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848592576"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848593024"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752724864"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}], "bases": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}], "isAbstract": false}}, ".1.140265789859168": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789859168", "variance": "INVARIANT"}}, ".2.140265789859168": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789859168", "variance": "INVARIANT"}}, "140265752723520": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844865088"}, {"nodeId": "140265828006624"}, {"nodeId": "140265844865984"}, {"nodeId": "140265844865536"}, {"nodeId": "140265848586304"}, {"nodeId": "140265844866432"}, {"nodeId": "140265848586752"}, {"nodeId": "140265848587200"}]}}, "140265844865088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265828006624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "N"}, {"nodeId": ".2.140265789859168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265844865984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265844865536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "140265764926944", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": ".2.140265789859168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265848586304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265752724528"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265752724528": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}}, "140265844866432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265752724752"}]}, {"nodeId": ".2.140265789859168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265752724752": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789859168"}]}}, "140265848586752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265848587200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265790227552"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265848588096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265848588544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": ".1.140265789859168"}], "returnType": {"nodeId": ".2.140265789859168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848588992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265848589440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": ".1.140265789859168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848589888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789859168"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265848590336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848590784": {"type": "Function", "content": {"typeVars": [".0.140265848590784"], "argTypes": [{"nodeId": ".0.140265848590784"}], "returnType": {"nodeId": ".0.140265848590784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265848590784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, "def": "140265848590784", "variance": "INVARIANT"}}, "140265848591232": {"type": "Function", "content": {"typeVars": [".0.140265848591232"], "argTypes": [{"nodeId": ".0.140265848591232"}], "returnType": {"nodeId": ".0.140265848591232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265848591232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, "def": "140265848591232", "variance": "INVARIANT"}}, "140265752723632": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265848591680"}, {"nodeId": "140265848592128"}]}}, "140265848591680": {"type": "Function", "content": {"typeVars": [".-1.140265848591680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265848591680"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140265789859168", "args": [{"nodeId": ".-1.140265848591680"}, {"nodeId": "140265752725200"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140265848591680": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848591680", "variance": "INVARIANT"}}, "140265752725200": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265848592128": {"type": "Function", "content": {"typeVars": [".-1.140265848592128", ".-2.140265848592128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265848592128"}]}, {"nodeId": ".-2.140265848592128"}], "returnType": {"nodeId": "140265789859168", "args": [{"nodeId": ".-1.140265848592128"}, {"nodeId": ".-2.140265848592128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140265848592128": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848592128", "variance": "INVARIANT"}}, ".-2.140265848592128": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848592128", "variance": "INVARIANT"}}, "140265848592576": {"type": "Function", "content": {"typeVars": [".-1.140265848592576", ".-2.140265848592576"], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "140265752725312"}], "returnType": {"nodeId": "140265789859168", "args": [{"nodeId": "140265752725424"}, {"nodeId": "140265752725536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752725312": {"type": "Union", "content": {"items": [{"nodeId": "140265789859168", "args": [{"nodeId": ".-1.140265848592576"}, {"nodeId": ".-2.140265848592576"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": ".-1.140265848592576"}, {"nodeId": ".-2.140265848592576"}]}]}}, ".-1.140265848592576": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848592576", "variance": "INVARIANT"}}, ".-2.140265848592576": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848592576", "variance": "INVARIANT"}}, "140265752725424": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".-1.140265848592576"}]}}, "140265752725536": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265789859168"}, {"nodeId": ".-2.140265848592576"}]}}, "140265848593024": {"type": "Function", "content": {"typeVars": [".-1.140265848593024", ".-2.140265848593024"], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "140265752725648"}], "returnType": {"nodeId": "140265789859168", "args": [{"nodeId": "140265752725760"}, {"nodeId": "140265752725872"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752725648": {"type": "Union", "content": {"items": [{"nodeId": "140265789859168", "args": [{"nodeId": ".-1.140265848593024"}, {"nodeId": ".-2.140265848593024"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": ".-1.140265848593024"}, {"nodeId": ".-2.140265848593024"}]}]}}, ".-1.140265848593024": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848593024", "variance": "INVARIANT"}}, ".-2.140265848593024": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848593024", "variance": "INVARIANT"}}, "140265752725760": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".-1.140265848593024"}]}}, "140265752725872": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265789859168"}, {"nodeId": ".-2.140265848593024"}]}}, "140265752724864": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265848593472"}, {"nodeId": "140265848593920"}]}}, "140265848593472": {"type": "Function", "content": {"typeVars": [".0.140265848593472"], "argTypes": [{"nodeId": ".0.140265848593472"}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}], "returnType": {"nodeId": ".0.140265848593472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848593472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, "def": "140265848593472", "variance": "INVARIANT"}}, "140265848593920": {"type": "Function", "content": {"typeVars": [".0.140265848593920"], "argTypes": [{"nodeId": ".0.140265848593920"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265752726208"}]}], "returnType": {"nodeId": ".0.140265848593920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848593920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, "def": "140265848593920", "variance": "INVARIANT"}}, "140265752726208": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}}, "140265789859520": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265789859520"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752724976"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848595264"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848595712"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848596160"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848596608"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848597056"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848597504"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848597952"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752725984"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752726320"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848600192"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848600640"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848601088"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848601536"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848601984"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848799296"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848799744"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848800192"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848800640"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848801088"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848801536"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848801984"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848802432"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848802880"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848803328"}, "name": "index"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752726992"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848804672"}, "name": "extend"}}], "typeVars": [{"nodeId": ".1.140265789859520"}], "bases": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265789859520"}]}], "isAbstract": false}}, ".1.140265789859520": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789859520", "variance": "INVARIANT"}}, "140265752724976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265848594368"}, {"nodeId": "140265848594816"}]}}, "140265848594368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}}, "140265848594816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789859520"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}}, "140265848595264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265752726432"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752726432": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}]}}, "140265848595712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265752726544"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752726544": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}]}}, "140265848596160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265752726656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752726656": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}]}}, "140265848596608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265752726768"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752726768": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}]}}, "140265848597056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848597504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848597952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265752725984": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265848598400"}, {"nodeId": "140265848598848"}]}}, "140265848598400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".1.140265789859520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848598848": {"type": "Function", "content": {"typeVars": [".0.140265848598848"], "argTypes": [{"nodeId": ".0.140265848598848"}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": ".0.140265848598848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848598848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848598848", "variance": "INVARIANT"}}, "140265752726320": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265848599296"}, {"nodeId": "140265848599744"}]}}, "140265848599296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265789863040"}, {"nodeId": ".1.140265789859520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265848599744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265790228608"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789859520"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265848600192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265752727216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752727216": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "140265790228608"}]}}, "140265848600640": {"type": "Function", "content": {"typeVars": [".0.140265848600640"], "argTypes": [{"nodeId": ".0.140265848600640"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789859520"}]}], "returnType": {"nodeId": ".0.140265848600640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848600640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848600640", "variance": "INVARIANT"}}, "140265848601088": {"type": "Function", "content": {"typeVars": [".0.140265848601088"], "argTypes": [{"nodeId": ".0.140265848601088"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789859520"}]}], "returnType": {"nodeId": ".0.140265848601088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848601088": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848601088", "variance": "INVARIANT"}}, "140265848601536": {"type": "Function", "content": {"typeVars": [".0.140265848601536"], "argTypes": [{"nodeId": ".0.140265848601536"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789859520"}]}], "returnType": {"nodeId": ".0.140265848601536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848601536": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848601536", "variance": "INVARIANT"}}, "140265848601984": {"type": "Function", "content": {"typeVars": [".0.140265848601984"], "argTypes": [{"nodeId": ".0.140265848601984"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265848601984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848601984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848601984", "variance": "INVARIANT"}}, "140265848799296": {"type": "Function", "content": {"typeVars": [".0.140265848799296"], "argTypes": [{"nodeId": ".0.140265848799296"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265848799296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848799296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848799296", "variance": "INVARIANT"}}, "140265848799744": {"type": "Function", "content": {"typeVars": [".0.140265848799744"], "argTypes": [{"nodeId": ".0.140265848799744"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265848799744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848799744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848799744", "variance": "INVARIANT"}}, "140265848800192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": ".1.140265789859520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140265848800640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265861266272"}, {"nodeId": ".1.140265789859520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}}, "140265848801088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265789859520"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}}, "140265848801536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": ".1.140265789859520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140265848801984": {"type": "Function", "content": {"typeVars": [".0.140265848801984"], "argTypes": [{"nodeId": ".0.140265848801984"}], "returnType": {"nodeId": ".0.140265848801984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265848801984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848801984", "variance": "INVARIANT"}}, "140265848802432": {"type": "Function", "content": {"typeVars": [".0.140265848802432"], "argTypes": [{"nodeId": ".0.140265848802432"}], "returnType": {"nodeId": ".0.140265848802432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265848802432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848802432", "variance": "INVARIANT"}}, "140265848802880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": ".1.140265789859520"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140265848803328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": ".1.140265789859520"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}}, "140265752726992": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265848587648"}, {"nodeId": "140265848804224"}]}}, "140265848587648": {"type": "Function", "content": {"typeVars": [".-1.140265848587648"], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".-1.140265848587648"}]}, {"nodeId": "N"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140265848587648": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140265760652336"}, "def": "140265848587648", "variance": "INVARIANT"}}, "140265848804224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265752612416"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140265752612416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140265789859520"}], "returnType": {"nodeId": "140265752727664"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265752727664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995808"}}}, "140265848804672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789859520"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140265789859872": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848805120"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848805568"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848806016"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848806464"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848806912"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848807360"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848807808"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848808256"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848808704"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848809152"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848809600"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848810048"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848810496"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848810944"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848811392"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848811840"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848812288"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848812736"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848813184"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848813632"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848814080"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848814976"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848897600"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848898048"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848898496"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848898944"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848899840"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848900288"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848900736"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848901184"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848901632"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848902080"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848902528"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848902976"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848903424"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848903872"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848904320"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848904768"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848905216"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848905664"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848906112"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848906560"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848907008"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848907456"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848907904"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848908352"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848908800"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848909248"}, "name": "lstrip"}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706356208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848909696"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848910144"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848910592"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848911040"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848911488"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848911936"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848912384"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848912832"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848913280"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839968320"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839968768"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839969216"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839969664"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839970112"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839970560"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839971008"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839971456"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839971904"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839972352"}, "name": "zfill"}}], "typeVars": [], "bases": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265789859872"}]}], "isAbstract": false}}, "140265848805120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140265848805568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265848806016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265848806464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265848806912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265752727776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752727776": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265848807360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752727888"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752727888": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848807808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752728000"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752728000": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848808256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752728112"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752728112": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848808704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752728224"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752728224": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848809152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848809600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848810048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265848810496": {"type": "Function", "content": {"typeVars": [".0.140265848810496"], "argTypes": [{"nodeId": ".0.140265848810496"}, {"nodeId": "140265752728448"}], "returnType": {"nodeId": ".0.140265848810496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848810496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848810496", "variance": "INVARIANT"}}, "140265752728448": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "140265790228608"}]}}, "140265848810944": {"type": "Function", "content": {"typeVars": [".0.140265848810944"], "argTypes": [{"nodeId": ".0.140265848810944"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".0.140265848810944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265848810944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848810944", "variance": "INVARIANT"}}, "140265848811392": {"type": "Function", "content": {"typeVars": [".0.140265848811392"], "argTypes": [{"nodeId": ".0.140265848811392"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".0.140265848811392"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265848811392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848811392", "variance": "INVARIANT"}}, "140265848811840": {"type": "Function", "content": {"typeVars": [".0.140265848811840"], "argTypes": [{"nodeId": ".0.140265848811840"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": ".0.140265848811840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848811840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848811840", "variance": "INVARIANT"}}, "140265848812288": {"type": "Function", "content": {"typeVars": [".0.140265848812288"], "argTypes": [{"nodeId": ".0.140265848812288"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": ".0.140265848812288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848812288": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848812288", "variance": "INVARIANT"}}, "140265848812736": {"type": "Function", "content": {"typeVars": [".0.140265848812736"], "argTypes": [{"nodeId": ".0.140265848812736"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265848812736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848812736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848812736", "variance": "INVARIANT"}}, "140265848813184": {"type": "Function", "content": {"typeVars": [".0.140265848813184"], "argTypes": [{"nodeId": ".0.140265848813184"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265848813184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848813184": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848813184", "variance": "INVARIANT"}}, "140265848813632": {"type": "Function", "content": {"typeVars": [".0.140265848813632"], "argTypes": [{"nodeId": ".0.140265848813632"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265848813632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848813632": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848813632", "variance": "INVARIANT"}}, "140265848814080": {"type": "Function", "content": {"typeVars": [".0.140265848814080"], "argTypes": [{"nodeId": ".0.140265848814080"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": ".0.140265848814080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848814080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848814080", "variance": "INVARIANT"}}, "140265848814976": {"type": "Function", "content": {"typeVars": [".0.140265848814976"], "argTypes": [{"nodeId": ".0.140265848814976"}], "returnType": {"nodeId": ".0.140265848814976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265848814976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848814976", "variance": "INVARIANT"}}, "140265848897600": {"type": "Function", "content": {"typeVars": [".0.140265848897600"], "argTypes": [{"nodeId": ".0.140265848897600"}], "returnType": {"nodeId": ".0.140265848897600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265848897600": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848897600", "variance": "INVARIANT"}}, "140265848898048": {"type": "Function", "content": {"typeVars": [".0.140265848898048"], "argTypes": [{"nodeId": ".0.140265848898048"}, {"nodeId": "140265861266272"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265848898048"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140265848898048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848898048", "variance": "INVARIANT"}}, "140265848898496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752728784"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140265752728784": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848898944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752728896"}, {"nodeId": "140265752729008"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140265752728896": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752729008": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265848899840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752729120"}, {"nodeId": "140265752729232"}, {"nodeId": "140265752729344"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "140265752729120": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}]}}, "140265752729232": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752729344": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265848900288": {"type": "Function", "content": {"typeVars": [".0.140265848900288"], "argTypes": [{"nodeId": ".0.140265848900288"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265848900288"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, ".0.140265848900288": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848900288", "variance": "INVARIANT"}}, "140265848900736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752729456"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140265752729456": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848901184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140265848901632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140265848902080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140265848902528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848902976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848903424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848903872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848904320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848904768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848905216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848905664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848906112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848906560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848907008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848907456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848907904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140265848908352": {"type": "Function", "content": {"typeVars": [".0.140265848908352"], "argTypes": [{"nodeId": ".0.140265848908352"}, {"nodeId": "140265861266272"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265848908352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140265848908352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848908352", "variance": "INVARIANT"}}, "140265848908800": {"type": "Function", "content": {"typeVars": [".0.140265848908800"], "argTypes": [{"nodeId": ".0.140265848908800"}], "returnType": {"nodeId": ".0.140265848908800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265848908800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848908800", "variance": "INVARIANT"}}, "140265848909248": {"type": "Function", "content": {"typeVars": [".0.140265848909248"], "argTypes": [{"nodeId": ".0.140265848909248"}, {"nodeId": "140265752730016"}], "returnType": {"nodeId": ".0.140265848909248"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140265848909248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848909248", "variance": "INVARIANT"}}, "140265752730016": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265706356208": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265706437344"}, {"nodeId": "140265706437568"}, {"nodeId": "140265706437792"}]}}, "140265706437344": {"type": "Function", "content": {"typeVars": [".-1.140265706437344"], "argTypes": [{"nodeId": "140265706355872"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": ".-1.140265706437344"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265706355872": {"type": "Union", "content": {"items": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": ".-1.140265706437344"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".-1.140265706437344"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265706355536"}, {"nodeId": ".-1.140265706437344"}]}]}}, ".-1.140265706437344": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265706437344", "variance": "INVARIANT"}}, "140265706355536": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265706437568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265706437792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": "140265706355984"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265706355984": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265848909696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752730240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140265752730240": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265848910144": {"type": "Function", "content": {"typeVars": [".0.140265848910144"], "argTypes": [{"nodeId": ".0.140265848910144"}, {"nodeId": "140265752730352"}], "returnType": {"nodeId": ".0.140265848910144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140265848910144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848910144", "variance": "INVARIANT"}}, "140265752730352": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848910592": {"type": "Function", "content": {"typeVars": [".0.140265848910592"], "argTypes": [{"nodeId": ".0.140265848910592"}, {"nodeId": "140265752730464"}], "returnType": {"nodeId": ".0.140265848910592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140265848910592": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848910592", "variance": "INVARIANT"}}, "140265752730464": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848911040": {"type": "Function", "content": {"typeVars": [".0.140265848911040"], "argTypes": [{"nodeId": ".0.140265848911040"}, {"nodeId": "140265752730576"}, {"nodeId": "140265752730688"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265848911040"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}}, ".0.140265848911040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848911040", "variance": "INVARIANT"}}, "140265752730576": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265752730688": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848911488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752730800"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140265752730800": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848911936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752730912"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140265752730912": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848912384": {"type": "Function", "content": {"typeVars": [".0.140265848912384"], "argTypes": [{"nodeId": ".0.140265848912384"}, {"nodeId": "140265861266272"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265848912384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140265848912384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848912384", "variance": "INVARIANT"}}, "140265848912832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752731248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140265752731248": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265848913280": {"type": "Function", "content": {"typeVars": [".0.140265848913280"], "argTypes": [{"nodeId": ".0.140265848913280"}, {"nodeId": "140265752731360"}], "returnType": {"nodeId": ".0.140265848913280"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140265848913280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848913280", "variance": "INVARIANT"}}, "140265752731360": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265839968320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752731472"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265752731472": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265839968768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752731584"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265752731584": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265839969216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140265839969664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752731696"}, {"nodeId": "140265752731808"}, {"nodeId": "140265752731920"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "140265752731696": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}]}}, "140265752731808": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752731920": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265839970112": {"type": "Function", "content": {"typeVars": [".0.140265839970112"], "argTypes": [{"nodeId": ".0.140265839970112"}, {"nodeId": "140265752732032"}], "returnType": {"nodeId": ".0.140265839970112"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140265839970112": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265839970112", "variance": "INVARIANT"}}, "140265752732032": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265839970560": {"type": "Function", "content": {"typeVars": [".0.140265839970560"], "argTypes": [{"nodeId": ".0.140265839970560"}], "returnType": {"nodeId": ".0.140265839970560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265839970560": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265839970560", "variance": "INVARIANT"}}, "140265839971008": {"type": "Function", "content": {"typeVars": [".0.140265839971008"], "argTypes": [{"nodeId": ".0.140265839971008"}], "returnType": {"nodeId": ".0.140265839971008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265839971008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265839971008", "variance": "INVARIANT"}}, "140265839971456": {"type": "Function", "content": {"typeVars": [".0.140265839971456"], "argTypes": [{"nodeId": ".0.140265839971456"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265839971456"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, ".0.140265839971456": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265839971456", "variance": "INVARIANT"}}, "140265839971904": {"type": "Function", "content": {"typeVars": [".0.140265839971904"], "argTypes": [{"nodeId": ".0.140265839971904"}], "returnType": {"nodeId": ".0.140265839971904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265839971904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265839971904", "variance": "INVARIANT"}}, "140265839972352": {"type": "Function", "content": {"typeVars": [".0.140265839972352"], "argTypes": [{"nodeId": ".0.140265839972352"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265839972352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}}, ".0.140265839972352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265839972352", "variance": "INVARIANT"}}, "140265789860224": {"type": "Concrete", "content": {"module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "content": {"name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706537472"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752727104"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839974144"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839974592"}, "name": "appendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839975040"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839975488"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839975936"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839976384"}, "name": "extendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839976832"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839977280"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839977728"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839978176"}, "name": "popleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839978624"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839979072"}, "name": "rotate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839979520"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839979968"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839980416"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839980864"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839981312"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839981760"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839982208"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839982656"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839983104"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839983552"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839984000"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840083008"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840083456"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840083904"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840084352"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840084800"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265789860224"}], "bases": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265789860224"}]}], "isAbstract": false}}, ".1.140265789860224": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789860224", "variance": "INVARIANT"}}, "140265706537472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "140265752732256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752732256": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752727104": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265839973248"}, {"nodeId": "140265839973696"}]}}, "140265839973248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265752732480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}}, "140265752732480": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265839973696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265752732592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}}, "140265752732592": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265839974144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": ".1.140265789860224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265839974592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": ".1.140265789860224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265839975040": {"type": "Function", "content": {"typeVars": [".0.140265839975040"], "argTypes": [{"nodeId": ".0.140265839975040"}], "returnType": {"nodeId": ".0.140265839975040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265839975040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, "def": "140265839975040", "variance": "INVARIANT"}}, "140265839975488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": ".1.140265789860224"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265839975936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265839976384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265839976832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265861266272"}, {"nodeId": ".1.140265789860224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265839977280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": ".1.140265789860224"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265839977728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": ".1.140265789860224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265839978176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": ".1.140265789860224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265839978624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": ".1.140265789860224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265839979072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265839979520": {"type": "Function", "content": {"typeVars": [".0.140265839979520"], "argTypes": [{"nodeId": ".0.140265839979520"}], "returnType": {"nodeId": ".0.140265839979520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265839979520": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, "def": "140265839979520", "variance": "INVARIANT"}}, "140265839979968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265839980416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".1.140265789860224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265839980864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265789863040"}, {"nodeId": ".1.140265789860224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265839981312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265839981760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265839982208": {"type": "Function", "content": {"typeVars": [".0.140265839982208"], "argTypes": [{"nodeId": ".0.140265839982208"}], "returnType": {"nodeId": "140265752733152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265839982208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, "def": "140265839982208", "variance": "INVARIANT"}}, "140265752733152": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140265752732928"}, {"nodeId": "N"}, {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789860224"}]}]}}, "140265752732928": {"type": "Tuple", "content": {"items": []}}, "140265839982656": {"type": "Function", "content": {"typeVars": [".0.140265839982656"], "argTypes": [{"nodeId": ".0.140265839982656"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": ".0.140265839982656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265839982656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, "def": "140265839982656", "variance": "INVARIANT"}}, "140265839983104": {"type": "Function", "content": {"typeVars": [".0.140265839983104"], "argTypes": [{"nodeId": ".0.140265839983104"}, {"nodeId": ".0.140265839983104"}], "returnType": {"nodeId": ".0.140265839983104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265839983104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, "def": "140265839983104", "variance": "INVARIANT"}}, "140265839983552": {"type": "Function", "content": {"typeVars": [".0.140265839983552"], "argTypes": [{"nodeId": ".0.140265839983552"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265839983552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265839983552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, "def": "140265839983552", "variance": "INVARIANT"}}, "140265839984000": {"type": "Function", "content": {"typeVars": [".0.140265839984000"], "argTypes": [{"nodeId": ".0.140265839984000"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265839984000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265839984000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, "def": "140265839984000", "variance": "INVARIANT"}}, "140265840083008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840083456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840083904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840084352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840084800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265789897568": {"type": "Concrete", "content": {"module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752728336"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840087040"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840087488"}, "name": "elements"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840087936"}, "name": "most_common"}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706687168"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752732704"}, "items": [{"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subtract"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752733488"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840091520"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840091968"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840092416"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840092864"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840093312"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840093760"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840094208"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840094656"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840095104"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840095552"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840096000"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840096448"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840096896"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840097344"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840097792"}, "name": "total"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840098240"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840098688"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840246848"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840247296"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140265789897568"}], "bases": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}], "isAbstract": false}}, ".1.140265789897568": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789897568", "variance": "INVARIANT"}}, "140265752728336": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840085248"}, {"nodeId": "140265840085696"}, {"nodeId": "140265840086144"}, {"nodeId": "140265840086592"}]}}, "140265840085248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265840085696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265840086144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840086592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840087040": {"type": "Function", "content": {"typeVars": [".0.140265840087040"], "argTypes": [{"nodeId": ".0.140265840087040"}], "returnType": {"nodeId": ".0.140265840087040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265840087040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "def": "140265840087040", "variance": "INVARIANT"}}, "140265840087488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789897568"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840087936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265752733600"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265752733824"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "140265752733600": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752733824": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}}, "140265706687168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "140265752734048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}}, "140265752734048": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752732704": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840088832"}, {"nodeId": "140265840089280"}, {"nodeId": "140265840089728"}]}}, "140265840088832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265840089280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840089728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265752733488": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840090176"}, {"nodeId": "140265840090624"}, {"nodeId": "140265840091072"}]}}, "140265840090176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265840090624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265840091072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "N"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265840091520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": ".1.140265789897568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140265840091968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840092416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840092864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840093312": {"type": "Function", "content": {"typeVars": [".-1.140265840093312"], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": ".-1.140265840093312"}]}], "returnType": {"nodeId": "140265789897568", "args": [{"nodeId": "140265752734384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265840093312": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840093312", "variance": "INVARIANT"}}, "140265752734384": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789897568"}, {"nodeId": ".-1.140265840093312"}]}}, "140265840093760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840094208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840094656": {"type": "Function", "content": {"typeVars": [".-1.140265840094656"], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": ".-1.140265840094656"}]}], "returnType": {"nodeId": "140265789897568", "args": [{"nodeId": "140265752734496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265840094656": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840094656", "variance": "INVARIANT"}}, "140265752734496": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789897568"}, {"nodeId": ".-1.140265840094656"}]}}, "140265840095104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840095552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840096000": {"type": "Function", "content": {"typeVars": [".0.140265840096000"], "argTypes": [{"nodeId": ".0.140265840096000"}, {"nodeId": "140265764926592", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}], "returnType": {"nodeId": ".0.140265840096000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840096000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "def": "140265840096000", "variance": "INVARIANT"}}, "140265764926592": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848367904"}, "name": "items"}}], "typeVars": [{"nodeId": ".1.140265764926592"}, {"nodeId": ".2.140265764926592"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["items"]}}, ".1.140265764926592": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764926592", "variance": "COVARIANT"}}, ".2.140265764926592": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764926592", "variance": "COVARIANT"}}, "140265848367904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764926592", "args": [{"nodeId": ".1.140265764926592"}, {"nodeId": ".2.140265764926592"}]}], "returnType": {"nodeId": "140265861263808", "args": [{"nodeId": "140265747835232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747835232": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265764926592"}, {"nodeId": ".2.140265764926592"}]}}, "140265840096448": {"type": "Function", "content": {"typeVars": [".0.140265840096448"], "argTypes": [{"nodeId": ".0.140265840096448"}, {"nodeId": "140265764926592", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}], "returnType": {"nodeId": ".0.140265840096448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840096448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "def": "140265840096448", "variance": "INVARIANT"}}, "140265840096896": {"type": "Function", "content": {"typeVars": [".0.140265840096896"], "argTypes": [{"nodeId": ".0.140265840096896"}, {"nodeId": "140265764926592", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}], "returnType": {"nodeId": ".0.140265840096896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840096896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "def": "140265840096896", "variance": "INVARIANT"}}, "140265840097344": {"type": "Function", "content": {"typeVars": [".0.140265840097344"], "argTypes": [{"nodeId": ".0.140265840097344"}, {"nodeId": "140265764926592", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}], "returnType": {"nodeId": ".0.140265840097344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840097344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "def": "140265840097344", "variance": "INVARIANT"}}, "140265840097792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840098240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840098688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840246848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840247296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764914976": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840247744"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265764914976"}], "bases": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265764914976"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": ".1.140265764914976"}]}], "isAbstract": false}}, ".1.140265764914976": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764914976", "variance": "COVARIANT"}}, "140265840247744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914976", "args": [{"nodeId": ".1.140265764914976"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265764914976"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265764915328": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840248192"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265764915328"}, {"nodeId": ".2.140265764915328"}], "bases": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265764915328"}, {"nodeId": ".2.140265764915328"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": "140265773694000"}]}], "isAbstract": false}}, ".1.140265764915328": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764915328", "variance": "COVARIANT"}}, ".2.140265764915328": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764915328", "variance": "COVARIANT"}}, "140265840248192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764915328", "args": [{"nodeId": ".1.140265764915328"}, {"nodeId": ".2.140265764915328"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265752735168"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265752735168": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265764915328"}, {"nodeId": ".2.140265764915328"}]}}, "140265773694000": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265764915328"}, {"nodeId": ".2.140265764915328"}]}}, "140265764915680": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840248640"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265764915680"}], "bases": [{"nodeId": "140265789853536", "args": [{"nodeId": ".1.140265764915680"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": ".1.140265764915680"}]}], "isAbstract": false}}, ".1.140265764915680": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764915680", "variance": "COVARIANT"}}, "140265840248640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764915680", "args": [{"nodeId": ".1.140265764915680"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265764915680"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789860576": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840249088"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265789860576"}, {"nodeId": ".2.140265789860576"}], "bases": [{"nodeId": "140265789855648", "args": [{"nodeId": ".1.140265789860576"}, {"nodeId": ".2.140265789860576"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": ".1.140265789860576"}]}], "isAbstract": false}}, ".1.140265789860576": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789860576", "variance": "COVARIANT"}}, ".2.140265789860576": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789860576", "variance": "COVARIANT"}}, "140265840249088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860576", "args": [{"nodeId": ".1.140265789860576"}, {"nodeId": ".2.140265789860576"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789860576"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789860928": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840249536"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265789860928"}, {"nodeId": ".2.140265789860928"}], "bases": [{"nodeId": "140265789856352", "args": [{"nodeId": ".1.140265789860928"}, {"nodeId": ".2.140265789860928"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": "140265764648128"}]}], "isAbstract": false}}, ".1.140265789860928": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789860928", "variance": "COVARIANT"}}, ".2.140265789860928": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789860928", "variance": "COVARIANT"}}, "140265840249536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860928", "args": [{"nodeId": ".1.140265789860928"}, {"nodeId": ".2.140265789860928"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265752735392"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265752735392": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789860928"}, {"nodeId": ".2.140265789860928"}]}}, "140265764648128": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789860928"}, {"nodeId": ".2.140265789860928"}]}}, "140265789861280": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840249984"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265789861280"}, {"nodeId": ".2.140265789861280"}], "bases": [{"nodeId": "140265789856000", "args": [{"nodeId": ".1.140265789861280"}, {"nodeId": ".2.140265789861280"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": ".2.140265789861280"}]}], "isAbstract": false}}, ".1.140265789861280": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789861280", "variance": "COVARIANT"}}, ".2.140265789861280": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789861280", "variance": "COVARIANT"}}, "140265840249984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861280", "args": [{"nodeId": ".1.140265789861280"}, {"nodeId": ".2.140265789861280"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".2.140265789861280"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789861632": {"type": "Concrete", "content": {"module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840250432"}, "name": "popitem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840250880"}, "name": "move_to_end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840251328"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840251776"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840252224"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840252672"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840253120"}, "name": "values"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752734160"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752735728"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}], "typeVars": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}], "bases": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": ".1.140265789861632"}]}], "isAbstract": false}}, ".1.140265789861632": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789861632", "variance": "INVARIANT"}}, ".2.140265789861632": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789861632", "variance": "INVARIANT"}}, "140265840250432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265752735616"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}}, "140265752735616": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}}, "140265840250880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, {"nodeId": ".1.140265789861632"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}}, "140265840251328": {"type": "Function", "content": {"typeVars": [".0.140265840251328"], "argTypes": [{"nodeId": ".0.140265840251328"}], "returnType": {"nodeId": ".0.140265840251328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265840251328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, "def": "140265840251328", "variance": "INVARIANT"}}, "140265840251776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789861632"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840252224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}], "returnType": {"nodeId": "140265789860576", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840252672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}], "returnType": {"nodeId": "140265789860928", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840253120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}], "returnType": {"nodeId": "140265789861280", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752734160": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840253568"}, {"nodeId": "140265840254016"}]}}, "140265840253568": {"type": "Function", "content": {"typeVars": [".-1.140265840253568"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265840253568"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140265789861632", "args": [{"nodeId": ".-1.140265840253568"}, {"nodeId": "140265752736064"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140265840253568": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840253568", "variance": "INVARIANT"}}, "140265752736064": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265840254016": {"type": "Function", "content": {"typeVars": [".-1.140265840254016", ".-2.140265840254016"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265840254016"}]}, {"nodeId": ".-2.140265840254016"}], "returnType": {"nodeId": "140265789861632", "args": [{"nodeId": ".-1.140265840254016"}, {"nodeId": ".-2.140265840254016"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140265840254016": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840254016", "variance": "INVARIANT"}}, ".-2.140265840254016": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840254016", "variance": "INVARIANT"}}, "140265752735728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840254464"}, {"nodeId": "140265840254912"}]}}, "140265840254464": {"type": "Function", "content": {"typeVars": [".-1.140265840254464"], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": "140265752736288"}]}, {"nodeId": ".1.140265789861632"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265752736400"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140265752736288": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140265840254464"}, {"nodeId": "N"}]}}, ".-1.140265840254464": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840254464", "variance": "INVARIANT"}}, "140265752736400": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140265840254464"}, {"nodeId": "N"}]}}, "140265840254912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, {"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}], "returnType": {"nodeId": ".2.140265789861632"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140265789897920": {"type": "Concrete", "content": {"module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764647568"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752735840"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840258944"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840259392"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840259840"}, "name": "copy"}}], "typeVars": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}], "bases": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}], "isAbstract": false}}, ".1.140265789897920": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789897920", "variance": "INVARIANT"}}, ".2.140265789897920": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789897920", "variance": "INVARIANT"}}, "140265764647568": {"type": "Union", "content": {"items": [{"nodeId": "140265764880448"}, {"nodeId": "N"}]}}, "140265764880448": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": [], "argNames": []}}, "140265752735840": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840255360"}, {"nodeId": "140265840255808"}, {"nodeId": "140265840256256"}, {"nodeId": "140265840256704"}, {"nodeId": "140265840257152"}, {"nodeId": "140265840257600"}, {"nodeId": "140265840258048"}, {"nodeId": "140265840258496"}]}}, "140265840255360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840255808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": ".2.140265789897920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140265840256256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": "140265752736624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265752736624": {"type": "Union", "content": {"items": [{"nodeId": "140265752613088"}, {"nodeId": "N"}]}}, "140265752613088": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": [], "argNames": []}}, "140265840256704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": "140265752736736"}, {"nodeId": ".2.140265789897920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265752736736": {"type": "Union", "content": {"items": [{"nodeId": "140265752613312"}, {"nodeId": "N"}]}}, "140265752613312": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": [], "argNames": []}}, "140265840257152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": "140265752736848"}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265752736848": {"type": "Union", "content": {"items": [{"nodeId": "140265752612640"}, {"nodeId": "N"}]}}, "140265752612640": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": [], "argNames": []}}, "140265840257600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": "140265752736960"}, {"nodeId": "140265764926944", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": ".2.140265789897920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140265752736960": {"type": "Union", "content": {"items": [{"nodeId": "140265752613536"}, {"nodeId": "N"}]}}, "140265752613536": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": [], "argNames": []}}, "140265840258048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": "140265752737072"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265752737296"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265752737072": {"type": "Union", "content": {"items": [{"nodeId": "140265752613760"}, {"nodeId": "N"}]}}, "140265752613760": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": [], "argNames": []}}, "140265752737296": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}}, "140265840258496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": "140265752737408"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265752737632"}]}, {"nodeId": ".2.140265789897920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140265752737408": {"type": "Union", "content": {"items": [{"nodeId": "140265752613984"}, {"nodeId": "N"}]}}, "140265752613984": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": [], "argNames": []}}, "140265752737632": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789897920"}]}}, "140265840258944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": ".1.140265789897920"}], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840259392": {"type": "Function", "content": {"typeVars": [".0.140265840259392"], "argTypes": [{"nodeId": ".0.140265840259392"}], "returnType": {"nodeId": ".0.140265840259392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265840259392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789897920", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}, "def": "140265840259392", "variance": "INVARIANT"}}, "140265840259840": {"type": "Function", "content": {"typeVars": [".0.140265840259840"], "argTypes": [{"nodeId": ".0.140265840259840"}], "returnType": {"nodeId": ".0.140265840259840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265840259840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789897920", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}, "def": "140265840259840", "variance": "INVARIANT"}}, "140265789861984": {"type": "Concrete", "content": {"module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840260288"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840260736"}, "name": "new_child"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265701868032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840261632"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840262080"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840262528"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840377920"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840378368"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840378816"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840379264"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840379712"}, "name": "__bool__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752736176"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752737856"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840381952"}, "name": "copy"}}, {"kind": "Variable", "content": {"name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701870720"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752738080"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840383296"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840383744"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752738416"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}], "bases": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}], "isAbstract": false}}, ".1.140265789861984": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789861984", "variance": "INVARIANT"}}, ".2.140265789861984": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789861984", "variance": "INVARIANT"}}, "140265840260288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}}, "140265840260736": {"type": "Function", "content": {"typeVars": [".0.140265840260736"], "argTypes": [{"nodeId": ".0.140265840260736"}, {"nodeId": "140265752737968"}], "returnType": {"nodeId": ".0.140265840260736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, ".0.140265840260736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, "def": "140265840260736", "variance": "INVARIANT"}}, "140265752737968": {"type": "Union", "content": {"items": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": "N"}]}}, "140265701868032": {"type": "Function", "content": {"typeVars": [".0.140265701868032"], "argTypes": [{"nodeId": ".0.140265701868032"}], "returnType": {"nodeId": ".0.140265701868032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265701868032": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, "def": "140265701868032", "variance": "INVARIANT"}}, "140265840261632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265840262080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": ".1.140265789861984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840262528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": ".1.140265789861984"}], "returnType": {"nodeId": ".2.140265789861984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840377920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789861984"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840378368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840378816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840379264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": ".1.140265789861984"}], "returnType": {"nodeId": ".2.140265789861984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140265840379712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752736176": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840380160"}, {"nodeId": "140265840380608"}]}}, "140265840380160": {"type": "Function", "content": {"typeVars": [".-1.140265840380160"], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": "140265752738192"}]}, {"nodeId": ".1.140265789861984"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265752738304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140265752738192": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140265840380160"}, {"nodeId": "N"}]}}, ".-1.140265840380160": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840380160", "variance": "INVARIANT"}}, "140265752738304": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140265840380160"}, {"nodeId": "N"}]}}, "140265840380608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}], "returnType": {"nodeId": ".2.140265789861984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140265752737856": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840381056"}, {"nodeId": "140265840381504"}]}}, "140265840381056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": ".1.140265789861984"}], "returnType": {"nodeId": ".2.140265789861984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140265840381504": {"type": "Function", "content": {"typeVars": [".-1.140265840381504"], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": ".1.140265789861984"}, {"nodeId": "140265752738528"}], "returnType": {"nodeId": "140265752738640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140265752738528": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265789861984"}, {"nodeId": ".-1.140265840381504"}]}}, ".-1.140265840381504": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840381504", "variance": "INVARIANT"}}, "140265752738640": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265789861984"}, {"nodeId": ".-1.140265840381504"}]}}, "140265840381952": {"type": "Function", "content": {"typeVars": [".0.140265840381952"], "argTypes": [{"nodeId": ".0.140265840381952"}], "returnType": {"nodeId": ".0.140265840381952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265840381952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, "def": "140265840381952", "variance": "INVARIANT"}}, "140265701870720": {"type": "Function", "content": {"typeVars": [".0.140265701870720"], "argTypes": [{"nodeId": ".0.140265701870720"}], "returnType": {"nodeId": ".0.140265701870720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265701870720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, "def": "140265701870720", "variance": "INVARIANT"}}, "140265752738080": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840382400"}, {"nodeId": "140265840382848"}]}}, "140265840382400": {"type": "Function", "content": {"typeVars": [".-1.140265840382400"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265840382400"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140265789861984", "args": [{"nodeId": ".-1.140265840382400"}, {"nodeId": "140265752738976"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}}, ".-1.140265840382400": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840382400", "variance": "INVARIANT"}}, "140265752738976": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265840382848": {"type": "Function", "content": {"typeVars": [".-1.140265840382848", ".-2.140265840382848"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265840382848"}]}, {"nodeId": ".-2.140265840382848"}], "returnType": {"nodeId": "140265789861984", "args": [{"nodeId": ".-1.140265840382848"}, {"nodeId": ".-2.140265840382848"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140265840382848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840382848", "variance": "INVARIANT"}}, ".-2.140265840382848": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840382848", "variance": "INVARIANT"}}, "140265840383296": {"type": "Function", "content": {"typeVars": [".-1.140265840383296", ".-2.140265840383296"], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265840383296"}, {"nodeId": ".-2.140265840383296"}]}], "returnType": {"nodeId": "140265789861984", "args": [{"nodeId": "140265752739088"}, {"nodeId": "140265752739200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265840383296": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840383296", "variance": "INVARIANT"}}, ".-2.140265840383296": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840383296", "variance": "INVARIANT"}}, "140265752739088": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".-1.140265840383296"}]}}, "140265752739200": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265789861984"}, {"nodeId": ".-2.140265840383296"}]}}, "140265840383744": {"type": "Function", "content": {"typeVars": [".-1.140265840383744", ".-2.140265840383744"], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265840383744"}, {"nodeId": ".-2.140265840383744"}]}], "returnType": {"nodeId": "140265789861984", "args": [{"nodeId": "140265752739312"}, {"nodeId": "140265752739424"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265840383744": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840383744", "variance": "INVARIANT"}}, ".-2.140265840383744": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840383744", "variance": "INVARIANT"}}, "140265752739312": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".-1.140265840383744"}]}}, "140265752739424": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265789861984"}, {"nodeId": ".-2.140265840383744"}]}}, "140265752738416": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840384192"}, {"nodeId": "140265840384640"}]}}, "140265840384192": {"type": "Function", "content": {"typeVars": [".0.140265840384192"], "argTypes": [{"nodeId": ".0.140265840384192"}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}], "returnType": {"nodeId": ".0.140265840384192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840384192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, "def": "140265840384192", "variance": "INVARIANT"}}, "140265840384640": {"type": "Function", "content": {"typeVars": [".0.140265840384640"], "argTypes": [{"nodeId": ".0.140265840384640"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265747824704"}]}], "returnType": {"nodeId": ".0.140265840384640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840384640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, "def": "140265840384640", "variance": "INVARIANT"}}, "140265747824704": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}}, "140265764449344": {"type": "Concrete", "content": {"module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840386656"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840387104"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}], "isAbstract": false}}, "140265840386656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764449344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840387104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764449344"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265764449696": {"type": "Concrete", "content": {"module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840388896"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710015808"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840390688"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840391136"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840392480"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840393376"}, "name": "__getitem__"}}, {"kind": "Variable", "content": {"name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710020064"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844949280"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844949728"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844950176"}, "name": "__dir__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752096304"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "Variable", "content": {"name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265764450048"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "A"}, {"nodeId": "140265764450048"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265789896512"}], "isAbstract": false}}, "140265840388896": {"type": "Function", "content": {"typeVars": [".-1.140265840388896"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, {"nodeId": "140265764449344"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140265840388896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}}, ".-1.140265840388896": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840388896", "variance": "INVARIANT"}}, "140265710015808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265764449344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}}, "140265840390688": {"type": "Function", "content": {"typeVars": [".-1.140265840390688"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".-1.140265840390688"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140265840390688": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840390688", "variance": "INVARIANT"}}, "140265840391136": {"type": "Function", "content": {"typeVars": [".-1.140265840391136"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".-1.140265840391136"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140265840391136": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840391136", "variance": "INVARIANT"}}, "140265840392480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840393376": {"type": "Function", "content": {"typeVars": [".-1.140265840393376"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".-1.140265840393376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265840393376": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840393376", "variance": "INVARIANT"}}, "140265710020064": {"type": "Function", "content": {"typeVars": [".-1.140265710020064"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140265785721600", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".-1.140265710020064"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140265710020064": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265710020064", "variance": "INVARIANT"}}, "140265844949280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764449696"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265844949728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764449696"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844950176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764449696"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752096304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844950624"}, {"nodeId": "140265844951520"}]}}, "140265844950624": {"type": "Function", "content": {"typeVars": [".-1.140265844950624"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140265844950624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}}, ".-1.140265844950624": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844950624", "variance": "INVARIANT"}}, "140265844951520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764449696"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752315040"}, {"nodeId": "140265752315152"}, {"nodeId": "140265752315264"}, {"nodeId": "140265752315376"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "value", "names", "module", "qualname", "type", "start"]}}, "140265752315040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785802112"}}}, "140265785802112": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265785800320"}]}]}, {"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}]}}, "140265785800320": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}}, "140265752315152": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752315264": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752315376": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265764450400": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710024768"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844956448"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140265861266272"}, {"nodeId": "140265764450048"}], "isAbstract": false}}, "140265710024768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450400"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844956448": {"type": "Function", "content": {"typeVars": [".0.140265844956448"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265844956448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140265844956448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764450400"}, "def": "140265844956448", "variance": "INVARIANT"}}, "140265764450752": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785802448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710025888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710191328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844958240"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844958688"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844959136"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844959584"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844960032"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844960480"}, "name": "__invert__"}}], "typeVars": [], "bases": [{"nodeId": "140265764450048"}], "isAbstract": false}}, "140265785802448": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265710025888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450752"}], "returnType": {"nodeId": "140265752316272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752316272": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265710191328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450752"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844958240": {"type": "Function", "content": {"typeVars": [".0.140265844958240"], "argTypes": [{"nodeId": ".0.140265844958240"}, {"nodeId": ".0.140265844958240"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844958240": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764450752"}, "def": "140265844958240", "variance": "INVARIANT"}}, "140265844958688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450752"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844959136": {"type": "Function", "content": {"typeVars": [".0.140265844959136"], "argTypes": [{"nodeId": ".0.140265844959136"}, {"nodeId": ".0.140265844959136"}], "returnType": {"nodeId": ".0.140265844959136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844959136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764450752"}, "def": "140265844959136", "variance": "INVARIANT"}}, "140265844959584": {"type": "Function", "content": {"typeVars": [".0.140265844959584"], "argTypes": [{"nodeId": ".0.140265844959584"}, {"nodeId": ".0.140265844959584"}], "returnType": {"nodeId": ".0.140265844959584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844959584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764450752"}, "def": "140265844959584", "variance": "INVARIANT"}}, "140265844960032": {"type": "Function", "content": {"typeVars": [".0.140265844960032"], "argTypes": [{"nodeId": ".0.140265844960032"}, {"nodeId": ".0.140265844960032"}], "returnType": {"nodeId": ".0.140265844960032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844960032": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764450752"}, "def": "140265844960032", "variance": "INVARIANT"}}, "140265844960480": {"type": "Function", "content": {"typeVars": [".0.140265844960480"], "argTypes": [{"nodeId": ".0.140265844960480"}], "returnType": {"nodeId": ".0.140265844960480"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265844960480": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764450752"}, "def": "140265844960480", "variance": "INVARIANT"}}, "140265764451104": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853471200"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853471648"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853472096"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853472544"}, "name": "__xor__"}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710198048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710200736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710201856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861266272"}, {"nodeId": "140265764450752"}], "isAbstract": false}}, "140265853471200": {"type": "Function", "content": {"typeVars": [".0.140265853471200"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265853471200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140265853471200": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451104"}, "def": "140265853471200", "variance": "INVARIANT"}}, "140265853471648": {"type": "Function", "content": {"typeVars": [".0.140265853471648"], "argTypes": [{"nodeId": ".0.140265853471648"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265853471648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265853471648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451104"}, "def": "140265853471648", "variance": "INVARIANT"}}, "140265853472096": {"type": "Function", "content": {"typeVars": [".0.140265853472096"], "argTypes": [{"nodeId": ".0.140265853472096"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265853472096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265853472096": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451104"}, "def": "140265853472096", "variance": "INVARIANT"}}, "140265853472544": {"type": "Function", "content": {"typeVars": [".0.140265853472544"], "argTypes": [{"nodeId": ".0.140265853472544"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265853472544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265853472544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451104"}, "def": "140265853472544", "variance": "INVARIANT"}}, "140265710198048": {"type": "Function", "content": {"typeVars": [".0.140265710198048"], "argTypes": [{"nodeId": ".0.140265710198048"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265710198048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265710198048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451104"}, "def": "140265710198048", "variance": "INVARIANT"}}, "140265710200736": {"type": "Function", "content": {"typeVars": [".0.140265710200736"], "argTypes": [{"nodeId": ".0.140265710200736"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265710200736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265710200736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451104"}, "def": "140265710200736", "variance": "INVARIANT"}}, "140265710201856": {"type": "Function", "content": {"typeVars": [".0.140265710201856"], "argTypes": [{"nodeId": ".0.140265710201856"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265710201856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265710201856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451104"}, "def": "140265710201856", "variance": "INVARIANT"}}, "140265764451456": {"type": "Concrete", "content": {"module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710203648"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853473440"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140265764451104"}], "isAbstract": false}}, "140265710203648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451456"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265853473440": {"type": "Function", "content": {"typeVars": [".0.140265853473440"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265853473440"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265853473440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451456"}, "def": "140265853473440", "variance": "INVARIANT"}}, "140265760339776": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "tzinfo", "members": [{"kind": "Variable", "content": {"name": "tzname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693799904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcoffset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693800352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dst", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693800576"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853477472"}, "name": "fromutc"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": true}}, "140265693799904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760339776"}, {"nodeId": "140265693547536"}], "returnType": {"nodeId": "140265693547648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265693547536": {"type": "Union", "content": {"items": [{"nodeId": "140265693806656"}, {"nodeId": "N"}]}}, "140265693806656": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "datetime", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693806656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693806656"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840671008"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693679616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693680512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693680736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693680960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693681184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693681408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693682080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcfromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693682528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "now", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693684544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcnow", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693684096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "combine", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693684768"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840776288"}, "name": "timestamp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840776736"}, "name": "utctimetuple"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840777184"}, "name": "date"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840777632"}, "name": "time"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840778080"}, "name": "timetz"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840778528"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tz", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840778976"}, "name": "astimezone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840779872"}, "name": "isoformat"}}, {"kind": "Variable", "content": {"name": "strptime", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693686560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840780768"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840781216"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840781664"}, "name": "dst"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840782112"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840782560"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840783008"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840783456"}, "name": "__gt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265693550000"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}], "typeVars": [], "bases": [{"nodeId": "140265760340832"}], "isAbstract": false}}, "140265840671008": {"type": "Function", "content": {"typeVars": [".0.140265840671008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265693550448"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265840671008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, "140265693550448": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, ".0.140265840671008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265840671008", "variance": "INVARIANT"}}, "140265693679616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693680512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693680736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693680960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693681184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265693550560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693550560": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, "140265693681408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693682080": {"type": "Function", "content": {"typeVars": [".0.140265693682080"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266624"}, {"nodeId": "140265693550672"}], "returnType": {"nodeId": ".0.140265693682080"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "tz"]}}, "140265693550672": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, ".0.140265693682080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265693682080", "variance": "INVARIANT"}}, "140265693682528": {"type": "Function", "content": {"typeVars": [".0.140265693682528"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": ".0.140265693682528"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265693682528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265693682528", "variance": "INVARIANT"}}, "140265693684544": {"type": "Function", "content": {"typeVars": [".0.140265693684544"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265693550784"}], "returnType": {"nodeId": ".0.140265693684544"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "tz"]}}, "140265693550784": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, ".0.140265693684544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265693684544", "variance": "INVARIANT"}}, "140265693684096": {"type": "Function", "content": {"typeVars": [".0.140265693684096"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265693684096"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265693684096": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265693684096", "variance": "INVARIANT"}}, "140265693684768": {"type": "Function", "content": {"typeVars": [".0.140265693684768"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265760340832"}, {"nodeId": "140265760341184"}, {"nodeId": "140265693550896"}], "returnType": {"nodeId": ".0.140265693684768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "date", "time", "tzinfo"]}}, "140265760340832": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "date", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760340832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760340832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760341536"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853479712"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693804384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "today", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693805728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromordinal", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693805952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693806176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromisocalendar", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693823488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "year", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693823040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "month", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693823712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "day", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693823936"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853483744"}, "name": "ctime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853484640"}, "name": "strftime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840525600"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840526048"}, "name": "isoformat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840526496"}, "name": "timetuple"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840526944"}, "name": "toordinal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840527392"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840527840"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840528288"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840528736"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840529184"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840529632"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840530080"}, "name": "__radd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265693547312"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840534112"}, "name": "weekday"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840534560"}, "name": "isoweekday"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840535008"}, "name": "isocalendar"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265760341536": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "timedelta", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760341536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760341536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760341536"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "days", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "milliseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minutes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hours", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weeks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840659808"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "days", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693836480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693837600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microseconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693838496"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840661600"}, "name": "total_seconds"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840662048"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840662496"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840662944"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840663392"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840663840"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840664288"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840664736"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840665184"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840665632"}, "name": "__rmul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265693547424"}, "items": [{"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__floordiv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265693549104"}, "items": [{"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840667872"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840668320"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840668768"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840669216"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840669664"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840670112"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840670560"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265840659808": {"type": "Function", "content": {"typeVars": [".0.140265840659808"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": ".0.140265840659808"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "days", "seconds", "microseconds", "milliseconds", "minutes", "hours", "weeks"]}}, ".0.140265840659808": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760341536"}, "def": "140265840659808", "variance": "INVARIANT"}}, "140265693836480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693837600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693838496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840661600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840662048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840662496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840662944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840663392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840663840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840664288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840664736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840665184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840665632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265693547424": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840666080"}, {"nodeId": "140265840666528"}]}}, "140265840666080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840666528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265693549104": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840666976"}, {"nodeId": "140265840667424"}]}}, "140265840666976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840667424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840667872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840668320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265693550336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265693550336": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265760341536"}]}}, "140265840668768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840669216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840669664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840670112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840670560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265853479712": {"type": "Function", "content": {"typeVars": [".0.140265853479712"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".0.140265853479712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "month", "day"]}}, ".0.140265853479712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265853479712", "variance": "INVARIANT"}}, "140265693804384": {"type": "Function", "content": {"typeVars": [".0.140265693804384"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": ".0.140265693804384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265693804384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265693804384", "variance": "INVARIANT"}}, "140265693805728": {"type": "Function", "content": {"typeVars": [".0.140265693805728"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265693805728"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265693805728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265693805728", "variance": "INVARIANT"}}, "140265693805952": {"type": "Function", "content": {"typeVars": [".0.140265693805952"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265693805952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265693805952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265693805952", "variance": "INVARIANT"}}, "140265693806176": {"type": "Function", "content": {"typeVars": [".0.140265693806176"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265693806176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265693806176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265693806176", "variance": "INVARIANT"}}, "140265693823488": {"type": "Function", "content": {"typeVars": [".0.140265693823488"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265693823488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "week", "day"]}}, ".0.140265693823488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265693823488", "variance": "INVARIANT"}}, "140265693823040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693823712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693823936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265853483744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265853484640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840525600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840526048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840526496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265693548992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693548992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265698087584"}}}, "140265698087584": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265840526944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840527392": {"type": "Function", "content": {"typeVars": [".0.140265840527392"], "argTypes": [{"nodeId": ".0.140265840527392"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".0.140265840527392"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "year", "month", "day"]}}, ".0.140265840527392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265840527392", "variance": "INVARIANT"}}, "140265840527840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}, {"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840528288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}, {"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840528736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}, {"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840529184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}, {"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840529632": {"type": "Function", "content": {"typeVars": [".0.140265840529632"], "argTypes": [{"nodeId": ".0.140265840529632"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": ".0.140265840529632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840529632": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265840529632", "variance": "INVARIANT"}}, "140265840530080": {"type": "Function", "content": {"typeVars": [".0.140265840530080"], "argTypes": [{"nodeId": ".0.140265840530080"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": ".0.140265840530080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840530080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265840530080", "variance": "INVARIANT"}}, "140265693547312": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840530528"}, {"nodeId": "140265840530976"}, {"nodeId": "140265840531424"}]}}, "140265840530528": {"type": "Function", "content": {"typeVars": [".0.140265840530528"], "argTypes": [{"nodeId": ".0.140265840530528"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": ".0.140265840530528"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840530528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265840530528", "variance": "INVARIANT"}}, "140265840530976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}, {"nodeId": "140265693806656"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840531424": {"type": "Function", "content": {"typeVars": [".-1.140265840531424"], "argTypes": [{"nodeId": ".-1.140265840531424"}, {"nodeId": ".-1.140265840531424"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265840531424": {"type": "TypeVar", "content": {"varName": "_D", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265840531424", "variance": "INVARIANT"}}, "140265840534112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840534560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840535008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265693549216"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693549216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265693545744"}}}, "140265693545744": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265760341184": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "time", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760341184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760341184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760341536"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840535904"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693827072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693832448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693832896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693833120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693833344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693833568"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840539040"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840539488"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840539936"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840540384"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840540832"}, "name": "isoformat"}}, {"kind": "Variable", "content": {"name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693833792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840657120"}, "name": "strftime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840657568"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840658016"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840658464"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840658912"}, "name": "dst"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840659360"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265840535904": {"type": "Function", "content": {"typeVars": [".0.140265840535904"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265693549328"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265840535904"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, "140265693549328": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, ".0.140265840535904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760341184"}, "def": "140265840535904", "variance": "INVARIANT"}}, "140265693827072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693832448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693832896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693833120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693833344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265693549440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693549440": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, "140265693833568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840539040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}, {"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840539488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}, {"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840539936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}, {"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840540384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}, {"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840540832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timespec"]}}, "140265693833792": {"type": "Function", "content": {"typeVars": [".0.140265693833792"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265693833792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265693833792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760341184"}, "def": "140265693833792", "variance": "INVARIANT"}}, "140265840657120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840657568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840658016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265693549552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693549552": {"type": "Union", "content": {"items": [{"nodeId": "140265760341536"}, {"nodeId": "N"}]}}, "140265840658464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265693549664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693549664": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265840658912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265693549776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693549776": {"type": "Union", "content": {"items": [{"nodeId": "140265760341536"}, {"nodeId": "N"}]}}, "140265840659360": {"type": "Function", "content": {"typeVars": [".0.140265840659360"], "argTypes": [{"nodeId": ".0.140265840659360"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265693549888"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265840659360"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, ".0.140265840659360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760341184"}, "def": "140265840659360", "variance": "INVARIANT"}}, "140265693549888": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, "140265693550896": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, ".0.140265693684768": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265693684768", "variance": "INVARIANT"}}, "140265840776288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840776736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265693551008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693551008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265698087584"}}}, "140265840777184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265760340832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840777632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265760341184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840778080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265760341184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840778528": {"type": "Function", "content": {"typeVars": [".0.140265840778528"], "argTypes": [{"nodeId": ".0.140265840778528"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265693551120"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265840778528"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, ".0.140265840778528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265840778528", "variance": "INVARIANT"}}, "140265693551120": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, "140265840778976": {"type": "Function", "content": {"typeVars": [".0.140265840778976"], "argTypes": [{"nodeId": ".0.140265840778976"}, {"nodeId": "140265693551232"}], "returnType": {"nodeId": ".0.140265840778976"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tz"]}}, ".0.140265840778976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265840778976", "variance": "INVARIANT"}}, "140265693551232": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, "140265840779872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "timespec"]}}, "140265693686560": {"type": "Function", "content": {"typeVars": [".0.140265693686560"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265693686560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".0.140265693686560": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265693686560", "variance": "INVARIANT"}}, "140265840780768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265693551344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693551344": {"type": "Union", "content": {"items": [{"nodeId": "140265760341536"}, {"nodeId": "N"}]}}, "140265840781216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265693551456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693551456": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265840781664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265693551568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693551568": {"type": "Union", "content": {"items": [{"nodeId": "140265760341536"}, {"nodeId": "N"}]}}, "140265840782112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}, {"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840782560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}, {"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840783008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}, {"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840783456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}, {"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265693550000": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840783904"}, {"nodeId": "140265693534624"}]}}, "140265840783904": {"type": "Function", "content": {"typeVars": [".0.140265840783904"], "argTypes": [{"nodeId": ".0.140265840783904"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": ".0.140265840783904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840783904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265840783904", "variance": "INVARIANT"}}, "140265693534624": {"type": "Function", "content": {"typeVars": [".-1.140265693534624"], "argTypes": [{"nodeId": ".-1.140265693534624"}, {"nodeId": ".-1.140265693534624"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265693534624": {"type": "TypeVar", "content": {"varName": "_D", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265693534624", "variance": "INVARIANT"}}, "140265693547648": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265693800352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760339776"}, {"nodeId": "140265693547760"}], "returnType": {"nodeId": "140265693547872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265693547760": {"type": "Union", "content": {"items": [{"nodeId": "140265693806656"}, {"nodeId": "N"}]}}, "140265693547872": {"type": "Union", "content": {"items": [{"nodeId": "140265760341536"}, {"nodeId": "N"}]}}, "140265693800576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760339776"}, {"nodeId": "140265693547984"}], "returnType": {"nodeId": "140265693548096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265693547984": {"type": "Union", "content": {"items": [{"nodeId": "140265693806656"}, {"nodeId": "N"}]}}, "140265693548096": {"type": "Union", "content": {"items": [{"nodeId": "140265760341536"}, {"nodeId": "N"}]}}, "140265853477472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760339776"}, {"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265693806656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265760340128": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "timezone", "members": [{"kind": "Variable", "content": {"name": "utc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760340128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760340128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760340128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853477920"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853478368"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853478816"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853479264"}, "name": "dst"}}], "typeVars": [], "bases": [{"nodeId": "140265760339776"}], "isAbstract": false}}, "140265853477920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340128"}, {"nodeId": "140265760341536"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "name"]}}, "140265853478368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340128"}, {"nodeId": "140265693548208"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265693548208": {"type": "Union", "content": {"items": [{"nodeId": "140265693806656"}, {"nodeId": "N"}]}}, "140265853478816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340128"}, {"nodeId": "140265693548320"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265693548320": {"type": "Union", "content": {"items": [{"nodeId": "140265693806656"}, {"nodeId": "N"}]}}, "140265853479264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340128"}, {"nodeId": "140265693548432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265693548432": {"type": "Union", "content": {"items": [{"nodeId": "140265693806656"}, {"nodeId": "N"}]}}, "140265861255712": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265705955040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785721248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760267328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265705953920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265705953248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819425024"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265705955040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255712"}], "returnType": {"nodeId": "140265743455888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743455888": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265789865504"}]}, {"nodeId": "N"}]}}, "140265789865504": {"type": "Concrete", "content": {"module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831750048"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265831750048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789865504"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265760267328": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265705953920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255712"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265705953248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255712"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819425024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255712"}, {"nodeId": "140265861254656"}, {"nodeId": "140265743456224"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265743456224": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265861265920": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748115216"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265748115216": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265836453376"}, {"nodeId": "140265836453824"}, {"nodeId": "140265836454272"}]}}, "140265836453376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265920"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265836453824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265920"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265836454272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789857408": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819871872"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819872320"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819872768"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819873216"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265789857408"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": "140265760268784"}]}], "isAbstract": false}}, ".1.140265789857408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789857408", "variance": "INVARIANT"}}, "140265819871872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857408", "args": [{"nodeId": ".1.140265789857408"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789857408"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}}, "140265819872320": {"type": "Function", "content": {"typeVars": [".0.140265819872320"], "argTypes": [{"nodeId": ".0.140265819872320"}], "returnType": {"nodeId": ".0.140265819872320"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265819872320": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789857408", "args": [{"nodeId": ".1.140265789857408"}]}, "def": "140265819872320", "variance": "INVARIANT"}}, "140265819872768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857408", "args": [{"nodeId": ".1.140265789857408"}]}], "returnType": {"nodeId": "140265743463056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743463056": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": ".1.140265789857408"}]}}, "140265819873216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265760268784": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": ".1.140265789857408"}]}}, "140265790230016": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735683232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735679872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735679648"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743461600"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819875904"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819876352"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819876800"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819877248"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819877696"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743462832"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819879040"}, "name": "__reversed__"}}], "typeVars": [], "bases": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265735683232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735679872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735679648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743461600": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819875008"}, {"nodeId": "140265819875456"}]}}, "140265819875008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819875456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265819875904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819876352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819876800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819877248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819877696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265743462832": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819878144"}, {"nodeId": "140265819878592"}]}}, "140265819878144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819878592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265790230016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819879040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265790230368": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760587024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760264864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760264976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819879488"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819879936"}, "name": "getter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819880384"}, "name": "setter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819880832"}, "name": "deleter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819979840"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819980288"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819980736"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265760587024": {"type": "Union", "content": {"items": [{"nodeId": "140265764887168"}, {"nodeId": "N"}]}}, "140265764887168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265760264864": {"type": "Union", "content": {"items": [{"nodeId": "140265764881120"}, {"nodeId": "N"}]}}, "140265764881120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265760264976": {"type": "Union", "content": {"items": [{"nodeId": "140265764883808"}, {"nodeId": "N"}]}}, "140265764883808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819879488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230368"}, {"nodeId": "140265743463504"}, {"nodeId": "140265743463840"}, {"nodeId": "140265743464176"}, {"nodeId": "140265743464400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}}, "140265743463504": {"type": "Union", "content": {"items": [{"nodeId": "140265748541984"}, {"nodeId": "N"}]}}, "140265748541984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265743463840": {"type": "Union", "content": {"items": [{"nodeId": "140265748542208"}, {"nodeId": "N"}]}}, "140265748542208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743464176": {"type": "Union", "content": {"items": [{"nodeId": "140265748542432"}, {"nodeId": "N"}]}}, "140265748542432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265743464400": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265819879936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230368"}, {"nodeId": "140265748541312"}], "returnType": {"nodeId": "140265790230368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748541312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819880384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230368"}, {"nodeId": "140265748541760"}], "returnType": {"nodeId": "140265790230368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748541760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819880832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230368"}, {"nodeId": "140265748542656"}], "returnType": {"nodeId": "140265790230368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748542656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819979840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230368"}, {"nodeId": "A"}, {"nodeId": "140265743465184"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265743465184": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265819980288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230368"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265819980736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230368"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265790230720": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265765401024": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819984768"}, "name": "__fspath__"}}], "typeVars": [{"nodeId": ".1.140265765401024"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__fspath__"]}}, ".1.140265765401024": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265765401024", "variance": "COVARIANT"}}, "140265819984768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765401024", "args": [{"nodeId": ".1.140265765401024"}]}], "returnType": {"nodeId": ".1.140265765401024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265790231072": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819985664"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140265790231072"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__anext__"]}}, ".1.140265790231072": {"type": "TypeVar", "content": {"varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "140265861260640", "args": [{"nodeId": "A"}]}, "def": "140265790231072", "variance": "COVARIANT"}}, "140265819985664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790231072", "args": [{"nodeId": ".1.140265790231072"}]}], "returnType": {"nodeId": ".1.140265790231072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789857760": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743827120"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265814901248"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265814901696"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140265789857760"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789857760"}]}], "isAbstract": false}}, ".1.140265789857760": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789857760", "variance": "INVARIANT"}}, "140265743827120": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819995072"}, {"nodeId": "140265819995520"}, {"nodeId": "140265814900800"}]}}, "140265819995072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857760", "args": [{"nodeId": ".1.140265789857760"}]}, {"nodeId": "N"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265743830256"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265743830256": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789857760"}, {"nodeId": "N"}]}}, "140265819995520": {"type": "Function", "content": {"typeVars": [".-1.140265819995520"], "argTypes": [{"nodeId": "140265789857760", "args": [{"nodeId": ".1.140265789857760"}]}, {"nodeId": "140265748543552"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265819995520"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265748543552": {"type": "Function", "content": {"typeVars": [".-1.140265748543552"], "argTypes": [{"nodeId": ".-1.140265748543552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140265748543552": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265748543552", "variance": "INVARIANT"}}, ".-1.140265819995520": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819995520", "variance": "INVARIANT"}}, "140265814900800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857760", "args": [{"nodeId": ".1.140265789857760"}]}, {"nodeId": "140265748543328"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789857760"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265748543328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140265789857760"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265814901248": {"type": "Function", "content": {"typeVars": [".0.140265814901248"], "argTypes": [{"nodeId": ".0.140265814901248"}], "returnType": {"nodeId": ".0.140265814901248"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265814901248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789857760", "args": [{"nodeId": ".1.140265789857760"}]}, "def": "140265814901248", "variance": "INVARIANT"}}, "140265814901696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857760", "args": [{"nodeId": ".1.140265789857760"}]}], "returnType": {"nodeId": ".1.140265789857760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265790231424": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265814908416"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140265790231424"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__getitem__"]}}, ".1.140265790231424": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790231424", "variance": "COVARIANT"}}, "140265814908416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790231424", "args": [{"nodeId": ".1.140265790231424"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265790231424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265789858112": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743830592"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265814915584"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265814916032"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140265789858112"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789858112"}]}], "isAbstract": false}}, ".1.140265789858112": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789858112", "variance": "INVARIANT"}}, "140265743830592": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265814912896"}, {"nodeId": "140265814913344"}, {"nodeId": "140265814913792"}, {"nodeId": "140265814914240"}, {"nodeId": "140265814914688"}, {"nodeId": "140265814915136"}]}}, "140265814912896": {"type": "Function", "content": {"typeVars": [".-1.140265814912896"], "argTypes": [{"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}, {"nodeId": "140265743909376"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265814912896"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265743909376": {"type": "Function", "content": {"typeVars": [".-1.140265743909376"], "argTypes": [{"nodeId": ".-1.140265743909376"}], "returnType": {"nodeId": ".1.140265789858112"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140265743909376": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909376", "variance": "INVARIANT"}}, ".-1.140265814912896": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814912896", "variance": "INVARIANT"}}, "140265814913344": {"type": "Function", "content": {"typeVars": [".-1.140265814913344", ".-2.140265814913344"], "argTypes": [{"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}, {"nodeId": "140265743909152"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265814913344"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265814913344"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140265743909152": {"type": "Function", "content": {"typeVars": [".-1.140265743909152", ".-2.140265743909152"], "argTypes": [{"nodeId": ".-1.140265743909152"}, {"nodeId": ".-2.140265743909152"}], "returnType": {"nodeId": ".1.140265789858112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265743909152": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909152", "variance": "INVARIANT"}}, ".-2.140265743909152": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909152", "variance": "INVARIANT"}}, ".-1.140265814913344": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814913344", "variance": "INVARIANT"}}, ".-2.140265814913344": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814913344", "variance": "INVARIANT"}}, "140265814913792": {"type": "Function", "content": {"typeVars": [".-1.140265814913792", ".-2.140265814913792", ".-3.140265814913792"], "argTypes": [{"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}, {"nodeId": "140265743908928"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265814913792"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265814913792"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-3.140265814913792"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140265743908928": {"type": "Function", "content": {"typeVars": [".-1.140265743908928", ".-2.140265743908928", ".-3.140265743908928"], "argTypes": [{"nodeId": ".-1.140265743908928"}, {"nodeId": ".-2.140265743908928"}, {"nodeId": ".-3.140265743908928"}], "returnType": {"nodeId": ".1.140265789858112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, ".-1.140265743908928": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743908928", "variance": "INVARIANT"}}, ".-2.140265743908928": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743908928", "variance": "INVARIANT"}}, ".-3.140265743908928": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743908928", "variance": "INVARIANT"}}, ".-1.140265814913792": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814913792", "variance": "INVARIANT"}}, ".-2.140265814913792": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814913792", "variance": "INVARIANT"}}, ".-3.140265814913792": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814913792", "variance": "INVARIANT"}}, "140265814914240": {"type": "Function", "content": {"typeVars": [".-1.140265814914240", ".-2.140265814914240", ".-3.140265814914240", ".-4.140265814914240"], "argTypes": [{"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}, {"nodeId": "140265743909600"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265814914240"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265814914240"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-3.140265814914240"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-4.140265814914240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140265743909600": {"type": "Function", "content": {"typeVars": [".-1.140265743909600", ".-2.140265743909600", ".-3.140265743909600", ".-4.140265743909600"], "argTypes": [{"nodeId": ".-1.140265743909600"}, {"nodeId": ".-2.140265743909600"}, {"nodeId": ".-3.140265743909600"}, {"nodeId": ".-4.140265743909600"}], "returnType": {"nodeId": ".1.140265789858112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, ".-1.140265743909600": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909600", "variance": "INVARIANT"}}, ".-2.140265743909600": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909600", "variance": "INVARIANT"}}, ".-3.140265743909600": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909600", "variance": "INVARIANT"}}, ".-4.140265743909600": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909600", "variance": "INVARIANT"}}, ".-1.140265814914240": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914240", "variance": "INVARIANT"}}, ".-2.140265814914240": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914240", "variance": "INVARIANT"}}, ".-3.140265814914240": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914240", "variance": "INVARIANT"}}, ".-4.140265814914240": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914240", "variance": "INVARIANT"}}, "140265814914688": {"type": "Function", "content": {"typeVars": [".-1.140265814914688", ".-2.140265814914688", ".-3.140265814914688", ".-4.140265814914688", ".-5.140265814914688"], "argTypes": [{"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}, {"nodeId": "140265743909824"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265814914688"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265814914688"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-3.140265814914688"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-4.140265814914688"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-5.140265814914688"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null, null]}}, "140265743909824": {"type": "Function", "content": {"typeVars": [".-1.140265743909824", ".-2.140265743909824", ".-3.140265743909824", ".-4.140265743909824", ".-5.140265743909824"], "argTypes": [{"nodeId": ".-1.140265743909824"}, {"nodeId": ".-2.140265743909824"}, {"nodeId": ".-3.140265743909824"}, {"nodeId": ".-4.140265743909824"}, {"nodeId": ".-5.140265743909824"}], "returnType": {"nodeId": ".1.140265789858112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}}, ".-1.140265743909824": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909824", "variance": "INVARIANT"}}, ".-2.140265743909824": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909824", "variance": "INVARIANT"}}, ".-3.140265743909824": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909824", "variance": "INVARIANT"}}, ".-4.140265743909824": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909824", "variance": "INVARIANT"}}, ".-5.140265743909824": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909824", "variance": "INVARIANT"}}, ".-1.140265814914688": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914688", "variance": "INVARIANT"}}, ".-2.140265814914688": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914688", "variance": "INVARIANT"}}, ".-3.140265814914688": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914688", "variance": "INVARIANT"}}, ".-4.140265814914688": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914688", "variance": "INVARIANT"}}, ".-5.140265814914688": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914688", "variance": "INVARIANT"}}, "140265814915136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}, {"nodeId": "140265743910048"}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, null, null, null, null, null, "iterables"]}}, "140265743910048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140265789858112"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265814915584": {"type": "Function", "content": {"typeVars": [".0.140265814915584"], "argTypes": [{"nodeId": ".0.140265814915584"}], "returnType": {"nodeId": ".0.140265814915584"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265814915584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}, "def": "140265814915584", "variance": "INVARIANT"}}, "140265814916032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}], "returnType": {"nodeId": ".1.140265789858112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265765401376": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815074496"}, "name": "flush"}}], "typeVars": [{"nodeId": ".1.140265765401376"}], "bases": [{"nodeId": "140265765093440", "args": [{"nodeId": ".1.140265765401376"}]}], "protocolMembers": ["flush", "write"]}}, ".1.140265765401376": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265765401376", "variance": "CONTRAVARIANT"}}, "140265815074496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765401376", "args": [{"nodeId": ".1.140265765401376"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265790231776": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815075840"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140265790231776"}, {"nodeId": ".2.140265790231776"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__pow__"]}}, ".1.140265790231776": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790231776", "variance": "CONTRAVARIANT"}}, ".2.140265790231776": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790231776", "variance": "COVARIANT"}}, "140265815075840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790231776", "args": [{"nodeId": ".1.140265790231776"}, {"nodeId": ".2.140265790231776"}]}, {"nodeId": ".1.140265790231776"}], "returnType": {"nodeId": ".2.140265790231776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265790232128": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815076288"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140265790232128"}, {"nodeId": ".2.140265790232128"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__pow__"]}}, ".1.140265790232128": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790232128", "variance": "CONTRAVARIANT"}}, ".2.140265790232128": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790232128", "variance": "COVARIANT"}}, "140265815076288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790232128", "args": [{"nodeId": ".1.140265790232128"}, {"nodeId": ".2.140265790232128"}]}, {"nodeId": ".1.140265790232128"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.140265790232128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265790232480": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815076736"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140265790232480"}, {"nodeId": ".2.140265790232480"}, {"nodeId": ".3.140265790232480"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__pow__"]}}, ".1.140265790232480": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790232480", "variance": "CONTRAVARIANT"}}, ".2.140265790232480": {"type": "TypeVar", "content": {"varName": "_M", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790232480", "variance": "CONTRAVARIANT"}}, ".3.140265790232480": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790232480", "variance": "COVARIANT"}}, "140265815076736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790232480", "args": [{"nodeId": ".1.140265790232480"}, {"nodeId": ".2.140265790232480"}, {"nodeId": ".3.140265790232480"}]}, {"nodeId": ".1.140265790232480"}, {"nodeId": ".2.140265790232480"}], "returnType": {"nodeId": ".3.140265790232480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265789858464": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743842016"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815305216"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815305664"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815306112"}, "name": "__length_hint__"}}], "typeVars": [{"nodeId": ".1.140265789858464"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789858464"}]}], "isAbstract": false}}, ".1.140265789858464": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789858464", "variance": "INVARIANT"}}, "140265743842016": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265815304320"}, {"nodeId": "140265815304768"}]}}, "140265815304320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789858464", "args": [{"nodeId": ".1.140265789858464"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": ".1.140265789858464"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265815304768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789858464", "args": [{"nodeId": ".1.140265789858464"}]}, {"nodeId": "140265764925888", "args": [{"nodeId": ".1.140265789858464"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265764925888": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848366560"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848367008"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140265764925888"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__getitem__", "__len__"]}}, ".1.140265764925888": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764925888", "variance": "COVARIANT"}}, "140265848366560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764925888", "args": [{"nodeId": ".1.140265764925888"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265848367008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764925888", "args": [{"nodeId": ".1.140265764925888"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265764925888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265815305216": {"type": "Function", "content": {"typeVars": [".0.140265815305216"], "argTypes": [{"nodeId": ".0.140265815305216"}], "returnType": {"nodeId": ".0.140265815305216"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265815305216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789858464", "args": [{"nodeId": ".1.140265789858464"}]}, "def": "140265815305216", "variance": "INVARIANT"}}, "140265815305664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789858464", "args": [{"nodeId": ".1.140265789858464"}]}], "returnType": {"nodeId": ".1.140265789858464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265815306112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789858464", "args": [{"nodeId": ".1.140265789858464"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265790232832": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815307008"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140265790232832"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__round__"]}}, ".1.140265790232832": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790232832", "variance": "COVARIANT"}}, "140265815307008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790232832", "args": [{"nodeId": ".1.140265790232832"}]}], "returnType": {"nodeId": ".1.140265790232832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265790233184": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815307456"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140265790233184"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__round__"]}}, ".1.140265790233184": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790233184", "variance": "COVARIANT"}}, "140265815307456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790233184", "args": [{"nodeId": ".1.140265790233184"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265790233184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265765401728": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764923072", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140265764923424", "args": [{"nodeId": "140265861266272"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}}, "140265764923072": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848362976"}, "name": "__add__"}}], "typeVars": [{"nodeId": ".1.140265764923072"}, {"nodeId": ".2.140265764923072"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__add__"]}}, ".1.140265764923072": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764923072", "variance": "CONTRAVARIANT"}}, ".2.140265764923072": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764923072", "variance": "COVARIANT"}}, "140265848362976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764923072", "args": [{"nodeId": ".1.140265764923072"}, {"nodeId": ".2.140265764923072"}]}, {"nodeId": ".1.140265764923072"}], "returnType": {"nodeId": ".2.140265764923072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764923424": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848363424"}, "name": "__radd__"}}], "typeVars": [{"nodeId": ".1.140265764923424"}, {"nodeId": ".2.140265764923424"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__radd__"]}}, ".1.140265764923424": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764923424", "variance": "CONTRAVARIANT"}}, ".2.140265764923424": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764923424", "variance": "COVARIANT"}}, "140265848363424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764923424", "args": [{"nodeId": ".1.140265764923424"}, {"nodeId": ".2.140265764923424"}]}, {"nodeId": ".1.140265764923424"}], "returnType": {"nodeId": ".2.140265764923424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265789858816": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743993088"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815449984"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815450432"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140265789858816"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789858816"}]}], "isAbstract": false}}, ".1.140265789858816": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789858816", "variance": "COVARIANT"}}, "140265743993088": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265815444608"}, {"nodeId": "140265815445056"}, {"nodeId": "140265815445504"}, {"nodeId": "140265815445952"}, {"nodeId": "140265815446400"}, {"nodeId": "140265815446848"}]}}, "140265815444608": {"type": "Function", "content": {"typeVars": [".-1.140265815444608"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265815444608"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265789858816", "args": [{"nodeId": "140265743994320"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}}, ".-1.140265815444608": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815444608", "variance": "INVARIANT"}}, "140265743994320": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140265815444608"}]}}, "140265815445056": {"type": "Function", "content": {"typeVars": [".-1.140265815445056", ".-2.140265815445056"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265815445056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265815445056"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265789858816", "args": [{"nodeId": "140265743994544"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}}, ".-1.140265815445056": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445056", "variance": "INVARIANT"}}, ".-2.140265815445056": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445056", "variance": "INVARIANT"}}, "140265743994544": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140265815445056"}, {"nodeId": ".-2.140265815445056"}]}}, "140265815445504": {"type": "Function", "content": {"typeVars": [".-1.140265815445504", ".-2.140265815445504", ".-3.140265815445504"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265815445504"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265815445504"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-3.140265815445504"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265789858816", "args": [{"nodeId": "140265743994768"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}}, ".-1.140265815445504": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445504", "variance": "INVARIANT"}}, ".-2.140265815445504": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445504", "variance": "INVARIANT"}}, ".-3.140265815445504": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445504", "variance": "INVARIANT"}}, "140265743994768": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140265815445504"}, {"nodeId": ".-2.140265815445504"}, {"nodeId": ".-3.140265815445504"}]}}, "140265815445952": {"type": "Function", "content": {"typeVars": [".-1.140265815445952", ".-2.140265815445952", ".-3.140265815445952", ".-4.140265815445952"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265815445952"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265815445952"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-3.140265815445952"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-4.140265815445952"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265789858816", "args": [{"nodeId": "140265743994992"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}}, ".-1.140265815445952": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445952", "variance": "INVARIANT"}}, ".-2.140265815445952": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445952", "variance": "INVARIANT"}}, ".-3.140265815445952": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445952", "variance": "INVARIANT"}}, ".-4.140265815445952": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445952", "variance": "INVARIANT"}}, "140265743994992": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140265815445952"}, {"nodeId": ".-2.140265815445952"}, {"nodeId": ".-3.140265815445952"}, {"nodeId": ".-4.140265815445952"}]}}, "140265815446400": {"type": "Function", "content": {"typeVars": [".-1.140265815446400", ".-2.140265815446400", ".-3.140265815446400", ".-4.140265815446400", ".-5.140265815446400"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265815446400"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265815446400"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-3.140265815446400"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-4.140265815446400"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-5.140265815446400"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265789858816", "args": [{"nodeId": "140265743995216"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, "strict"]}}, ".-1.140265815446400": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815446400", "variance": "INVARIANT"}}, ".-2.140265815446400": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815446400", "variance": "INVARIANT"}}, ".-3.140265815446400": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815446400", "variance": "INVARIANT"}}, ".-4.140265815446400": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815446400", "variance": "INVARIANT"}}, ".-5.140265815446400": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815446400", "variance": "INVARIANT"}}, "140265743995216": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140265815446400"}, {"nodeId": ".-2.140265815446400"}, {"nodeId": ".-3.140265815446400"}, {"nodeId": ".-4.140265815446400"}, {"nodeId": ".-5.140265815446400"}]}}, "140265815446848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265789858816", "args": [{"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, null, "iterables", "strict"]}}, "140265815449984": {"type": "Function", "content": {"typeVars": [".0.140265815449984"], "argTypes": [{"nodeId": ".0.140265815449984"}], "returnType": {"nodeId": ".0.140265815449984"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265815449984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789858816", "args": [{"nodeId": ".1.140265789858816"}]}, "def": "140265815449984", "variance": "INVARIANT"}}, "140265815450432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789858816", "args": [{"nodeId": ".1.140265789858816"}]}], "returnType": {"nodeId": ".1.140265789858816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265790233536": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265790234240": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790233888"}], "isAbstract": false}}, "140265790234592": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790233888"}], "isAbstract": false}}, "140265790234944": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790488752"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790233888"}], "isAbstract": false}}, "140265790488752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785906496"}}}, "140265785906496": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265790235296": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790233888"}], "isAbstract": false}}, "140265790235648": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790236000": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "content": {"name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790236352": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790236704": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790237056": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815453568"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861254656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265815453568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790237056"}, {"nodeId": "140265861254656"}, {"nodeId": "140265743997680"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}}, "140265743997680": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265790237408": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790237760": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790238112": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815454016"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790501520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790488864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265815454016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790238112"}, {"nodeId": "140265861254656"}, {"nodeId": "140265743997792"}, {"nodeId": "140265743997904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}}, "140265743997792": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265743997904": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265790501520": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265790488864": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265790238464": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790238816": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790239168": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790239520": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790239872": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790240224": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790240576": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790501856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790500848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790490880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790498608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790501072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790491440"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790501856": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265790500848": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265790490880": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265790498608": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265790501072": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265790491440": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265790240928": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790241280": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790241632": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790241984": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236352"}], "isAbstract": false}}, "140265790242336": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236352"}], "isAbstract": false}}, "140265789882432": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236352"}], "isAbstract": false}}, "140265789882784": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790238112"}], "isAbstract": false}}, "140265789883136": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790238464"}], "isAbstract": false}}, "140265789883488": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790238464"}], "isAbstract": false}}, "140265789883840": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790239168"}], "isAbstract": false}}, "140265789884192": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "content": {"name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789884544": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789884896": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789885248": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789884896"}], "isAbstract": false}}, "140265789885600": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789884896"}], "isAbstract": false}}, "140265789885952": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789884896"}], "isAbstract": false}}, "140265789886304": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789884896"}], "isAbstract": false}}, "140265789886656": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789887008": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789887360": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789887712": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789888064": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789888416": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789888768": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789889120": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789889472": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790239872"}], "isAbstract": false}}, "140265789889824": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790239872"}], "isAbstract": false}}, "140265789890176": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790240576"}], "isAbstract": false}}, "140265789890528": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789890176"}], "isAbstract": false}}, "140265789890880": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790241632"}], "isAbstract": false}}, "140265789891232": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815454464"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265789890880"}], "isAbstract": false}}, "140265815454464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789891232"}, {"nodeId": "140265790227200"}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140265789891584": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815454912"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265789890880"}], "isAbstract": false}}, "140265815454912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789891584"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140265789891936": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815455360"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265789890880"}], "isAbstract": false}}, "140265815455360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789891936"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140265789892288": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265789892640": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789892992": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789893344": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789893696": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789894048": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789894400": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789894752": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789895104": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789895456": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789895808": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789896160": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265785728992": {"type": "Protocol", "content": {"module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810566880"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["find_spec"]}}, "140265810566880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785728992"}, {"nodeId": "140265790227200"}, {"nodeId": "140265756056752"}, {"nodeId": "140265756056864"}], "returnType": {"nodeId": "140265756056976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140265756056752": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265756056864": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265785722656": {"type": "Concrete", "content": {"module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773687504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735453184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773689632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785904704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861263456", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785904816"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810705120"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810705568"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265773687504": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265735453184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722656"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265773689632": {"type": "Union", "content": {"items": [{"nodeId": "140265785722304"}, {"nodeId": "N"}]}}, "140265785722304": {"type": "Protocol", "content": {"module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810704224"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["load_module"]}}, "140265810704224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722304"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265785722656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265785904704": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265785904816": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265764444416": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806770720"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760397392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760397616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785798864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785798976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714768288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806771616"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265806770720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444416"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752089360"}, {"nodeId": "140265752089472"}, {"nodeId": "140265752089696"}, {"nodeId": "140265752089808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "loader", "origin", "loader_state", "is_package"]}}, "140265752089360": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265764445472": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831633568"}, "name": "load_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831634016"}, "name": "module_repr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831634464"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831634912"}, "name": "exec_module"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265831633568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764445472"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265785722656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265831634016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764445472"}, {"nodeId": "140265785722656"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140265831634464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764445472"}, {"nodeId": "140265764444416"}], "returnType": {"nodeId": "140265752093280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140265752093280": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265831634912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764445472"}, {"nodeId": "140265785722656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140265752089472": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752089696": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265752089808": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265760397392": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265760397616": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265785798864": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265785798976": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265714768288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444416"}], "returnType": {"nodeId": "140265752089920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752089920": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265806771616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444416"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265810705120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722656"}, {"nodeId": "140265790227200"}, {"nodeId": "140265761024688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}}, "140265761024688": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265810705568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722656"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265756056976": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265765403136": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "content": {"name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735952576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735954144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735954368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735954592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735954816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735955040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735955264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735955488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735955712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735955936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735956160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735956384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735956608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735956832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735957056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735957728"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "A"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265735952576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057200"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057200": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735954144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057312"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057312": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735954368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057424"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057424": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735954592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057536"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057536": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735954816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057648"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057648": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735955040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057760"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057760": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735955264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057872"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057872": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735955488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057984"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057984": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735955712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058096"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058096": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735955936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058208"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058208": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735956160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058320"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058320": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735956384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058432"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058432": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735956608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058544"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058544": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735956832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058656": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735957056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058768"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058768": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735957728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058880"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058880": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265765095200": {"type": "Concrete", "content": {"module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "content": {"name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827634080"}, "name": "__new__"}}], "typeVars": [{"nodeId": ".1.140265765095200"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265765095200": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265765095200", "variance": "COVARIANT"}}, "140265827634080": {"type": "Function", "content": {"typeVars": [".-1.140265827634080"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265765095200"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140265827634080"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}}, ".-1.140265827634080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265827634080", "variance": "INVARIANT"}}, "140265765403488": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "content": {"name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735951232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735959968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735960192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735960416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735960640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735960864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735961088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735961312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735961536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735961760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735961984"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266624"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}], "isAbstract": false}}, "140265735951232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058992"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058992": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735959968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059104"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059104": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735960192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059216"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059216": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735960416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059328"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059328": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735960640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059440"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059440": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735960864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059552"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059552": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735961088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059664"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059664": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735961312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059776"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059776": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735961536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059888"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059888": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735961760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060000"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060000": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735961984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060112"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060112": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265765403840": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "content": {"name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736029792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736030016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736030240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736030464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736030688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736030912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736031136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736031360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736031584"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265785907168"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}], "isAbstract": false}}, "140265736029792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060224"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060224": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736030016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060336"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060336": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736030240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060448"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060448": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736030464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060560"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060560": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736030688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060672"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060672": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736030912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060784"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060784": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736031136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060896"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060896": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736031360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756061008"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756061008": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736031584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756061120"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756061120": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265785907168": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "140265861266272"}]}}, "140265785729344": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760263968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836667488"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265760263968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760580416"}}}, "140265760580416": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265836667488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785729344"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265765404192": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "content": {"name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736034048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736034272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736034496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736034720"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265736034048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756061344"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756061344": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736034272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756061456"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756061456": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736034496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756061568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756061568": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736034720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756061680"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756061680": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265760325696": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_thread_info", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736035168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736036512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736036736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "A"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}], "isAbstract": false}}, "140265736035168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756061904"}], "returnType": {"nodeId": "140265756062016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756061904": {"type": "Tuple", "content": {"items": [{"nodeId": "140265760262400"}, {"nodeId": "140265760264416"}, {"nodeId": "140265756061792"}]}}, "140265760262400": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785909968"}}}, "140265785909968": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265760264416": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785909520"}}}, "140265785909520": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140265756061792": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756062016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785909968"}}}, "140265736036512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756062240"}], "returnType": {"nodeId": "140265756062352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756062240": {"type": "Tuple", "content": {"items": [{"nodeId": "140265760262400"}, {"nodeId": "140265760264416"}, {"nodeId": "140265756062128"}]}}, "140265756062128": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756062352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785909520"}}}, "140265736036736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756062576"}], "returnType": {"nodeId": "140265756062688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756062576": {"type": "Tuple", "content": {"items": [{"nodeId": "140265760262400"}, {"nodeId": "140265760264416"}, {"nodeId": "140265756062464"}]}}, "140265756062464": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756062688": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265760326048": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "content": {"name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736036064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736038528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736038752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736038976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736039200"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "A"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}], "isAbstract": false}}, "140265736036064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756062800"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756062800": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265736038528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756062912"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756062912": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265736038752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756063024"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756063024": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265736038976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756063136"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756063136": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265736039200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756063248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756063248": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265785729696": {"type": "Protocol", "content": {"module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760581760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760270912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760271136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861254656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["err_msg", "exc_traceback", "exc_type", "exc_value", "object"]}}, "140265760581760": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265760270912": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265760271136": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265760326400": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "content": {"name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736043008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736043456"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265785910752"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790504544"}]}], "isAbstract": false}}, "140265736043008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756196928"}], "returnType": {"nodeId": "140265756197040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756196928": {"type": "Tuple", "content": {"items": [{"nodeId": "140265760262176"}, {"nodeId": "140265760271808"}]}}, "140265760262176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785911760"}}}, "140265785911760": {"type": "Union", "content": {"items": [{"nodeId": "140265773760096"}, {"nodeId": "N"}]}}, "140265773760096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265760271808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785911760"}}}, "140265756197040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785911760"}}}, "140265736043456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756197152"}], "returnType": {"nodeId": "140265756197264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756197152": {"type": "Tuple", "content": {"items": [{"nodeId": "140265760262176"}, {"nodeId": "140265760271808"}]}}, "140265756197264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785911760"}}}, "140265785910752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785911760"}}}, "140265790504544": {"type": "Union", "content": {"items": [{"nodeId": "140265743917440"}, {"nodeId": "N"}]}}, "140265743917440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789862336": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836276960"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836277408"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836277856"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265836276960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862336"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265836277408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862336"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265789862336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265836277856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862336"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265789862336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265789862688": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265789857056", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265789857056", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836279648"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836280096"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836280544"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836280992"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836281440"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836101920"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836102368"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836102816"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836103264"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836103712"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}], "isAbstract": true}}, "140265836279648": {"type": "Function", "content": {"typeVars": [".0.140265836279648"], "argTypes": [{"nodeId": ".0.140265836279648"}], "returnType": {"nodeId": ".0.140265836279648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265836279648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789862688"}, "def": "140265836279648", "variance": "INVARIANT"}}, "140265836280096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862688"}, {"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140265836280544": {"type": "Function", "content": {"typeVars": [".-1.140265836280544"], "argTypes": [{"nodeId": "140265789862688"}, {"nodeId": "0"}, {"nodeId": ".-1.140265836280544"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140265836280544": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265836280544", "variance": "INVARIANT"}}, "140265836280992": {"type": "Function", "content": {"typeVars": [".-1.140265836280992"], "argTypes": [{"nodeId": ".-1.140265836280992"}, {"nodeId": ".-1.140265836280992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140265836280992": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265836280992", "variance": "INVARIANT"}}, "140265836281440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862688"}], "returnType": {"nodeId": "140265789856352", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836101920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862688"}], "returnType": {"nodeId": "140265789855648", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836102368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862688"}], "returnType": {"nodeId": "140265789856000", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836102816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862688"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265836103264": {"type": "Function", "content": {"typeVars": [".0.140265836103264"], "argTypes": [{"nodeId": ".0.140265836103264"}, {"nodeId": ".0.140265836103264"}], "returnType": {"nodeId": ".0.140265836103264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265836103264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789862688"}, "def": "140265836103264", "variance": "INVARIANT"}}, "140265836103712": {"type": "Function", "content": {"typeVars": [".0.140265836103712"], "argTypes": [{"nodeId": ".0.140265836103712"}, {"nodeId": ".0.140265836103712"}], "returnType": {"nodeId": ".0.140265836103712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265836103712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789862688"}, "def": "140265836103712", "variance": "INVARIANT"}}, "140265789863392": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760581648"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265744214816"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836114464"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836115360"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140265760581648": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265836113120"}, {"nodeId": "140265836113568"}]}}, "140265836113120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863392"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265760769296"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}}, "140265760769296": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}}, "140265836113568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863392"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}}, "140265744214816": {"type": "Function", "content": {"typeVars": [".0.140265744214816"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140265744214816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140265744214816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789863392"}, "def": "140265744214816", "variance": "INVARIANT"}}, "140265836114464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863392"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836115360": {"type": "Function", "content": {"typeVars": [".0.140265836115360"], "argTypes": [{"nodeId": ".0.140265836115360"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265836115360"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140265836115360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789863392"}, "def": "140265836115360", "variance": "INVARIANT"}}, "140265789863744": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744215712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744216160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744216384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744216608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744216832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744217056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744217280"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827337376"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827337824"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827338272"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265744215712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744216160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}], "returnType": {"nodeId": "140265760770192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760770192": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265744216384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744216608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744216832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744217056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744217280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}], "returnType": {"nodeId": "140265760770528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760770528": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265827337376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}, {"nodeId": "140265760770864"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265760771088"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant", "default", "infer_variance"]}}, "140265760770864": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265760771088": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265827337824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265789862336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265827338272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265789862336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265789864448": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744386976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744387200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827344096"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827344544"}, "name": "__iter__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265744386976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864448"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744387200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864448"}], "returnType": {"nodeId": "140265760772656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760772656": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265827344096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864448"}, {"nodeId": "140265790227200"}, {"nodeId": "140265760772880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}}, "140265760772880": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265827344544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864448"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789864800": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeAliasType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827346336"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__value__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744388992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__type_params__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744389440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744389664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744389888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744390112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827349024"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827349472"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827349920"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265827346336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265760773664"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "type_params"]}}, "140265760773664": {"type": "Union", "content": {"items": [{"nodeId": "140265789863744"}, {"nodeId": "140265789864096"}, {"nodeId": "140265789864448"}]}}, "140265744388992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744389440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265760773888"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760773888": {"type": "Union", "content": {"items": [{"nodeId": "140265789863744"}, {"nodeId": "140265789864096"}, {"nodeId": "140265789864448"}]}}, "140265744389664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744389888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744390112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}], "returnType": {"nodeId": "140265760774112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760774112": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265827349024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265827349472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265789862336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265827349920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265789862336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764920256": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848359840"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, "140265848359840": {"type": "Function", "content": {"typeVars": [".-1.140265848359840"], "argTypes": [{"nodeId": "140265764920256"}, {"nodeId": ".-1.140265848359840"}], "returnType": {"nodeId": ".-1.140265848359840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140265848359840": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848359840", "variance": "INVARIANT"}}, "140265764920608": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848360288"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140265764920608"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__next__"]}}, ".1.140265764920608": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764920608", "variance": "COVARIANT"}}, "140265848360288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764920608", "args": [{"nodeId": ".1.140265764920608"}]}], "returnType": {"nodeId": ".1.140265764920608"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764920960": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848360736"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140265764920960"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__anext__"]}}, ".1.140265764920960": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764920960", "variance": "COVARIANT"}}, "140265848360736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764920960", "args": [{"nodeId": ".1.140265764920960"}]}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".1.140265764920960"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764922016": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848362080"}, "name": "__le__"}}], "typeVars": [{"nodeId": ".1.140265764922016"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__le__"]}}, ".1.140265764922016": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764922016", "variance": "CONTRAVARIANT"}}, "140265848362080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764922016", "args": [{"nodeId": ".1.140265764922016"}]}, {"nodeId": ".1.140265764922016"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764922368": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848362528"}, "name": "__ge__"}}], "typeVars": [{"nodeId": ".1.140265764922368"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__ge__"]}}, ".1.140265764922368": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764922368", "variance": "CONTRAVARIANT"}}, "140265848362528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764922368", "args": [{"nodeId": ".1.140265764922368"}]}, {"nodeId": ".1.140265764922368"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764922720": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764921312", "args": [{"nodeId": "A"}]}, {"nodeId": "140265764921664", "args": [{"nodeId": "A"}]}, {"nodeId": "140265764922016", "args": [{"nodeId": "A"}]}, {"nodeId": "140265764922368", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}}, "140265764923776": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848363872"}, "name": "__sub__"}}], "typeVars": [{"nodeId": ".1.140265764923776"}, {"nodeId": ".2.140265764923776"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__sub__"]}}, ".1.140265764923776": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764923776", "variance": "CONTRAVARIANT"}}, ".2.140265764923776": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764923776", "variance": "COVARIANT"}}, "140265848363872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764923776", "args": [{"nodeId": ".1.140265764923776"}, {"nodeId": ".2.140265764923776"}]}, {"nodeId": ".1.140265764923776"}], "returnType": {"nodeId": ".2.140265764923776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764924128": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848364320"}, "name": "__rsub__"}}], "typeVars": [{"nodeId": ".1.140265764924128"}, {"nodeId": ".2.140265764924128"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__rsub__"]}}, ".1.140265764924128": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764924128", "variance": "CONTRAVARIANT"}}, ".2.140265764924128": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764924128", "variance": "COVARIANT"}}, "140265848364320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764924128", "args": [{"nodeId": ".1.140265764924128"}, {"nodeId": ".2.140265764924128"}]}, {"nodeId": ".1.140265764924128"}], "returnType": {"nodeId": ".2.140265764924128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764924480": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848364768"}, "name": "__divmod__"}}], "typeVars": [{"nodeId": ".1.140265764924480"}, {"nodeId": ".2.140265764924480"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__divmod__"]}}, ".1.140265764924480": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764924480", "variance": "CONTRAVARIANT"}}, ".2.140265764924480": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764924480", "variance": "COVARIANT"}}, "140265848364768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764924480", "args": [{"nodeId": ".1.140265764924480"}, {"nodeId": ".2.140265764924480"}]}, {"nodeId": ".1.140265764924480"}], "returnType": {"nodeId": ".2.140265764924480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764924832": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848365216"}, "name": "__rdivmod__"}}], "typeVars": [{"nodeId": ".1.140265764924832"}, {"nodeId": ".2.140265764924832"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__rdivmod__"]}}, ".1.140265764924832": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764924832", "variance": "CONTRAVARIANT"}}, ".2.140265764924832": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764924832", "variance": "COVARIANT"}}, "140265848365216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764924832", "args": [{"nodeId": ".1.140265764924832"}, {"nodeId": ".2.140265764924832"}]}, {"nodeId": ".1.140265764924832"}], "returnType": {"nodeId": ".2.140265764924832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265764925184": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848365664"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140265764925184"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__iter__"]}}, ".1.140265764925184": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764925184", "variance": "COVARIANT"}}, "140265848365664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764925184", "args": [{"nodeId": ".1.140265764925184"}]}], "returnType": {"nodeId": ".1.140265764925184"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265764925536": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848366112"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140265764925536"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__aiter__"]}}, ".1.140265764925536": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764925536", "variance": "COVARIANT"}}, "140265848366112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764925536", "args": [{"nodeId": ".1.140265764925536"}]}], "returnType": {"nodeId": ".1.140265764925536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764927296": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848369248"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848369696"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140265764927296"}, {"nodeId": ".2.140265764927296"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__contains__", "__getitem__"]}}, ".1.140265764927296": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764927296", "variance": "CONTRAVARIANT"}}, ".2.140265764927296": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764927296", "variance": "COVARIANT"}}, "140265848369248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764927296", "args": [{"nodeId": ".1.140265764927296"}, {"nodeId": ".2.140265764927296"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848369696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764927296", "args": [{"nodeId": ".1.140265764927296"}, {"nodeId": ".2.140265764927296"}]}, {"nodeId": ".1.140265764927296"}], "returnType": {"nodeId": ".2.140265764927296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764927648": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848370144"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848370592"}, "name": "__delitem__"}}], "typeVars": [{"nodeId": ".1.140265764927648"}, {"nodeId": ".2.140265764927648"}], "bases": [{"nodeId": "140265764927296", "args": [{"nodeId": ".1.140265764927648"}, {"nodeId": ".2.140265764927648"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}}, ".1.140265764927648": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764927648", "variance": "CONTRAVARIANT"}}, ".2.140265764927648": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764927648", "variance": "INVARIANT"}}, "140265848370144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764927648", "args": [{"nodeId": ".1.140265764927648"}, {"nodeId": ".2.140265764927648"}]}, {"nodeId": ".1.140265764927648"}, {"nodeId": ".2.140265764927648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265848370592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764927648", "args": [{"nodeId": ".1.140265764927648"}, {"nodeId": ".2.140265764927648"}]}, {"nodeId": ".1.140265764927648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764928000": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848371040"}, "name": "fileno"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["fileno"]}}, "140265848371040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764928000"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764928352": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848371488"}, "name": "read"}}], "typeVars": [{"nodeId": ".1.140265764928352"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["read"]}}, ".1.140265764928352": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764928352", "variance": "COVARIANT"}}, "140265848371488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764928352", "args": [{"nodeId": ".1.140265764928352"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265764928352"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265764928704": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848371936"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140265764928704"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["readline"]}}, ".1.140265764928704": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764928704", "variance": "COVARIANT"}}, "140265848371936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764928704", "args": [{"nodeId": ".1.140265764928704"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265764928704"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265764929056": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848372384"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140265764929056"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["readline"]}}, ".1.140265764929056": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764929056", "variance": "COVARIANT"}}, "140265848372384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764929056", "args": [{"nodeId": ".1.140265764929056"}]}], "returnType": {"nodeId": ".1.140265764929056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265765093792": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SliceableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827631392"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265789865152"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140265827631392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765093792"}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265861263104", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265765094144": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IndexableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827631840"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265789865152"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140265827631840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765094144"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265765094496": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItemBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827632288"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265747824816"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265765093792"}, {"nodeId": "140265765094144"}], "protocolMembers": ["__buffer__", "__contains__", "__getitem__"]}}, "140265827632288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765094496"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265747824816": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265827632736"}, {"nodeId": "140265827633184"}]}}, "140265827632736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765094496"}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265861263104", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265827633184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765094496"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265765094848": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SizedBuffer", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789851424"}, {"nodeId": "140265789865152"}], "protocolMembers": ["__buffer__", "__len__"]}}, "140265765095552": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "DataclassInstance", "members": [{"kind": "Variable", "content": {"name": "__dataclass_fields__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265764743904", "args": [{"nodeId": "A"}]}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__dataclass_fields__"]}}, "140265764743904": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "Field", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764639056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764639504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764639728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785721600", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764639840"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807091680"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807092576"}, "name": "__set_name__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807093024"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265764743904"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265764743904": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764743904", "variance": "INVARIANT"}}, "140265764639056": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265764743904"}, {"nodeId": "0"}]}}, "140265764639504": {"type": "Union", "content": {"items": [{"nodeId": "140265764743552", "args": [{"nodeId": ".1.140265764743904"}]}, {"nodeId": "0"}]}}, "140265764743552": {"type": "Protocol", "content": {"module": "dataclasses", "simpleName": "_DefaultFactory", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807091232"}, "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140265764743552"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, ".1.140265764743552": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764743552", "variance": "COVARIANT"}}, "140265807091232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764743552", "args": [{"nodeId": ".1.140265764743552"}]}], "returnType": {"nodeId": ".1.140265764743552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764639728": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265764639840": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "0"}]}}, "140265807091680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764743904", "args": [{"nodeId": ".1.140265764743904"}]}, {"nodeId": ".1.140265764743904"}, {"nodeId": "140265751903168"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265752497616"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861264512", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "default", "default_factory", "init", "repr", "hash", "compare", "metadata", "kw_only"]}}, "140265751903168": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".1.140265764743904"}, "argKinds": [], "argNames": []}}, "140265752497616": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265807092576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764743904", "args": [{"nodeId": ".1.140265764743904"}]}, {"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}}, "140265807093024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140265789896864": {"type": "Concrete", "content": {"module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790230368"}], "isAbstract": false}}, "140265789897216": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265764744960": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827641248"}, "name": "__enter__"}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265705747648"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265764744960"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__enter__", "__exit__"]}}, ".1.140265764744960": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764744960", "variance": "COVARIANT"}}, "140265827641248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764744960", "args": [{"nodeId": ".1.140265764744960"}]}], "returnType": {"nodeId": ".1.140265764744960"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265705747648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764744960", "args": [{"nodeId": ".1.140265764744960"}]}, {"nodeId": "140265752502096"}, {"nodeId": "140265752502208"}, {"nodeId": "140265752502320"}], "returnType": {"nodeId": "140265752502432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265752502096": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752502208": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752502320": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265752502432": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265764745312": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265751902944"}, "name": "__aenter__"}}, {"kind": "Variable", "content": {"name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710880352"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265764745312"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__aenter__", "__aexit__"]}}, ".1.140265764745312": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764745312", "variance": "COVARIANT"}}, "140265751902944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764745312", "args": [{"nodeId": ".1.140265764745312"}]}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140265764745312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710880352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764745312", "args": [{"nodeId": ".1.140265764745312"}]}, {"nodeId": "140265752502656"}, {"nodeId": "140265752502768"}, {"nodeId": "140265752502880"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140265752502992"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140265752502656": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752502768": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752502880": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265752502992": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265764745664": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827643040"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265827643040": {"type": "Function", "content": {"typeVars": [".-1.140265827643040"], "argTypes": [{"nodeId": "140265764745664"}, {"nodeId": ".-1.140265827643040"}], "returnType": {"nodeId": ".-1.140265827643040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140265827643040": {"type": "TypeVar", "content": {"varName": "_F", "values": [], "upperBound": {"nodeId": "140265764885376"}, "def": "140265827643040", "variance": "INVARIANT"}}, "140265764885376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265764746016": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827643488"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265764746016"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764886496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827643936"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140265764746016"}], "bases": [{"nodeId": "140265764744960", "args": [{"nodeId": ".1.140265764746016"}]}, {"nodeId": "140265764745664"}], "isAbstract": false}}, ".1.140265764746016": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764746016", "variance": "COVARIANT"}}, "140265827643488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764746016", "args": [{"nodeId": ".1.140265764746016"}]}, {"nodeId": "140265752608832"}, {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140265752608832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265764746016"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265764886496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265764746016"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265827643936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764746016", "args": [{"nodeId": ".1.140265764746016"}]}, {"nodeId": "140265752503552"}, {"nodeId": "140265752503664"}, {"nodeId": "140265752503776"}], "returnType": {"nodeId": "140265752503888"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265752503552": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752503664": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752503776": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265752503888": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265764746368": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827645280"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265827645280": {"type": "Function", "content": {"typeVars": [".-1.140265827645280"], "argTypes": [{"nodeId": "140265764746368"}, {"nodeId": ".-1.140265827645280"}], "returnType": {"nodeId": ".-1.140265827645280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140265827645280": {"type": "TypeVar", "content": {"varName": "_AF", "values": [], "upperBound": {"nodeId": "140265773815328"}, "def": "140265827645280", "variance": "INVARIANT"}}, "140265773815328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265764746720": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827645728"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265764746720"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773825408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265751902720"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140265764746720"}], "bases": [{"nodeId": "140265764745312", "args": [{"nodeId": ".1.140265764746720"}]}, {"nodeId": "140265764746368"}], "isAbstract": false}}, ".1.140265764746720": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764746720", "variance": "COVARIANT"}}, "140265827645728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764746720", "args": [{"nodeId": ".1.140265764746720"}]}, {"nodeId": "140265752609728"}, {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140265752609728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861261696", "args": [{"nodeId": ".1.140265764746720"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265773825408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265764746720"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265751902720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764746720", "args": [{"nodeId": ".1.140265764746720"}]}, {"nodeId": "140265752504784"}, {"nodeId": "140265752504896"}, {"nodeId": "140265752505008"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140265752505120"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}}, "140265752504784": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752504896": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752505008": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265752505120": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265764747072": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827992288"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["close"]}}, "140265827992288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764747072"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764747424": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827992736"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827993184"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140265764747424"}], "bases": [{"nodeId": "140265764744960", "args": [{"nodeId": ".1.140265764747424"}]}], "isAbstract": false}}, ".1.140265764747424": {"type": "TypeVar", "content": {"varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "140265764747072"}, "def": "140265764747424", "variance": "INVARIANT"}}, "140265827992736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764747424", "args": [{"nodeId": ".1.140265764747424"}]}, {"nodeId": ".1.140265764747424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140265827993184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764747424", "args": [{"nodeId": ".1.140265764747424"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140265764747776": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827993632"}, "name": "aclose"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["aclose"]}}, "140265827993632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764747776"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764748128": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827994080"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265752611072"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140265764748128"}], "bases": [{"nodeId": "140265764745312", "args": [{"nodeId": ".1.140265764748128"}]}], "isAbstract": false}}, ".1.140265764748128": {"type": "TypeVar", "content": {"varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "140265764747776"}, "def": "140265764748128", "variance": "INVARIANT"}}, "140265827994080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764748128", "args": [{"nodeId": ".1.140265764748128"}]}, {"nodeId": ".1.140265764748128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140265752611072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764748128", "args": [{"nodeId": ".1.140265764748128"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}}, "140265764748480": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827994976"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827995424"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140265764744960", "args": [{"nodeId": "N"}]}], "isAbstract": false}}, "140265827994976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764748480"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}}, "140265827995424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764748480"}, {"nodeId": "140265752505904"}, {"nodeId": "140265752506016"}, {"nodeId": "140265752506128"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265752505904": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752506016": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752506128": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265764748832": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827995872"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827996320"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140265764748832"}], "bases": [{"nodeId": "140265764744960", "args": [{"nodeId": ".1.140265764748832"}]}], "isAbstract": false}}, ".1.140265764748832": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140265760400528"}, "def": "140265764748832", "variance": "INVARIANT"}}, "140265760400528": {"type": "Union", "content": {"items": [{"nodeId": "140265789853888", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265827995872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764748832", "args": [{"nodeId": ".1.140265764748832"}]}, {"nodeId": ".1.140265764748832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}}, "140265827996320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764748832", "args": [{"nodeId": ".1.140265764748832"}]}, {"nodeId": "140265752506240"}, {"nodeId": "140265752506352"}, {"nodeId": "140265752506464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265752506240": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752506352": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752506464": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265764913216": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.140265764913216"}], "bases": [{"nodeId": "140265764748832", "args": [{"nodeId": ".1.140265764913216"}]}], "isAbstract": false}}, ".1.140265764913216": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140265760400528"}, "def": "140265764913216", "variance": "INVARIANT"}}, "140265764913568": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.140265764913568"}], "bases": [{"nodeId": "140265764748832", "args": [{"nodeId": ".1.140265764913568"}]}], "isAbstract": false}}, ".1.140265764913568": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140265760400528"}, "def": "140265764913568", "variance": "INVARIANT"}}, "140265764913920": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827996768"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827997216"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827997664"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827998112"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827998560"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827999008"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827999456"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265827996768": {"type": "Function", "content": {"typeVars": [".-1.140265827996768"], "argTypes": [{"nodeId": "140265764913920"}, {"nodeId": "140265764744960", "args": [{"nodeId": ".-1.140265827996768"}]}], "returnType": {"nodeId": ".-1.140265827996768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140265827996768": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265827996768", "variance": "INVARIANT"}}, "140265827997216": {"type": "Function", "content": {"typeVars": [".-1.140265827997216"], "argTypes": [{"nodeId": "140265764913920"}, {"nodeId": ".-1.140265827997216"}], "returnType": {"nodeId": ".-1.140265827997216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140265827997216": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140265760401648"}, "def": "140265827997216", "variance": "INVARIANT"}}, "140265760401648": {"type": "Union", "content": {"items": [{"nodeId": "140265764744960", "args": [{"nodeId": "A"}]}, {"nodeId": "140265760401088"}]}}, "140265760401088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265773759200"}}}, "140265773759200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764641744"}, {"nodeId": "140265764641296"}, {"nodeId": "140265764641408"}], "returnType": {"nodeId": "140265764641520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265764641744": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265764641296": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265764641408": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265764641520": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265827997664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764913920"}, {"nodeId": "140265752610400"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140265752611296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140265752610400": {"type": "Function", "content": {"typeVars": [".-2.140265752610400"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140265752610400"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140265752610400": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265752610400", "variance": "INVARIANT"}}, "140265752611296": {"type": "Function", "content": {"typeVars": [".-2.140265752611296"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140265752611296"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140265752611296": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265752611296", "variance": "INVARIANT"}}, "140265827998112": {"type": "Function", "content": {"typeVars": [".0.140265827998112"], "argTypes": [{"nodeId": ".0.140265827998112"}], "returnType": {"nodeId": ".0.140265827998112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265827998112": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764913920"}, "def": "140265827998112", "variance": "INVARIANT"}}, "140265827998560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764913920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265827999008": {"type": "Function", "content": {"typeVars": [".0.140265827999008"], "argTypes": [{"nodeId": ".0.140265827999008"}], "returnType": {"nodeId": ".0.140265827999008"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265827999008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764913920"}, "def": "140265827999008", "variance": "INVARIANT"}}, "140265827999456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764913920"}, {"nodeId": "140265752507472"}, {"nodeId": "140265752507584"}, {"nodeId": "140265752507696"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265752507472": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752507584": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752507696": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265764914272": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827999904"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827994528"}, "name": "enter_async_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828000800"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828001248"}, "name": "push_async_exit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828001696"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828002144"}, "name": "push_async_callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828002592"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828000352"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828003040"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828003488"}, "name": "__aexit__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265827999904": {"type": "Function", "content": {"typeVars": [".-1.140265827999904"], "argTypes": [{"nodeId": "140265764914272"}, {"nodeId": "140265764744960", "args": [{"nodeId": ".-1.140265827999904"}]}], "returnType": {"nodeId": ".-1.140265827999904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140265827999904": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265827999904", "variance": "INVARIANT"}}, "140265827994528": {"type": "Function", "content": {"typeVars": [".-1.140265827994528"], "argTypes": [{"nodeId": "140265764914272"}, {"nodeId": "140265764745312", "args": [{"nodeId": ".-1.140265827994528"}]}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.140265827994528"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140265827994528": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265827994528", "variance": "INVARIANT"}}, "140265828000800": {"type": "Function", "content": {"typeVars": [".-1.140265828000800"], "argTypes": [{"nodeId": "140265764914272"}, {"nodeId": ".-1.140265828000800"}], "returnType": {"nodeId": ".-1.140265828000800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140265828000800": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140265760401648"}, "def": "140265828000800", "variance": "INVARIANT"}}, "140265828001248": {"type": "Function", "content": {"typeVars": [".-1.140265828001248"], "argTypes": [{"nodeId": "140265764914272"}, {"nodeId": ".-1.140265828001248"}], "returnType": {"nodeId": ".-1.140265828001248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140265828001248": {"type": "TypeVar", "content": {"varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "140265760402208"}, "def": "140265828001248", "variance": "INVARIANT"}}, "140265760402208": {"type": "Union", "content": {"items": [{"nodeId": "140265764745312", "args": [{"nodeId": "A"}]}, {"nodeId": "140265760402432"}]}}, "140265760402432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265773825632"}}}, "140265773825632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764646000"}, {"nodeId": "140265764644544"}, {"nodeId": "140265764645664"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": "140265764645776"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265764646000": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265764644544": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265764645664": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265764645776": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265828001696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914272"}, {"nodeId": "140265752610848"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140265752611744"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140265752610848": {"type": "Function", "content": {"typeVars": [".-2.140265752610848"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140265752610848"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140265752610848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265752610848", "variance": "INVARIANT"}}, "140265752611744": {"type": "Function", "content": {"typeVars": [".-2.140265752611744"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140265752611744"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140265752611744": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265752611744", "variance": "INVARIANT"}}, "140265828002144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914272"}, {"nodeId": "140265752611520"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140265752612192"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140265752611520": {"type": "Function", "content": {"typeVars": [".-2.140265752611520"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".-2.140265752611520"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140265752611520": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265752611520", "variance": "INVARIANT"}}, "140265752612192": {"type": "Function", "content": {"typeVars": [".-2.140265752612192"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".-2.140265752612192"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140265752612192": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265752612192", "variance": "INVARIANT"}}, "140265828002592": {"type": "Function", "content": {"typeVars": [".0.140265828002592"], "argTypes": [{"nodeId": ".0.140265828002592"}], "returnType": {"nodeId": ".0.140265828002592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265828002592": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764914272"}, "def": "140265828002592", "variance": "INVARIANT"}}, "140265828000352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914272"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265828003040": {"type": "Function", "content": {"typeVars": [".0.140265828003040"], "argTypes": [{"nodeId": ".0.140265828003040"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".0.140265828003040"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265828003040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764914272"}, "def": "140265828003040", "variance": "INVARIANT"}}, "140265828003488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914272"}, {"nodeId": "140265752509824"}, {"nodeId": "140265752509936"}, {"nodeId": "140265752510048"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140265861255360"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140265752509824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752509936": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752510048": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265764914624": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140265764914624"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752509712"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828005280"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828005728"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265752611968"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265752612864"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140265764914624"}], "bases": [{"nodeId": "140265764744960", "args": [{"nodeId": ".1.140265764914624"}]}, {"nodeId": "140265764745312", "args": [{"nodeId": ".1.140265764914624"}]}], "isAbstract": false}}, ".1.140265764914624": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764914624", "variance": "INVARIANT"}}, "140265752509712": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265828003936"}, {"nodeId": "140265828004384"}]}}, "140265828003936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914624", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}}, "140265828004384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914624", "args": [{"nodeId": ".1.140265764914624"}]}, {"nodeId": ".1.140265764914624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}}, "140265828005280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914624", "args": [{"nodeId": ".1.140265764914624"}]}], "returnType": {"nodeId": ".1.140265764914624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265828005728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914624", "args": [{"nodeId": ".1.140265764914624"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140265752611968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914624", "args": [{"nodeId": ".1.140265764914624"}]}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140265764914624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752612864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914624", "args": [{"nodeId": ".1.140265764914624"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}}, "140265785733920": {"type": "Concrete", "content": {"module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726797280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726796160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726795264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726794592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726793920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726793248"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756452656"}, "items": [{"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "expand"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756454336"}, "items": [{"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "group"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756455008"}, "items": [{"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groups"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756455120"}, "items": [{"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groupdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828198752"}, "name": "start"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828199200"}, "name": "end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828199648"}, "name": "span"}}, {"kind": "Variable", "content": {"name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726737344"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756456240"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828201440"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828201888"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828202336"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265785733920"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265785733920": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785733920", "variance": "INVARIANT"}}, "140265726797280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265726796160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265726795264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265756454784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756454784": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265726794592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265756454896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756454896": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265726793920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": ".1.140265785733920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265726793248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785733920"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785734272": {"type": "Concrete", "content": {"module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726733760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726723008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726723456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726724128"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756456688"}, "items": [{"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "search"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756457920"}, "items": [{"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "match"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756458704"}, "items": [{"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fullmatch"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756557600"}, "items": [{"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "split"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756558048"}, "items": [{"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "findall"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756558496"}, "items": [{"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "finditer"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756559280"}, "items": [{"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sub"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756559616"}, "items": [{"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831967520"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831967968"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831968416"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265785734272"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265785734272": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785734272", "variance": "INVARIANT"}}, "140265726733760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265726723008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}], "returnType": {"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265726723456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265726724128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}], "returnType": {"nodeId": ".1.140265785734272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756456688": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831956768"}, {"nodeId": "140265756269408"}, {"nodeId": "140265831957664"}]}}, "140265831956768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756458816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756458816": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265756269408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756557376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756557376": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "N"}]}}, "140265831957664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756557488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756557488": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": "N"}]}}, "140265756457920": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831958112"}, {"nodeId": "140265756267392"}, {"nodeId": "140265831959008"}]}}, "140265831958112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756557712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756557712": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265756267392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756557824"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756557824": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "N"}]}}, "140265831959008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756557936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756557936": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": "N"}]}}, "140265756458704": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831959456"}, {"nodeId": "140265756270304"}, {"nodeId": "140265831960352"}]}}, "140265831959456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756558160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756558160": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265756270304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756558272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756558272": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "N"}]}}, "140265831960352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756558384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756558384": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": "N"}]}}, "140265756557600": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831960800"}, {"nodeId": "140265756270528"}, {"nodeId": "140265831961696"}]}}, "140265831960800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265756558720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140265756558720": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}}, "140265756270528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265756558944"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140265756558944": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "A"}]}}, "140265831961696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265756559168"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140265756559168": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785734272"}, {"nodeId": "A"}]}}, "140265756558048": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831962144"}, {"nodeId": "140265756270752"}, {"nodeId": "140265831963040"}]}}, "140265831962144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756270752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265831963040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265785734272"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756558496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831963488"}, {"nodeId": "140265756270976"}, {"nodeId": "140265831964384"}]}}, "140265831963488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227200"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756270976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227552"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265831964384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785734272"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756559280": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831964832"}, {"nodeId": "140265756271648"}, {"nodeId": "140265831965728"}]}}, "140265831964832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265756559840"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140265756559840": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265756271200"}]}}, "140265756271200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265756271648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265756559952"}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140265756559952": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265756271424"}]}}, "140265756271424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227552"}]}], "returnType": {"nodeId": "140265789865152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265831965728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": "140265756560064"}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265785734272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140265756560064": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785734272"}, {"nodeId": "140265756270080"}]}}, "140265756270080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785734272"}]}], "returnType": {"nodeId": ".1.140265785734272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265756559616": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831966176"}, {"nodeId": "140265756272544"}, {"nodeId": "140265831967072"}]}}, "140265831966176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265756560288"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756560512"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140265756560288": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265756271872"}]}}, "140265756271872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265756560512": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265756272544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265756560624"}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756560848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140265756560624": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265756272096"}]}}, "140265756272096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227552"}]}], "returnType": {"nodeId": "140265789865152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265756560848": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}]}}, "140265831967072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": "140265756560960"}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756561184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140265756560960": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785734272"}, {"nodeId": "140265756272320"}]}}, "140265756272320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785734272"}]}], "returnType": {"nodeId": ".1.140265785734272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265756561184": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}]}}, "140265831967520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}], "returnType": {"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831967968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265831968416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140265756452656": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265828194272"}, {"nodeId": "140265756267840"}, {"nodeId": "140265828195168"}]}}, "140265828194272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140265756267840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140265828195168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": ".1.140265785733920"}], "returnType": {"nodeId": ".1.140265785733920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140265756454336": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265828195616"}, {"nodeId": "140265828196064"}, {"nodeId": "140265828196512"}]}}, "140265828195616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140265785733920"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265828196064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "140265756455344"}], "returnType": {"nodeId": "140265756455568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265756455344": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265756455568": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785733920"}, {"nodeId": "A"}]}}, "140265828196512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "140265756455680"}, {"nodeId": "140265756455792"}, {"nodeId": "140265756455904"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265756456128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}}, "140265756455680": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265756455792": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265756455904": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265756456128": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785733920"}, {"nodeId": "A"}]}}, "140265756455008": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265828196960"}, {"nodeId": "140265828197408"}]}}, "140265828196960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265756456464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756456464": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785733920"}, {"nodeId": "A"}]}}, "140265828197408": {"type": "Function", "content": {"typeVars": [".-1.140265828197408"], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": ".-1.140265828197408"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265756456576"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140265828197408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265828197408", "variance": "INVARIANT"}}, "140265756456576": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785733920"}, {"nodeId": ".-1.140265828197408"}]}}, "140265756455120": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265828197856"}, {"nodeId": "140265828198304"}]}}, "140265828197856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265756456912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756456912": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785733920"}, {"nodeId": "A"}]}}, "140265828198304": {"type": "Function", "content": {"typeVars": [".-1.140265828198304"], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": ".-1.140265828198304"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265756457024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140265828198304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265828198304", "variance": "INVARIANT"}}, "140265756457024": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785733920"}, {"nodeId": ".-1.140265828198304"}]}}, "140265828198752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "140265756457136"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265756457136": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265828199200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "140265756457248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265756457248": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265828199648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "140265756457360"}], "returnType": {"nodeId": "140265756457584"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265756457360": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265756457584": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265726737344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265756457808"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756457808": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265756456240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265828200544"}, {"nodeId": "140265828200992"}]}}, "140265828200544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140265785733920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265828200992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "140265756458144"}], "returnType": {"nodeId": "140265756458368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265756458144": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265756458368": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785733920"}, {"nodeId": "A"}]}}, "140265828201440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265828201888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265828202336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140265760326752": {"type": "Concrete", "content": {"module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "content": {"name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764451104"}], "isAbstract": false}}, "140265785720896": {"type": "Concrete", "content": {"module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735333568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785721248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773687728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735334016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735334688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831751840"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831752288"}, "name": "__call__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761019200"}, "items": [{"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735333568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785720896"}], "returnType": {"nodeId": "140265761021888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761021888": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265789865504"}]}, {"nodeId": "N"}]}}, "140265773687728": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265735334016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785720896"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735334688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785720896"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831751840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785720896"}, {"nodeId": "140265785721248"}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, {"nodeId": "140265761022336"}, {"nodeId": "140265761022448"}, {"nodeId": "140265761022560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}}, "140265761022336": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265761022448": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}, {"nodeId": "N"}]}}, "140265761022560": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265789865504"}]}, {"nodeId": "N"}]}}, "140265831752288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785720896"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265761019200": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831752736"}, {"nodeId": "140265831753184"}]}}, "140265831752736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785720896"}, {"nodeId": "N"}, {"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265785720896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265831753184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785720896"}, {"nodeId": "140265861254656"}, {"nodeId": "140265761023120"}], "returnType": {"nodeId": "140265785724416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265761023120": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265785724416": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735670464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735670912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735671136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735671360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735671584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735671808"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810899936"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810900384"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735670464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}], "returnType": {"nodeId": "140265761028496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761028496": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265789865504"}]}, {"nodeId": "N"}]}}, "140265735670912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}], "returnType": {"nodeId": "140265761028720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761028720": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265735671136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}], "returnType": {"nodeId": "140265785724064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785724064": {"type": "Concrete", "content": {"module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810896800"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265810896800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724064"}, {"nodeId": "140265861254656"}, {"nodeId": "140265761028384"}], "returnType": {"nodeId": "140265785720896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}}, "140265761028384": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265735671360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735671584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735671808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810899936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}, {"nodeId": "140265764891424"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265764891424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265810900384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265785721952": {"type": "Concrete", "content": {"module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810702432"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810702880"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810703328"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810703776"}, "name": "__delattr__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265810702432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721952"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140265810702880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721952"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265810703328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721952"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265810703776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721952"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265785723008": {"type": "Concrete", "content": {"module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735454304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810887392"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810887840"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810888288"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761020880"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}], "bases": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}], "isAbstract": false}}, ".1.140265785723008": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723008", "variance": "COVARIANT"}}, ".2.140265785723008": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723008", "variance": "CONTRAVARIANT"}}, ".3.140265785723008": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723008", "variance": "COVARIANT"}}, "140265735454304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}], "returnType": {"nodeId": "140265761025024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761025024": {"type": "Union", "content": {"items": [{"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265810887392": {"type": "Function", "content": {"typeVars": [".0.140265810887392"], "argTypes": [{"nodeId": ".0.140265810887392"}], "returnType": {"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265810887392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}, "def": "140265810887392", "variance": "INVARIANT"}}, "140265810887840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}], "returnType": {"nodeId": ".1.140265785723008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810888288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}, {"nodeId": ".2.140265785723008"}], "returnType": {"nodeId": ".1.140265785723008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265761020880": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265810888736"}, {"nodeId": "140265810889184"}]}}, "140265810888736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}, {"nodeId": "0"}, {"nodeId": "140265761025360"}, {"nodeId": "140265761025472"}], "returnType": {"nodeId": ".1.140265785723008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265761025360": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "140265861254656"}]}}, "140265761025472": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265810889184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}, {"nodeId": "140265790233888"}, {"nodeId": "N"}, {"nodeId": "140265761025584"}], "returnType": {"nodeId": ".1.140265785723008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265761025584": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265785723360": {"type": "Concrete", "content": {"module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735576416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810890528"}, "name": "__aiter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810890976"}, "name": "__anext__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810891424"}, "name": "asend"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761025136"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810892768"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810893216"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}], "bases": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}], "isAbstract": false}}, ".1.140265785723360": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723360", "variance": "COVARIANT"}}, ".2.140265785723360": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723360", "variance": "CONTRAVARIANT"}}, "140265735576416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}], "returnType": {"nodeId": "140265761025808"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761025808": {"type": "Union", "content": {"items": [{"nodeId": "140265861260640", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265810890528": {"type": "Function", "content": {"typeVars": [".0.140265810890528"], "argTypes": [{"nodeId": ".0.140265810890528"}], "returnType": {"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265810890528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}, "def": "140265810890528", "variance": "INVARIANT"}}, "140265810890976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140265785723360"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810891424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}, {"nodeId": ".2.140265785723360"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140265785723360"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265761025136": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265764891200"}, {"nodeId": "140265810891872"}]}}, "140265764891200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}, {"nodeId": "0"}, {"nodeId": "140265761026592"}, {"nodeId": "140265761026704"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140265785723360"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265761026592": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "140265861254656"}]}}, "140265761026704": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265810891872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}, {"nodeId": "140265790233888"}, {"nodeId": "N"}, {"nodeId": "140265761026928"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140265785723360"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265761026928": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265810892768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810893216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265785723712": {"type": "Concrete", "content": {"module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735582688"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810894560"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810895008"}, "name": "__await__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810895456"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761026816"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}], "bases": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}]}], "isAbstract": false}}, ".1.140265785723712": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723712", "variance": "COVARIANT"}}, ".2.140265785723712": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723712", "variance": "CONTRAVARIANT"}}, ".3.140265785723712": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723712", "variance": "COVARIANT"}}, "140265735582688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723712", "args": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}]}], "returnType": {"nodeId": "140265761027712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761027712": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265761027600"}]}, {"nodeId": "N"}]}}, "140265761027600": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265810894560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723712", "args": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810895008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723712", "args": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}]}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.140265785723712"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810895456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723712", "args": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}]}, {"nodeId": ".2.140265785723712"}], "returnType": {"nodeId": ".1.140265785723712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265761026816": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265810895904"}, {"nodeId": "140265810896352"}]}}, "140265810895904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723712", "args": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}]}, {"nodeId": "0"}, {"nodeId": "140265761028048"}, {"nodeId": "140265761028160"}], "returnType": {"nodeId": ".1.140265785723712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265761028048": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "140265861254656"}]}}, "140265761028160": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265810896352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723712", "args": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}]}, {"nodeId": "140265790233888"}, {"nodeId": "N"}, {"nodeId": "140265761028272"}], "returnType": {"nodeId": ".1.140265785723712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265761028272": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265785724768": {"type": "Concrete", "content": {"module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735673376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735673600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735673824"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810902176"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735673376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724768"}], "returnType": {"nodeId": "140265761029392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761029392": {"type": "Union", "content": {"items": [{"nodeId": "140265861254656"}, {"nodeId": "140265785722656"}]}}, "140265735673600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724768"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735673824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724768"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810902176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724768"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265785725120": {"type": "Concrete", "content": {"module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735675616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735676064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735676288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811035296"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811035744"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735675616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725120"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735676064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725120"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735676288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725120"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811035296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725120"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265811035744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725120"}, {"nodeId": "A"}, {"nodeId": "140265756049696"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265756049696": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265785725472": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735678080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735678304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735678528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735678752"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811037984"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811038432"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811038880"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735678080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725472"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735678304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725472"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735678528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725472"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735678752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725472"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811037984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725472"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265811038432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725472"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265811038880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725472"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265785725824": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735681440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735681664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735681888"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811040672"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811041120"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735681440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725824"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735681664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725824"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735681888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725824"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811040672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725824"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265811041120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725824"}, {"nodeId": "A"}, {"nodeId": "140265756050704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265756050704": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265785726176": {"type": "Concrete", "content": {"module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735682784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735749696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735749920"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811042912"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811043360"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735682784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726176"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735749696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726176"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735749920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726176"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811042912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726176"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265811043360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726176"}, {"nodeId": "A"}, {"nodeId": "140265756051376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265756051376": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265785727232": {"type": "Concrete", "content": {"module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735757088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735756864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735757312"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811165472"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811165920"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811166368"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735757088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727232"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735756864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727232"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735757312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727232"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811165472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727232"}, {"nodeId": "A"}, {"nodeId": "140265756052496"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265756052496": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265811165920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727232"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265811166368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727232"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265785727584": {"type": "Concrete", "content": {"module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735759104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735759328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735759552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811168160"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811168608"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811169056"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735759104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727584"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735759328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727584"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735759552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727584"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811168160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727584"}, {"nodeId": "A"}, {"nodeId": "140265756053168"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265756053168": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265811168608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727584"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265811169056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727584"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265785728288": {"type": "Concrete", "content": {"module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811175776"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265811175776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785728288"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760339072": {"type": "Concrete", "content": {"module": "time", "simpleName": "struct_time", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265698098336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_year", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265705957056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_mon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710016928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_mday", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744393472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744391904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265697792224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_sec", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735951680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_wday", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265743911840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_yday", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265743913632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_isdst", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265743914528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_zone", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265743917216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_gmtoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265743913856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265698087360"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265698098336": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265705957056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760270352"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760270352": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265710016928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265731169568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265731169568": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265744393472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265714533312"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714533312": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265744391904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265777843664"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265777843664": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265697792224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265697744864"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265697744864": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735951680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265698086240"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265698086240": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265743911840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265698086688"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265698086688": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265743913632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265698086800"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265698086800": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265743914528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265698087696"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265698087696": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265743917216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265698087808"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265698087808": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265743913856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265698087920"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265698087920": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265698087360": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "140265861266272"}]}}, "140265760339424": {"type": "Protocol", "content": {"module": "time", "simpleName": "_ClockInfo", "members": [{"kind": "Variable", "content": {"name": "adjustable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "implementation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "monotonic", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266624"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["adjustable", "implementation", "monotonic", "resolution"]}}, "140265765096256": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265697581920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828384352"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760584896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765143488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765143600"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265697581920": {"type": "Tuple", "content": {"items": []}}, "140265828384352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765096256"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265760584896": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265765143488": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265765143600": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765096608": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765096960": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765097312": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702518880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096960"}], "isAbstract": false}}, "140265702518880": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765097664": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702516416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096608"}], "isAbstract": false}}, "140265702516416": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765108224": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765098016": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702514848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765097312"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096608"}], "isAbstract": false}}, "140265702514848": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765099072": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765098368": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702506896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096608"}], "isAbstract": false}}, "140265702506896": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765098720": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702324848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096608"}], "isAbstract": false}}, "140265702324848": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765099424": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702319248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765394688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760582656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265702319248": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765394688": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714126064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765395040"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765395040"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765147184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765395040"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765147408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760584560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265714126064": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765395040": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719233584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760584672"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265719233584": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760584672": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765147184": {"type": "Union", "content": {"items": [{"nodeId": "140265765395040"}, {"nodeId": "N"}]}}, "140265765147408": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265760584560": {"type": "Union", "content": {"items": [{"nodeId": "140265765395040"}, {"nodeId": "N"}]}}, "140265760582656": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765099776": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702314096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765394688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760583552"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265702314096": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760583552": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765100128": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701806752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765395392"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701806752": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765395392": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719232128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765147520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265719232128": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765147520": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765100480": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701804960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760583664"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701804960": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265760583664": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765100832": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701803280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701803280": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765101184": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701554576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701554576": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765101536": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701551664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760583776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765300960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701551664": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760583776": {"type": "Union", "content": {"items": [{"nodeId": "140265765297440"}, {"nodeId": "140265765296032"}, {"nodeId": "140265765296736"}]}}, "140265765297440": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714844384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765298496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265714844384": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765298496": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765296032": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715055104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765298496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265715055104": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765296736": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714851328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765298496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265714851328": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765300960": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765101888": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701547632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760583888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760584000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701547632": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760583888": {"type": "Union", "content": {"items": [{"nodeId": "140265765297440"}, {"nodeId": "140265765296032"}, {"nodeId": "140265765296736"}]}}, "140265760584000": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765102240": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701545168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701545168": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765102592": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701542704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701542704": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765102944": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706519600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706519600": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765103296": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706516912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706516912": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765103648": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706514224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765396096"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706514224": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765396096": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719227872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765147632"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265719227872": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765147632": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765104000": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706511760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765396096"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706511760": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765104352": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706510752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760584112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760579296"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706510752": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760584112": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265760579296": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765104704": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706507728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765394336"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706507728": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765394336": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714130544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765146960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765147072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765393984"}], "isAbstract": false}}, "140265714130544": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765146960": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765147072": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765393984": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765105056": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706353632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760584336"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706353632": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760584336": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765105408": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706351840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765395744"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706351840": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765395744": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719229776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765147296"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265719229776": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765147296": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765105760": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706349152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760584448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765395744"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706349152": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760584448": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765106112": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706348368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706348368": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765106464": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706347136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706347136": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765106816": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706345680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706345680": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765107168": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265765107520": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265765107872": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265765108576": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706342768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765299904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265706342768": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765299904": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765108928": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706091712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765300960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265706091712": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765109280": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706093056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765305888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265706093056": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765305888": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765290048": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706090704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765394688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265706090704": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765290400": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706089024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265706089024": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765290752": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706086560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765144160"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265706086560": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765144160": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765291104": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706079952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265706079952": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765291456": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265705811952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765393632"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265705811952": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765393632": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714131776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265714131776": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765291808": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265705810944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765393632"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265705810944": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765292160": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265705800304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765393632"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265705800304": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765292512": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710871920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765393632"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710871920": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765292864": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710645344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710645344": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765293216": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710643776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760583216"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710643776": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265760583216": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765293568": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710643216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710643216": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765293920": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710633920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765389760"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710633920": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765389760": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765294272": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710222272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765395392"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710222272": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765294624": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710217008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765143936"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710217008": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765143936": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765294976": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710215328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710215328": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765295328": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710209280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765143824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765146400"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710209280": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765143824": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765146400": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266976"}]}}, "140265765295680": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710037904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765297440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710037904": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765296384": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715050176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765146624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765146736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765146848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265715050176": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765146624": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765146736": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765146848": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765297088": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714847408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765298496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265714847408": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765297792": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714547088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765298496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265714547088": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765298144": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714539024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765298496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265714539024": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765298848": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765298496"}], "isAbstract": false}}, "140265765299200": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765298496"}], "isAbstract": false}}, "140265765299552": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765298496"}], "isAbstract": false}}, "140265765300256": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765299904"}], "isAbstract": false}}, "140265765300608": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765299904"}], "isAbstract": false}}, "140265765301312": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765301664": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765302016": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765302368": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765302720": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765303072": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765303424": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765303776": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765304128": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765304480": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765304832": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765305184": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765305536": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765388352": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765305888"}], "isAbstract": false}}, "140265765388704": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765305888"}], "isAbstract": false}}, "140265765389056": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765305888"}], "isAbstract": false}}, "140265765389408": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765305888"}], "isAbstract": false}}, "140265765390112": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765390464": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765390816": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765391168": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765391520": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765391872": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765392224": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765392576": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765392928": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765393280": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765396448": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719225408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765397152"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265719225408": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765397152": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719224400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765396800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765147744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265719224400": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765396800": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765147744": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765397504": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719223840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265719223840": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765397856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719223168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765147856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265719223168": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765147856": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140265765398208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719222384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765396800"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265719222384": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765398560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719220256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765148192"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265719220256": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765148192": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765398912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719220032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765396800"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765148304"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265719220032": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765148304": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765399264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719218352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765396800"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765396800"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265719218352": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765399616": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265718857200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765148416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765148528"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265718857200": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765148416": {"type": "Union", "content": {"items": [{"nodeId": "140265765396800"}, {"nodeId": "N"}]}}, "140265765148528": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765399968": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265718857312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765396800"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265718857312": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265785735328": {"type": "Concrete", "content": {"module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}, {"nodeId": "140265790241632"}], "isAbstract": false}}, "140265785735680": {"type": "Concrete", "content": {"module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811314272"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811314720"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811315168"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811315616"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811316064"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811316512"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811316960"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811317408"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811317856"}, "name": "readable"}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764884928"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811318304"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811318752"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811319200"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811319648"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811320096"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811320544"}, "name": "writable"}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764887616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811320992"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811321440"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811321888"}, "name": "__del__"}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718996480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811322784"}, "name": "_checkClosed"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265811314272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227552"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265811314720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811315168": {"type": "Function", "content": {"typeVars": [".0.140265811315168"], "argTypes": [{"nodeId": ".0.140265811315168"}], "returnType": {"nodeId": ".0.140265811315168"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265811315168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785735680"}, "def": "140265811315168", "variance": "INVARIANT"}}, "140265811315616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}, {"nodeId": "140265751882080"}, {"nodeId": "140265751882192"}, {"nodeId": "140265751882304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265751882080": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265751882192": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265751882304": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265811316064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811316512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811316960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811317408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811317856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764884928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265811318304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227552"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265811318752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265811319200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811319648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811320096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}, {"nodeId": "140265751882416"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265751882416": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265811320544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764887616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265811320992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265789865152"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265811321440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}, {"nodeId": "140265751882528"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265751882528": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265811321888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265718996480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811322784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}, {"nodeId": "140265751882640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "140265751882640": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265785736032": {"type": "Concrete", "content": {"module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811323232"}, "name": "readall"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811323680"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811324128"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811324576"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140265785735680"}], "isAbstract": false}}, "140265811323232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736032"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811323680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736032"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265751882752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265751882752": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265811324128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736032"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265751882864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265751882864": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265811324576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736032"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265751882976"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265751882976": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265785736384": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785736032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811325024"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811325472"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811325920"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811326368"}, "name": "readinto1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811326816"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811327264"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140265785735680"}], "isAbstract": false}}, "140265811325024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736384"}], "returnType": {"nodeId": "140265785736032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811325472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736384"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265811325920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736384"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265811326368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736384"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265811326816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736384"}, {"nodeId": "140265751883088"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265751883088": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265811327264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736384"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265785736736": {"type": "Concrete", "content": {"module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760396160"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811327712"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718991328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811328608"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831547168"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831547616"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "140265785736032"}, {"nodeId": "140265789854240"}], "isAbstract": false}}, "140265760396160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765006560"}}}, "140265765006560": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265765009696"}]}}, "140265765009696": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265764995472": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "140265760327104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265760327104", "args": [{"nodeId": "140265790227552"}]}]}}, "140265760327104": {"type": "Protocol", "content": {"module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "content": {"name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265723002016"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265760327104"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__fspath__"]}}, ".1.140265760327104": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265760327104", "variance": "COVARIANT"}}, "140265723002016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760327104", "args": [{"nodeId": ".1.140265760327104"}]}], "returnType": {"nodeId": ".1.140265760327104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811327712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736736"}, {"nodeId": "140265751883200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}, {"nodeId": "140265751883424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}}, "140265751883200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765006560"}}}, "140265751883424": {"type": "Union", "content": {"items": [{"nodeId": "140265751883312"}, {"nodeId": "N"}]}}, "140265751883312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265773811296"}}}, "140265773811296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265718991328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736736"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811328608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736736"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265831547168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736736"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265831547616": {"type": "Function", "content": {"typeVars": [".0.140265831547616"], "argTypes": [{"nodeId": ".0.140265831547616"}], "returnType": {"nodeId": ".0.140265831547616"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265831547616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785736736"}, "def": "140265831547616", "variance": "INVARIANT"}}, "140265764438080": {"type": "Concrete", "content": {"module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831548064"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831548512"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831548960"}, "name": "getvalue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831549408"}, "name": "getbuffer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831549856"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140265785736384"}, {"nodeId": "140265789854240"}], "isAbstract": false}}, "140265831548064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438080"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}}, "140265831548512": {"type": "Function", "content": {"typeVars": [".0.140265831548512"], "argTypes": [{"nodeId": ".0.140265831548512"}], "returnType": {"nodeId": ".0.140265831548512"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265831548512": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764438080"}, "def": "140265831548512", "variance": "INVARIANT"}}, "140265831548960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438080"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831549408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438080"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831549856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438080"}, {"nodeId": "140265751883760"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265751883760": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265764438432": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831550304"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831550752"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831551200"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140265785736384"}, {"nodeId": "140265789854240"}], "isAbstract": false}}, "140265831550304": {"type": "Function", "content": {"typeVars": [".0.140265831550304"], "argTypes": [{"nodeId": ".0.140265831550304"}], "returnType": {"nodeId": ".0.140265831550304"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265831550304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764438432"}, "def": "140265831550304", "variance": "INVARIANT"}}, "140265831550752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438432"}, {"nodeId": "140265785736032"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140265831551200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438432"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265764438784": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831551648"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831552096"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831552544"}, "name": "write"}}], "typeVars": [], "bases": [{"nodeId": "140265785736384"}, {"nodeId": "140265789854240"}], "isAbstract": false}}, "140265831551648": {"type": "Function", "content": {"typeVars": [".0.140265831551648"], "argTypes": [{"nodeId": ".0.140265831551648"}], "returnType": {"nodeId": ".0.140265831551648"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265831551648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764438784"}, "def": "140265831551648", "variance": "INVARIANT"}}, "140265831552096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438784"}, {"nodeId": "140265785736032"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140265831552544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438784"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265764439136": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831552992"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831553440"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140265764438432"}, {"nodeId": "140265764438784"}], "isAbstract": false}}, "140265831552992": {"type": "Function", "content": {"typeVars": [".0.140265831552992"], "argTypes": [{"nodeId": ".0.140265831552992"}], "returnType": {"nodeId": ".0.140265831552992"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265831552992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764439136"}, "def": "140265831552992", "variance": "INVARIANT"}}, "140265831553440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439136"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265764439488": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831553888"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831554336"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140265785736384"}], "isAbstract": false}}, "140265831553888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439488"}, {"nodeId": "140265785736032"}, {"nodeId": "140265785736032"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}}, "140265831554336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439488"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265764439840": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760646176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760396272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831554784"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831555232"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831555680"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831556128"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831556576"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831557024"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831557472"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831557920"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140265785735680"}], "isAbstract": false}}, "140265760646176": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265760396272": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265831554784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265831555232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831555680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}], "returnType": {"nodeId": "140265789854240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831556128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265831556576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265831557024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265831557472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265831557920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}, {"nodeId": "140265751884208"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265751884208": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265764440192": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831558368"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714157824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714158272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714158496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714158944"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831560608"}, "name": "reconfigure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831561056"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831561504"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831561952"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831562400"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831562848"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831629088"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831629536"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140265764439840"}, {"nodeId": "140265789854592"}], "isAbstract": false}}, "140265831558368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}, {"nodeId": "140265789853888", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265751884320"}, {"nodeId": "140265751884432"}, {"nodeId": "140265751884544"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140265751884320": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265751884432": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265751884544": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265714157824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}], "returnType": {"nodeId": "140265789854240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714158272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714158496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714158944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831560608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}, {"nodeId": "140265751884656"}, {"nodeId": "140265751884768"}, {"nodeId": "140265751884880"}, {"nodeId": "140265751884992"}, {"nodeId": "140265751885104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140265751884656": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265751884768": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265751884880": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265751884992": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265751885104": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265831561056": {"type": "Function", "content": {"typeVars": [".0.140265831561056"], "argTypes": [{"nodeId": ".0.140265831561056"}], "returnType": {"nodeId": ".0.140265831561056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265831561056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764440192"}, "def": "140265831561056", "variance": "INVARIANT"}}, "140265831561504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265831561952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831562400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265831562848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265831629088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265831629536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265764440544": {"type": "Concrete", "content": {"module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831629984"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831630432"}, "name": "getvalue"}}], "typeVars": [], "bases": [{"nodeId": "140265764440192"}], "isAbstract": false}}, "140265831629984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440544"}, {"nodeId": "140265751885328"}, {"nodeId": "140265751885440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}}, "140265751885328": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265751885440": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265831630432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440544"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760338368": {"type": "Concrete", "content": {"module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831630880"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831631328"}, "name": "decode"}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714287104"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831632224"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140265764919552"}], "isAbstract": false}}, "140265831630880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760338368"}, {"nodeId": "140265751885552"}, {"nodeId": "140265861255360"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}}, "140265751885552": {"type": "Union", "content": {"items": [{"nodeId": "140265764919552"}, {"nodeId": "N"}]}}, "140265764919552": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802249184"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702078752"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802250080"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802250528"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802250976"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": true}}, "140265802249184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919552"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140265702078752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919552"}, {"nodeId": "140265789865152"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140265802250080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802250528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919552"}], "returnType": {"nodeId": "140265747830080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747830080": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}]}}, "140265802250976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919552"}, {"nodeId": "140265747830304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140265747830304": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}]}}, "140265831631328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760338368"}, {"nodeId": "140265751885664"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140265751885664": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265790227200"}]}}, "140265714287104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760338368"}], "returnType": {"nodeId": "140265751885776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751885776": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265831632224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760338368"}, {"nodeId": "140265751886000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265751886000": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}]}}, "140265764445120": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265764445824": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "content": {"name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714715104"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764445472"}], "isAbstract": true}}, "140265714715104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764445824"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265764446176": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831635808"}, "name": "is_package"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831636256"}, "name": "get_code"}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714768512"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831637152"}, "name": "exec_module"}}, {"kind": "Variable", "content": {"name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714746528"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764445472"}], "isAbstract": true}}, "140265831635808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446176"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265831636256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446176"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752093392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265752093392": {"type": "Union", "content": {"items": [{"nodeId": "140265785721248"}, {"nodeId": "N"}]}}, "140265714768512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446176"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752093504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265752093504": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265831637152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446176"}, {"nodeId": "140265785722656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140265714746528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265752093616"}, {"nodeId": "140265752093840"}], "returnType": {"nodeId": "140265785721248"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}}, "140265752093616": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265790227200"}, {"nodeId": "140265765098016"}, {"nodeId": "140265765098720"}, {"nodeId": "140265765098368"}]}}, "140265752093840": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265752093728"}]}}, "140265752093728": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265790503312": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265760327104", "args": [{"nodeId": "140265790227200"}]}]}}, "140265764446528": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715105376"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764446176"}], "isAbstract": true}}, "140265715105376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446528"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265764446880": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831638496"}, "name": "path_mtime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831638944"}, "name": "set_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831639392"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831639840"}, "name": "path_stats"}}], "typeVars": [], "bases": [{"nodeId": "140265764445824"}, {"nodeId": "140265764446528"}], "isAbstract": true}}, "140265831638496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446880"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265831638944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446880"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}}, "140265831639392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446880"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752093952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265752093952": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265831639840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446880"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265764447232": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831640288"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831640736"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831641184"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140265764445120"}], "isAbstract": false}}, "140265831640288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447232"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752094176"}], "returnType": {"nodeId": "140265752094288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140265752094176": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752094288": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265831640736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831641184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447232"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752094400"}, {"nodeId": "140265752094512"}], "returnType": {"nodeId": "140265752094624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140265752094400": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752094512": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265752094624": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265764447584": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831641632"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831642080"}, "name": "find_loader"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831642528"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831642976"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140265764445120"}], "isAbstract": false}}, "140265831641632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447584"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752094736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265752094736": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265831642080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447584"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752095072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265752095072": {"type": "Tuple", "content": {"items": [{"nodeId": "140265752094848"}, {"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}]}}, "140265752094848": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265831642528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831642976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447584"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752095184"}], "returnType": {"nodeId": "140265752095296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}}, "140265752095184": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265752095296": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265764447936": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831643424"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831643872"}, "name": "get_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831644320"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831644768"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140265764445824"}, {"nodeId": "140265764446528"}], "isAbstract": true}}, "140265831643424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447936"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140265831643872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447936"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265831644320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447936"}, {"nodeId": "140265752095408"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140265752095408": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265831644768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447936"}, {"nodeId": "140265752095520"}], "returnType": {"nodeId": "140265785722656"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140265752095520": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265764448288": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "content": {"name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715110112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715110560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715111232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715110784"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": true}}, "140265715110112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448288"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265789853888", "args": [{"nodeId": "140265790227552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140265715110560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448288"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140265715111232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448288"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265715110784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448288"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764448640": {"type": "Protocol", "content": {"module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "content": {"name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715112128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715112576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715112800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715113472"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752093056"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265715113024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715113696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715113920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715114144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}}, "140265715112128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265715112576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265715112800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265764448640"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265715113472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265764448640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}}, "140265752093056": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265806762656"}, {"nodeId": "140265806763104"}, {"nodeId": "140265806763552"}, {"nodeId": "140265806764000"}, {"nodeId": "140265806764448"}, {"nodeId": "140265806764896"}, {"nodeId": "140265806765344"}]}}, "140265806762656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265752095744"}, {"nodeId": "140265861266272"}, {"nodeId": "140265752095856"}, {"nodeId": "140265752095968"}, {"nodeId": "140265752096080"}], "returnType": {"nodeId": "140265764440192"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265752095744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765000960"}}}, "140265765000960": {"type": "Union", "content": {"items": [{"nodeId": "140265765002864"}, {"nodeId": "140265765002976"}, {"nodeId": "140265765000848"}]}}, "140265765002864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765000400"}}}, "140265765000400": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265765002976": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765002528"}}}, "140265765002528": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265765000848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765004544"}}}, "140265765004544": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265752095856": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752095968": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752096080": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265806763104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265752095632"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265785736736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265752095632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765007792"}}}, "140265765007792": {"type": "Union", "content": {"items": [{"nodeId": "140265765008016"}, {"nodeId": "140265765008128"}, {"nodeId": "140265765006784"}]}}, "140265765008016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765006224"}}}, "140265765006224": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265765008128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765009248"}}}, "140265765009248": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265765006784": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765007680"}}}, "140265765007680": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265806763552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265752096416"}, {"nodeId": "140265752096752"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265764439136"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265752096416": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765006224"}}}, "140265752096752": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265806764000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265752096864"}, {"nodeId": "140265752097200"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265764438784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265752096864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765007680"}}}, "140265752097200": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265806764448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265752097312"}, {"nodeId": "140265752097648"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265764438432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265752097312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765009248"}}}, "140265752097648": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265806764896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265752097760"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265789854240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265752097760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765007792"}}}, "140265806765344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265752097872"}, {"nodeId": "140265752097984"}, {"nodeId": "140265752098096"}], "returnType": {"nodeId": "140265789853888", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265752097872": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752097984": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752098096": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265715113024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265715113696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265764448640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265715113920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265715114144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265752098320"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140265752098320": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265764448992": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "content": {"name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715115712"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806768032"}, "name": "open_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806768480"}, "name": "resource_path"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806768928"}, "name": "is_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806769376"}, "name": "contents"}}], "typeVars": [], "bases": [{"nodeId": "140265764448288"}], "isAbstract": true}}, "140265715115712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448992"}], "returnType": {"nodeId": "140265764448640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265806768032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448992"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265764438432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140265806768480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448992"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140265806768928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448992"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265806769376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448992"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760331328": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714766496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714765600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714765152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714764704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714764256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714764032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714763584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714761792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714760640"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764447232"}, {"nodeId": "140265764446176"}], "isAbstract": false}}, "140265714766496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752090032"}], "returnType": {"nodeId": "140265752090144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140265752090032": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752090144": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265714765600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752090256"}, {"nodeId": "140265752090368"}], "returnType": {"nodeId": "140265752090480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140265752090256": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752090368": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265752090480": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265714765152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714764704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265785722656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714764256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714764032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714763584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722656"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140265714761792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444416"}], "returnType": {"nodeId": "140265752090592"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140265752090592": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265714760640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140265760331680": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714759744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714760192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714759296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714758848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714758400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714757952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714757504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714756384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714756160"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764447232"}, {"nodeId": "140265764446176"}], "isAbstract": false}}, "140265714759744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752090704"}], "returnType": {"nodeId": "140265752090816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140265752090704": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752090816": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265714760192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752090928"}, {"nodeId": "140265752091040"}], "returnType": {"nodeId": "140265752091152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140265752090928": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752091040": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265752091152": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265714759296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714758848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265785722656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714758400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714757952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714757504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722656"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}}, "140265714756384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444416"}], "returnType": {"nodeId": "140265752091264"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140265752091264": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265714756160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140265760332032": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714755040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714754592"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764447232"}], "isAbstract": false}}, "140265714755040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752091376"}], "returnType": {"nodeId": "140265752091488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140265752091376": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752091488": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265714754592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752091600"}, {"nodeId": "140265752091712"}], "returnType": {"nodeId": "140265752091824"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140265752091600": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752091712": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265752091824": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265764444768": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "content": {"name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714753024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714752576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714753472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714752128"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265714753024": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}}, "140265714752576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760330624"}], "returnType": {"nodeId": "140265861259232", "args": [{"nodeId": "140265764444064"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}}, "140265760330624": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760646512"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803023072"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714405152"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265760646512": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265803023072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760330624"}, {"nodeId": "140265752086896"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}}, "140265752086896": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265714405152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760330624"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764444064": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803025312"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803025760"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803026208"}, "name": "locate_file"}}], "typeVars": [], "bases": [{"nodeId": "140265764443712"}], "isAbstract": false}}, "140265803025312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444064"}, {"nodeId": "140265760337312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265760337312": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781439040"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781439488"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781439936"}, "name": "__exit__"}}, {"kind": "Variable", "content": {"name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265722689824"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781440832"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781441280"}, "name": "chmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781443968"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781903424"}, "name": "glob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781903872"}, "name": "rglob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781904320"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781904768"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781905216"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781905664"}, "name": "is_socket"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781906112"}, "name": "is_fifo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781906560"}, "name": "is_block_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781907008"}, "name": "is_char_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781907904"}, "name": "iterdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781908352"}, "name": "lchmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781908800"}, "name": "lstat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781909248"}, "name": "mkdir"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756572048"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781912832"}, "name": "owner"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781913280"}, "name": "group"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781913728"}, "name": "is_mount"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781914176"}, "name": "readlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781914624"}, "name": "rename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781915072"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781916416"}, "name": "resolve"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781916864"}, "name": "rmdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781917312"}, "name": "symlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781917760"}, "name": "hardlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781918208"}, "name": "touch"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781918656"}, "name": "unlink"}}, {"kind": "Variable", "content": {"name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265722776928"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773384192"}, "name": "absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773384640"}, "name": "expanduser"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773385088"}, "name": "read_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773385536"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773385984"}, "name": "samefile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773386432"}, "name": "write_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773386880"}, "name": "write_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773387776"}, "name": "link_to"}}], "typeVars": [], "bases": [{"nodeId": "140265760336256"}], "isAbstract": false}}, "140265781439040": {"type": "Function", "content": {"typeVars": [".0.140265781439040"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265756738608"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265781439040"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, "140265756738608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, ".0.140265781439040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781439040", "variance": "INVARIANT"}}, "140265781439488": {"type": "Function", "content": {"typeVars": [".0.140265781439488"], "argTypes": [{"nodeId": ".0.140265781439488"}], "returnType": {"nodeId": ".0.140265781439488"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265781439488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781439488", "variance": "INVARIANT"}}, "140265781439936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756738832"}, {"nodeId": "140265756738944"}, {"nodeId": "140265756739056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265756738832": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265756738944": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265756739056": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265722689824": {"type": "Function", "content": {"typeVars": [".0.140265722689824"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265722689824"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265722689824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265722689824", "variance": "INVARIANT"}}, "140265781440832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265756739168"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140265756739168": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760643376"}}}, "140265760643376": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265781441280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}}, "140265781443968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781903424": {"type": "Function", "content": {"typeVars": [".0.140265781903424"], "argTypes": [{"nodeId": ".0.140265781903424"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": ".0.140265781903424"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140265781903424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781903424", "variance": "INVARIANT"}}, "140265781903872": {"type": "Function", "content": {"typeVars": [".0.140265781903872"], "argTypes": [{"nodeId": ".0.140265781903872"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": ".0.140265781903872"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140265781903872": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781903872", "variance": "INVARIANT"}}, "140265781904320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781904768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781905216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781905664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781906112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781906560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781907008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781907904": {"type": "Function", "content": {"typeVars": [".0.140265781907904"], "argTypes": [{"nodeId": ".0.140265781907904"}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": ".0.140265781907904"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265781907904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781907904", "variance": "INVARIANT"}}, "140265781908352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}}, "140265781908800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265756739280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756739280": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760643376"}}}, "140265781909248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}}, "140265756572048": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781909696"}, {"nodeId": "140265781910144"}, {"nodeId": "140265781910592"}, {"nodeId": "140265781911040"}, {"nodeId": "140265781911488"}, {"nodeId": "140265781911936"}, {"nodeId": "140265781912384"}]}}, "140265781909696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756739504"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756739616"}, {"nodeId": "140265756739728"}, {"nodeId": "140265756739840"}], "returnType": {"nodeId": "140265764440192"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265756739504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765000960"}}}, "140265756739616": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756739728": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756739840": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781910144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756739392"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265785736736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265756739392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765007792"}}}, "140265781910592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756740176"}, {"nodeId": "140265756740512"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265764439136"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265756740176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765006224"}}}, "140265756740512": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265781911040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756740624"}, {"nodeId": "140265756740960"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265764438784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265756740624": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765007680"}}}, "140265756740960": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265781911488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756741072"}, {"nodeId": "140265756741408"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265764438432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265756741072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765009248"}}}, "140265756741408": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265781911936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756741520"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265789854240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265756741520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765007792"}}}, "140265781912384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756741632"}, {"nodeId": "140265756741744"}, {"nodeId": "140265756741856"}], "returnType": {"nodeId": "140265789853888", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265756741632": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756741744": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756741856": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781912832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781913280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781913728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781914176": {"type": "Function", "content": {"typeVars": [".0.140265781914176"], "argTypes": [{"nodeId": ".0.140265781914176"}], "returnType": {"nodeId": ".0.140265781914176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265781914176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781914176", "variance": "INVARIANT"}}, "140265781914624": {"type": "Function", "content": {"typeVars": [".0.140265781914624"], "argTypes": [{"nodeId": ".0.140265781914624"}, {"nodeId": "140265756742080"}], "returnType": {"nodeId": ".0.140265781914624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140265781914624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781914624", "variance": "INVARIANT"}}, "140265756742080": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265760336256"}]}}, "140265760336256": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "content": {"name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722672992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722485600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722486496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722680864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722680640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722680416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722680192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722679968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781590976"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781591424"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781428288"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781428736"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781429184"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781429632"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781430080"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781430528"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781430976"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781431424"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781431872"}, "name": "as_posix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781432320"}, "name": "as_uri"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781432768"}, "name": "is_absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781433216"}, "name": "is_reserved"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781433664"}, "name": "is_relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781434560"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781435008"}, "name": "relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781435456"}, "name": "with_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781435904"}, "name": "with_stem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781436352"}, "name": "with_suffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781436800"}, "name": "joinpath"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722687360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722675264"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781438144"}, "name": "__class_getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265760327104", "args": [{"nodeId": "140265790227200"}]}], "isAbstract": false}}, "140265722672992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722485600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722486496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722680864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722680640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722680416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722680192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722679968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781590976": {"type": "Function", "content": {"typeVars": [".0.140265781590976"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265756737712"}], "returnType": {"nodeId": ".0.140265781590976"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "140265756737712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, ".0.140265781590976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781590976", "variance": "INVARIANT"}}, "140265781591424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781428288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781428736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}, {"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781429184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}, {"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781429632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}, {"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781430080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}, {"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781430528": {"type": "Function", "content": {"typeVars": [".0.140265781430528"], "argTypes": [{"nodeId": ".0.140265781430528"}, {"nodeId": "140265756737824"}], "returnType": {"nodeId": ".0.140265781430528"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265781430528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781430528", "variance": "INVARIANT"}}, "140265756737824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265781430976": {"type": "Function", "content": {"typeVars": [".0.140265781430976"], "argTypes": [{"nodeId": ".0.140265781430976"}, {"nodeId": "140265756737936"}], "returnType": {"nodeId": ".0.140265781430976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265781430976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781430976", "variance": "INVARIANT"}}, "140265756737936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265781431424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781431872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781432320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781432768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781433216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781433664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}, {"nodeId": "140265756738048"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, "140265756738048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265781434560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}}, "140265781435008": {"type": "Function", "content": {"typeVars": [".0.140265781435008"], "argTypes": [{"nodeId": ".0.140265781435008"}, {"nodeId": "140265756738160"}], "returnType": {"nodeId": ".0.140265781435008"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140265781435008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781435008", "variance": "INVARIANT"}}, "140265756738160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265781435456": {"type": "Function", "content": {"typeVars": [".0.140265781435456"], "argTypes": [{"nodeId": ".0.140265781435456"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265781435456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, ".0.140265781435456": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781435456", "variance": "INVARIANT"}}, "140265781435904": {"type": "Function", "content": {"typeVars": [".0.140265781435904"], "argTypes": [{"nodeId": ".0.140265781435904"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265781435904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}}, ".0.140265781435904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781435904", "variance": "INVARIANT"}}, "140265781436352": {"type": "Function", "content": {"typeVars": [".0.140265781436352"], "argTypes": [{"nodeId": ".0.140265781436352"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265781436352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}}, ".0.140265781436352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781436352", "variance": "INVARIANT"}}, "140265781436800": {"type": "Function", "content": {"typeVars": [".0.140265781436800"], "argTypes": [{"nodeId": ".0.140265781436800"}, {"nodeId": "140265756738272"}], "returnType": {"nodeId": ".0.140265781436800"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140265781436800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781436800", "variance": "INVARIANT"}}, "140265756738272": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265722687360": {"type": "Function", "content": {"typeVars": [".0.140265722687360"], "argTypes": [{"nodeId": ".0.140265722687360"}], "returnType": {"nodeId": "140265861263104", "args": [{"nodeId": ".0.140265722687360"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265722687360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265722687360", "variance": "INVARIANT"}}, "140265722675264": {"type": "Function", "content": {"typeVars": [".0.140265722675264"], "argTypes": [{"nodeId": ".0.140265722675264"}], "returnType": {"nodeId": ".0.140265722675264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265722675264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265722675264", "variance": "INVARIANT"}}, "140265781438144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140265781915072": {"type": "Function", "content": {"typeVars": [".0.140265781915072"], "argTypes": [{"nodeId": ".0.140265781915072"}, {"nodeId": "140265756742192"}], "returnType": {"nodeId": ".0.140265781915072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140265781915072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781915072", "variance": "INVARIANT"}}, "140265756742192": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265760336256"}]}}, "140265781916416": {"type": "Function", "content": {"typeVars": [".0.140265781916416"], "argTypes": [{"nodeId": ".0.140265781916416"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": ".0.140265781916416"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}}, ".0.140265781916416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781916416", "variance": "INVARIANT"}}, "140265781916864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781917312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756742304"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}}, "140265756742304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265781917760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756742416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140265756742416": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265781918208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}}, "140265781918656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}}, "140265722776928": {"type": "Function", "content": {"typeVars": [".0.140265722776928"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265722776928"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265722776928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265722776928", "variance": "INVARIANT"}}, "140265773384192": {"type": "Function", "content": {"typeVars": [".0.140265773384192"], "argTypes": [{"nodeId": ".0.140265773384192"}], "returnType": {"nodeId": ".0.140265773384192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265773384192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265773384192", "variance": "INVARIANT"}}, "140265773384640": {"type": "Function", "content": {"typeVars": [".0.140265773384640"], "argTypes": [{"nodeId": ".0.140265773384640"}], "returnType": {"nodeId": ".0.140265773384640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265773384640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265773384640", "variance": "INVARIANT"}}, "140265773385088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265773385536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756742528"}, {"nodeId": "140265756742640"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140265756742528": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756742640": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265773385984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756742752"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}}, "140265756742752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265773386432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140265773386880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265790227200"}, {"nodeId": "140265756742864"}, {"nodeId": "140265756742976"}, {"nodeId": "140265756743088"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}}, "140265756742864": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756742976": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756743088": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265773387776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756743200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140265756743200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265803025760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444064"}, {"nodeId": "140265752087120"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140265752087120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265803026208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444064"}, {"nodeId": "140265752087232"}], "returnType": {"nodeId": "140265760327104", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265752087232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265764443712": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714408512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714407616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714407392"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752085664"}, "items": [{"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "discover"}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714407168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714406496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714406944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714406272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714406048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714405824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714404704"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": true}}, "140265714408512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752086000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140265752086000": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265714407616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}, {"nodeId": "140265752086112"}], "returnType": {"nodeId": "140265760327104", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265752086112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265714407392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265764443712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}}, "140265752085664": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265802411680"}, {"nodeId": "140265802412128"}]}}, "140265802411680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265760330624"}], "returnType": {"nodeId": "140265861259232", "args": [{"nodeId": "140265764443712"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}}, "140265802412128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "140265752086336"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861259232", "args": [{"nodeId": "140265764443712"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}}, "140265752086336": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265714407168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265752086560"}], "returnType": {"nodeId": "140265764444064"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}}, "140265752086560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265714406496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}], "returnType": {"nodeId": "140265764440896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764440896": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781320768"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781321216"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781321664"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781322112"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781322560"}, "name": "get_all"}}, {"kind": "Variable", "content": {"name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714448672"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}}, "140265781320768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440896"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265781321216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440896"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781321664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440896"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781322112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440896"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265781322560": {"type": "Function", "content": {"typeVars": [".-1.140265781322560"], "argTypes": [{"nodeId": "140265764440896"}, {"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781322560"}], "returnType": {"nodeId": "140265751886784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, ".-1.140265781322560": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781322560", "variance": "INVARIANT"}}, "140265751886784": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.140265781322560"}]}}, "140265714448672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440896"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265751886896"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751886896": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}]}}, "140265714406944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}], "returnType": {"nodeId": "140265764442656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764442656": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802404512"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802404960"}, "name": "select"}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714435680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714435008"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265785798080"}]}], "isAbstract": false}}, "140265802404512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764442656"}, {"nodeId": "140265752084768"}], "returnType": {"nodeId": "140265752085552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752084768": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265752085552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760395824"}}}, "140265760395824": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265802404960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764442656"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265764442656"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140265714435680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764442656"}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714435008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764442656"}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785798080": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760395824"}}}, "140265714406272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714406048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}], "returnType": {"nodeId": "140265752086672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752086672": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265760338720"}]}, {"nodeId": "N"}]}}, "140265760338720": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802408544"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802408992"}, "name": "read_binary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802409440"}, "name": "locate"}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760396048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760394256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764443712"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265760336608"}], "isAbstract": false}}, "140265802408544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760338720"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140265802408992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760338720"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802409440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760338720"}], "returnType": {"nodeId": "140265760327104", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760396048": {"type": "Union", "content": {"items": [{"nodeId": "140265764443360"}, {"nodeId": "N"}]}}, "140265764443360": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802409888"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265802409888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443360"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140265760394256": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265760336608": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140265760336256"}], "isAbstract": false}}, "140265714405824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}], "returnType": {"nodeId": "140265752086784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752086784": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265714404704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714753472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752091936"}, {"nodeId": "140265752092048"}], "returnType": {"nodeId": "140265752092160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140265752091936": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752092048": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265752092160": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265714752128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752092272"}], "returnType": {"nodeId": "140265752092384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140265752092272": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752092384": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265760332384": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806933216"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714751456"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764447584"}], "isAbstract": false}}, "140265806933216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760332384"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752092608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}}, "140265752092608": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}]}}, "140265714751456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265752092832"}], "returnType": {"nodeId": "140265751887936"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}}, "140265752092832": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}]}}, "140265751887936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265764447584"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265760332736": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806934112"}, "name": "set_data"}}], "typeVars": [], "bases": [{"nodeId": "140265764447936"}, {"nodeId": "140265764446880"}], "isAbstract": false}}, "140265806934112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760332736"}, {"nodeId": "140265790227200"}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}}, "140265760333088": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764447936"}, {"nodeId": "140265764446880"}], "isAbstract": false}}, "140265760333440": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806934560"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806935008"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806935456"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806935904"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806936352"}, "name": "exec_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806936800"}, "name": "get_code"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806937248"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140265764446528"}], "isAbstract": false}}, "140265806934560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760333440"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}}, "140265806935008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760333440"}, {"nodeId": "140265752092944"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140265752092944": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265806935456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760333440"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265806935904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760333440"}, {"nodeId": "140265764444416"}], "returnType": {"nodeId": "140265785722656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140265806936352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760333440"}, {"nodeId": "140265785722656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140265806936800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760333440"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265806937248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760333440"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764742848": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "_MISSING_TYPE", "members": [{"kind": "Variable", "content": {"name": "MISSING", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764451456"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764450048"}], "isAbstract": false}}, "140265764743200": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "KW_ONLY", "members": [], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265764744256": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "FrozenInstanceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790237056"}], "isAbstract": false}}, "140265764744608": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "InitVar", "members": [{"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807098400"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752498176"}, "items": [{"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265764744608"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265764744608": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764744608", "variance": "INVARIANT"}}, "140265807098400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764744608", "args": [{"nodeId": ".1.140265764744608"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}}, "140265752498176": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265807098848"}, {"nodeId": "140265807099296"}]}}, "140265807098848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140265764744608", "args": [{"nodeId": ".1.140265764744608"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140265807099296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265764744608", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140265785734624": {"type": "Concrete", "content": {"module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802204320"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802205216"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802205664"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802206112"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802206560"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802207008"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802207456"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802207904"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802208352"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802208800"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756738496"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140265785734624"}], "bases": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".1.140265785734624"}]}], "isAbstract": false}}, ".1.140265785734624": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785734624", "variance": "INVARIANT"}}, "140265802204320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, {"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".1.140265785734624"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "data", "encodekey", "decodekey", "encodevalue", "decodevalue"]}}, "140265802205216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, {"nodeId": ".1.140265785734624"}, {"nodeId": ".1.140265785734624"}], "returnType": {"nodeId": ".1.140265785734624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}}, "140265802205664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".1.140265785734624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802206112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, {"nodeId": ".1.140265785734624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265802206560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, {"nodeId": ".1.140265785734624"}], "returnType": {"nodeId": ".1.140265785734624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265802207008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, {"nodeId": ".1.140265785734624"}, {"nodeId": ".1.140265785734624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265802207456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265785734624"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265802207904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265802208352": {"type": "Function", "content": {"typeVars": [".-1.140265802208352", ".-2.140265802208352"], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265802208352"}, {"nodeId": ".-2.140265802208352"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265756743760"}, {"nodeId": "140265756743872"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265802208352": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265802208352", "variance": "INVARIANT"}}, ".-2.140265802208352": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265802208352", "variance": "INVARIANT"}}, "140265756743760": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".-1.140265802208352"}]}}, "140265756743872": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".-2.140265802208352"}]}}, "140265802208800": {"type": "Function", "content": {"typeVars": [".-1.140265802208800", ".-2.140265802208800"], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265802208800"}, {"nodeId": ".-2.140265802208800"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265756743984"}, {"nodeId": "140265756744096"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265802208800": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265802208800", "variance": "INVARIANT"}}, ".-2.140265802208800": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265802208800", "variance": "INVARIANT"}}, "140265756743984": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".-1.140265802208800"}]}}, "140265756744096": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".-2.140265802208800"}]}}, "140265756738496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265802209248"}, {"nodeId": "140265802209696"}]}}, "140265802209248": {"type": "Function", "content": {"typeVars": [".0.140265802209248"], "argTypes": [{"nodeId": ".0.140265802209248"}, {"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".1.140265785734624"}]}], "returnType": {"nodeId": ".0.140265802209248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265802209248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, "def": "140265802209248", "variance": "INVARIANT"}}, "140265802209696": {"type": "Function", "content": {"typeVars": [".0.140265802209696"], "argTypes": [{"nodeId": ".0.140265802209696"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265756744544"}]}], "returnType": {"nodeId": ".0.140265802209696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265802209696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, "def": "140265802209696", "variance": "INVARIANT"}}, "140265756744544": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".1.140265785734624"}]}}, "140265765402080": {"type": "Concrete", "content": {"module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265723199072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723002464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723001568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723000672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723000448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722998432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723000000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723000224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722999552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722999776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722999104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722999328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722998656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722998880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722994400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722996864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722997312"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266624"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}], "isAbstract": false}}, "140265723199072": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265723002464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756744768"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756744768": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723001568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756744880"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756744880": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723000672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756744992"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756744992": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723000448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745104"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745104": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722998432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745216"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745216": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723000000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745328"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745328": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723000224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745440"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745440": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722999552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745552"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745552": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722999776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745664"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745664": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722999104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745776"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745776": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722999328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745888"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745888": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722998656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756746000"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756746000": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722998880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756746112"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756746112": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722994400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756746224"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756746224": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722996864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756746336"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756746336": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722997312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756746448"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756746448": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265785734976": {"type": "Concrete", "content": {"module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722992608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722989920"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265793588128"}, "name": "inode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265793588576"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265793589024"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265793589472"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265793589920"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265793590368"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265793590816"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265785734976"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265785734976": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785734976", "variance": "INVARIANT"}}, "140265722992608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}], "returnType": {"nodeId": ".1.140265785734976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722989920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}], "returnType": {"nodeId": ".1.140265785734976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265793588128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265793588576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140265793589024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140265793589472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265793589920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265756746896"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140265756746896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760643376"}}}, "140265793590368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}], "returnType": {"nodeId": ".1.140265785734976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265793590816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140265760327456": {"type": "Concrete", "content": {"module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265723436880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722966560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722965440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722965664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722964992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722964768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722964096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722963872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722962528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722961856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722961184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722960512"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265723436880": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265722966560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756747232"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756747232": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722965440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756747344"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756747344": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722965664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756747456"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756747456": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722964992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756747568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756747568": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722964768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756747680"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756747680": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722964096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756747792"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756747792": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722963872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756747904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756747904": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722962528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756748016"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756748016": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722961856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756748128"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756748128": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722961184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756748240"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756748240": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722960512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756748352"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756748352": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265760327808": {"type": "Concrete", "content": {"module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265723438560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722958944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722957152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722956928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722956032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722956480"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}], "isAbstract": false}}, "140265723438560": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265722958944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756748912"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756748912": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265722957152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756749024"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756749024": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265722956928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756749136"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756749136": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265722956032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756749248"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756749248": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265722956480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756749360"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756749360": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760328160": {"type": "Concrete", "content": {"module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265723444944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722934240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722932896"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265723444944": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265722934240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756986608"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756986608": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722932896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756986720"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756986720": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265760328512": {"type": "Concrete", "content": {"module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265794164704"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265794165152"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265794165600"}, "name": "close"}}], "typeVars": [{"nodeId": ".1.140265760328512"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265760328512"}]}]}, {"nodeId": "140265764744960", "args": [{"nodeId": "140265760328512", "args": [{"nodeId": ".1.140265760328512"}]}]}], "isAbstract": false}}, ".1.140265760328512": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265760328512", "variance": "INVARIANT"}}, "140265794164704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760328512", "args": [{"nodeId": ".1.140265760328512"}]}], "returnType": {"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265760328512"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265794165152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760328512", "args": [{"nodeId": ".1.140265760328512"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140265794165600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760328512", "args": [{"nodeId": ".1.140265760328512"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760328864": {"type": "Concrete", "content": {"module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265794295776"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265794296224"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140265764440192"}], "isAbstract": false}}, "140265794295776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760328864"}, {"nodeId": "140265764440192"}, {"nodeId": "140265785731456", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}}, "140265785731456": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760641136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760642592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760274048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785913776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785913888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756198048"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777484672"}, "name": "poll"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777484224"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777483776"}, "name": "communicate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777483328"}, "name": "send_signal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777482880"}, "name": "terminate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777482432"}, "name": "kill"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777119296"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782017408"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782016960"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265785731456"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265785731456": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785731456", "variance": "INVARIANT"}}, "140265760641136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265760273488": {"type": "Union", "content": {"items": [{"nodeId": "140265760273040"}, {"nodeId": "140265861263104", "args": [{"nodeId": "140265760272704"}]}]}}, "140265760273040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265760272704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265760642592": {"type": "Union", "content": {"items": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265785731456"}]}, {"nodeId": "N"}]}}, "140265760274048": {"type": "Union", "content": {"items": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265785731456"}]}, {"nodeId": "N"}]}}, "140265785913776": {"type": "Union", "content": {"items": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265785731456"}]}, {"nodeId": "N"}]}}, "140265785913888": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "A"}]}}, "140265756198048": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265756266272"}, {"nodeId": "140265772848448"}, {"nodeId": "140265772848896"}, {"nodeId": "140265772849344"}, {"nodeId": "140265772849792"}, {"nodeId": "140265772850240"}]}}, "140265756266272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265756383648"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756383872"}, {"nodeId": "140265756384096"}, {"nodeId": "140265756384320"}, {"nodeId": "140265756384544"}, {"nodeId": "140265756384656"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265756384992"}, {"nodeId": "140265756385216"}, {"nodeId": "140265756385328"}, {"nodeId": "140265756385552"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861262752", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265756385664"}, {"nodeId": "140265790227200"}, {"nodeId": "140265756385776"}, {"nodeId": "140265756385888"}, {"nodeId": "140265756386000"}, {"nodeId": "140265756386224"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140265756383648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756383872": {"type": "Union", "content": {"items": [{"nodeId": "140265756383760"}, {"nodeId": "N"}]}}, "140265756383760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756384096": {"type": "Union", "content": {"items": [{"nodeId": "140265756383984"}, {"nodeId": "N"}]}}, "140265756383984": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265785912320": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140265861266272"}, {"nodeId": "140265789853888", "args": [{"nodeId": "A"}]}]}}, "140265756384320": {"type": "Union", "content": {"items": [{"nodeId": "140265756384208"}, {"nodeId": "N"}]}}, "140265756384208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756384544": {"type": "Union", "content": {"items": [{"nodeId": "140265756384432"}, {"nodeId": "N"}]}}, "140265756384432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756384656": {"type": "Union", "content": {"items": [{"nodeId": "140265756265824"}, {"nodeId": "N"}]}}, "140265756265824": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140265756384992": {"type": "Union", "content": {"items": [{"nodeId": "140265756384880"}, {"nodeId": "N"}]}}, "140265756384880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756385216": {"type": "Union", "content": {"items": [{"nodeId": "140265756385104"}, {"nodeId": "N"}]}}, "140265756385104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760274272"}}}, "140265760274272": {"type": "Union", "content": {"items": [{"nodeId": "140265861264512", "args": [{"nodeId": "140265790227552"}, {"nodeId": "140265760273824"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265760273376"}]}]}}, "140265760273824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265760273376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756385328": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756385552": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265756385664": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756385776": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756385888": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756386000": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756386224": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265756386112"}]}, {"nodeId": "N"}]}}, "140265756386112": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265772848448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265756386336"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756386560"}, {"nodeId": "140265756386784"}, {"nodeId": "140265756387008"}, {"nodeId": "140265756387232"}, {"nodeId": "140265756387344"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265756387680"}, {"nodeId": "140265756387904"}, {"nodeId": "140265756388016"}, {"nodeId": "140265756388240"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861262752", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265756388352"}, {"nodeId": "140265756388464"}, {"nodeId": "140265790227200"}, {"nodeId": "140265756388576"}, {"nodeId": "140265756388688"}, {"nodeId": "140265756388912"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140265756386336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756386560": {"type": "Union", "content": {"items": [{"nodeId": "140265756386448"}, {"nodeId": "N"}]}}, "140265756386448": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756386784": {"type": "Union", "content": {"items": [{"nodeId": "140265756386672"}, {"nodeId": "N"}]}}, "140265756386672": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756387008": {"type": "Union", "content": {"items": [{"nodeId": "140265756386896"}, {"nodeId": "N"}]}}, "140265756386896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756387232": {"type": "Union", "content": {"items": [{"nodeId": "140265756387120"}, {"nodeId": "N"}]}}, "140265756387120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756387344": {"type": "Union", "content": {"items": [{"nodeId": "140265756265152"}, {"nodeId": "N"}]}}, "140265756265152": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140265756387680": {"type": "Union", "content": {"items": [{"nodeId": "140265756387568"}, {"nodeId": "N"}]}}, "140265756387568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756387904": {"type": "Union", "content": {"items": [{"nodeId": "140265756387792"}, {"nodeId": "N"}]}}, "140265756387792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760274272"}}}, "140265756388016": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756388240": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265756388352": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756388464": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756388576": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756388688": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756388912": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265756388800"}]}, {"nodeId": "N"}]}}, "140265756388800": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265772848896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265756389024"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756389248"}, {"nodeId": "140265756389472"}, {"nodeId": "140265756389696"}, {"nodeId": "140265756389920"}, {"nodeId": "140265756390032"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265756390368"}, {"nodeId": "140265756390592"}, {"nodeId": "0"}, {"nodeId": "140265756390928"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861262752", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265756391040"}, {"nodeId": "140265756391152"}, {"nodeId": "140265756391264"}, {"nodeId": "140265756391376"}, {"nodeId": "140265756391488"}, {"nodeId": "140265756391712"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140265756389024": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756389248": {"type": "Union", "content": {"items": [{"nodeId": "140265756389136"}, {"nodeId": "N"}]}}, "140265756389136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756389472": {"type": "Union", "content": {"items": [{"nodeId": "140265756389360"}, {"nodeId": "N"}]}}, "140265756389360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756389696": {"type": "Union", "content": {"items": [{"nodeId": "140265756389584"}, {"nodeId": "N"}]}}, "140265756389584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756389920": {"type": "Union", "content": {"items": [{"nodeId": "140265756389808"}, {"nodeId": "N"}]}}, "140265756389808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756390032": {"type": "Union", "content": {"items": [{"nodeId": "140265756266496"}, {"nodeId": "N"}]}}, "140265756266496": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140265756390368": {"type": "Union", "content": {"items": [{"nodeId": "140265756390256"}, {"nodeId": "N"}]}}, "140265756390256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756390592": {"type": "Union", "content": {"items": [{"nodeId": "140265756390480"}, {"nodeId": "N"}]}}, "140265756390480": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760274272"}}}, "140265756390928": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265756391040": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756391152": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756391264": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756391376": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756391488": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756391712": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265756391600"}]}, {"nodeId": "N"}]}}, "140265756391600": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265772849344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265756391824"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756392048"}, {"nodeId": "140265756392272"}, {"nodeId": "140265756392496"}, {"nodeId": "140265756392720"}, {"nodeId": "140265756392832"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265756393168"}, {"nodeId": "140265756442688"}, {"nodeId": "140265756442800"}, {"nodeId": "140265756443024"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861262752", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "0"}, {"nodeId": "140265756443248"}, {"nodeId": "140265756443360"}, {"nodeId": "140265756443472"}, {"nodeId": "140265756443584"}, {"nodeId": "140265756443808"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140265756391824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756392048": {"type": "Union", "content": {"items": [{"nodeId": "140265756391936"}, {"nodeId": "N"}]}}, "140265756391936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756392272": {"type": "Union", "content": {"items": [{"nodeId": "140265756392160"}, {"nodeId": "N"}]}}, "140265756392160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756392496": {"type": "Union", "content": {"items": [{"nodeId": "140265756392384"}, {"nodeId": "N"}]}}, "140265756392384": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756392720": {"type": "Union", "content": {"items": [{"nodeId": "140265756392608"}, {"nodeId": "N"}]}}, "140265756392608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756392832": {"type": "Union", "content": {"items": [{"nodeId": "140265756266720"}, {"nodeId": "N"}]}}, "140265756266720": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140265756393168": {"type": "Union", "content": {"items": [{"nodeId": "140265756393056"}, {"nodeId": "N"}]}}, "140265756393056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756442688": {"type": "Union", "content": {"items": [{"nodeId": "140265756393280"}, {"nodeId": "N"}]}}, "140265756393280": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760274272"}}}, "140265756442800": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756443024": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265756443248": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756443360": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756443472": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756443584": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756443808": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265756443696"}]}, {"nodeId": "N"}]}}, "140265756443696": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265772849792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265756443920"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756444144"}, {"nodeId": "140265756444368"}, {"nodeId": "140265756444592"}, {"nodeId": "140265756444816"}, {"nodeId": "140265756444928"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265756445264"}, {"nodeId": "140265756445488"}, {"nodeId": "140265756445824"}, {"nodeId": "140265756445936"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861262752", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265756446272"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "140265756446160"}, {"nodeId": "140265756446384"}, {"nodeId": "140265756446608"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140265756443920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756444144": {"type": "Union", "content": {"items": [{"nodeId": "140265756444032"}, {"nodeId": "N"}]}}, "140265756444032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756444368": {"type": "Union", "content": {"items": [{"nodeId": "140265756444256"}, {"nodeId": "N"}]}}, "140265756444256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756444592": {"type": "Union", "content": {"items": [{"nodeId": "140265756444480"}, {"nodeId": "N"}]}}, "140265756444480": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756444816": {"type": "Union", "content": {"items": [{"nodeId": "140265756444704"}, {"nodeId": "N"}]}}, "140265756444704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756444928": {"type": "Union", "content": {"items": [{"nodeId": "140265756266944"}, {"nodeId": "N"}]}}, "140265756266944": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140265756445264": {"type": "Union", "content": {"items": [{"nodeId": "140265756445152"}, {"nodeId": "N"}]}}, "140265756445152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756445488": {"type": "Union", "content": {"items": [{"nodeId": "140265756445376"}, {"nodeId": "N"}]}}, "140265756445376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760274272"}}}, "140265756445824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265756445936": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265756446272": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265756446160": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756446384": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756446608": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265756446496"}]}, {"nodeId": "N"}]}}, "140265756446496": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265772850240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": "A"}]}, {"nodeId": "140265756446832"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756447056"}, {"nodeId": "140265756447280"}, {"nodeId": "140265756447504"}, {"nodeId": "140265756447728"}, {"nodeId": "140265756447840"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265756448176"}, {"nodeId": "140265756448400"}, {"nodeId": "140265756448512"}, {"nodeId": "140265756448736"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861262752", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265756448848"}, {"nodeId": "140265756448960"}, {"nodeId": "140265756449072"}, {"nodeId": "140265756449184"}, {"nodeId": "140265756449296"}, {"nodeId": "140265756449520"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140265756446832": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756447056": {"type": "Union", "content": {"items": [{"nodeId": "140265756446944"}, {"nodeId": "N"}]}}, "140265756446944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756447280": {"type": "Union", "content": {"items": [{"nodeId": "140265756447168"}, {"nodeId": "N"}]}}, "140265756447168": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756447504": {"type": "Union", "content": {"items": [{"nodeId": "140265756447392"}, {"nodeId": "N"}]}}, "140265756447392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756447728": {"type": "Union", "content": {"items": [{"nodeId": "140265756447616"}, {"nodeId": "N"}]}}, "140265756447616": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756447840": {"type": "Union", "content": {"items": [{"nodeId": "140265756267168"}, {"nodeId": "N"}]}}, "140265756267168": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140265756448176": {"type": "Union", "content": {"items": [{"nodeId": "140265756448064"}, {"nodeId": "N"}]}}, "140265756448064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756448400": {"type": "Union", "content": {"items": [{"nodeId": "140265756448288"}, {"nodeId": "N"}]}}, "140265756448288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760274272"}}}, "140265756448512": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756448736": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265756448848": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756448960": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756449072": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756449184": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756449296": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756449520": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265756449408"}]}, {"nodeId": "N"}]}}, "140265756449408": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265777484672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}], "returnType": {"nodeId": "140265756449632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756449632": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265777484224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}, {"nodeId": "140265756449744"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "140265756449744": {"type": "Union", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "N"}]}}, "140265777483776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}, {"nodeId": "140265756449856"}, {"nodeId": "140265756449968"}], "returnType": {"nodeId": "140265756450192"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}}, "140265756449856": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785731456"}, {"nodeId": "N"}]}}, "140265756449968": {"type": "Union", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "N"}]}}, "140265756450192": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265785731456"}, {"nodeId": ".1.140265785731456"}]}}, "140265777483328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}}, "140265777482880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265777482432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265777119296": {"type": "Function", "content": {"typeVars": [".0.140265777119296"], "argTypes": [{"nodeId": ".0.140265777119296"}], "returnType": {"nodeId": ".0.140265777119296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265777119296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}, "def": "140265777119296", "variance": "INVARIANT"}}, "140265782017408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}, {"nodeId": "140265756450416"}, {"nodeId": "140265756450528"}, {"nodeId": "140265756450640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265756450416": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265756450528": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265756450640": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265782016960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140265794296224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760328864"}], "returnType": {"nodeId": "140265751871888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751871888": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265760329216": {"type": "Concrete", "content": {"module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265718411808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723163168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723164064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723164288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723164512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723164736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266624"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266624"}]}], "isAbstract": false}}, "140265718411808": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265723163168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751873456"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751873456": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723164064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751872896"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751872896": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723164288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751873232"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751873232": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723164512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751873568"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751873568": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723164736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751873680"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751873680": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265760329568": {"type": "Concrete", "content": {"module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265718414272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718563104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718563776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718564000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718564224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718564448"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265718414272": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265718563104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751875136"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751875136": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265718563776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751875472"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751875472": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265718564000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751875808"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751875808": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265718564224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751875920"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751875920": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265718564448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751876032"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751876032": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265760329920": {"type": "Concrete", "content": {"module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265718596544"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265794445920"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718566240"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265718596544": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265794445920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265751879728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}}, "140265751879728": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}]}}, "140265718566240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751879504"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751879504": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}]}}, "140265785733216": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785786432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785786544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789644960"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265785786432": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265785786544": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265789644960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733216"}, {"nodeId": "140265790227200"}, {"nodeId": "140265756454224"}, {"nodeId": "140265756453888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}}, "140265756454224": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265756453888": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265785733568": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789645408"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140265861266272"}], "isAbstract": false}}, "140265789645408": {"type": "Function", "content": {"typeVars": [".0.140265789645408"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265789645408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}}, ".0.140265789645408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785733568"}, "def": "140265789645408", "variance": "INVARIANT"}}, "140265764916032": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789646752"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789647200"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789647648"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["close", "seek", "write"]}}, "140265789646752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764916032"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265789647200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764916032"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265789647648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764916032"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764916384": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789648096"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789648544"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789648992"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["close", "read", "seek"]}}, "140265789648096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764916384"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265789648544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764916384"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265789648992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764916384"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760333792": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764916032"}, {"nodeId": "140265764916384"}], "protocolMembers": ["close", "read", "seek", "write"]}}, "140265764916736": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789649440"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, "140265789649440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764916736"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265747825152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140265747825152": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}]}}, "140265764917088": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789649888"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, "140265789649888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764917088"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265747825376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140265747825376": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265764917440": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789650336"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, "140265789650336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764917440"}, {"nodeId": "140265764916384"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265760335552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140265760335552": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764916384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802749024"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802749472"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802749920"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802750368"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802750816"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802751264"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802751712"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802752160"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802752608"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802753056"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140265764918848"}], "isAbstract": false}}, "140265802749024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}, {"nodeId": "140265764916384"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140265802749472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}}, "140265802749920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}, {"nodeId": "140265747831536"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}}, "140265747831536": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802750368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}, {"nodeId": "140265747831648"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}}, "140265747831648": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802750816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802751264": {"type": "Function", "content": {"typeVars": [".0.140265802751264"], "argTypes": [{"nodeId": ".0.140265802751264"}], "returnType": {"nodeId": ".0.140265802751264"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265802751264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760335552"}, "def": "140265802751264", "variance": "INVARIANT"}}, "140265802751712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}, {"nodeId": "140265747831872"}, {"nodeId": "140265747831984"}, {"nodeId": "140265747832096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265747831872": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265747831984": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265747832096": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265802752160": {"type": "Function", "content": {"typeVars": [".0.140265802752160"], "argTypes": [{"nodeId": ".0.140265802752160"}], "returnType": {"nodeId": ".0.140265802752160"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265802752160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760335552"}, "def": "140265802752160", "variance": "INVARIANT"}}, "140265802752608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802753056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752614880"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265752614880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265764918848": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802246048"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802246496"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265802246048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764918848"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265747829408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140265747829408": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}]}}, "140265802246496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764918848"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265747829632"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140265747829632": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265764917792": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789650784"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, "140265789650784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764917792"}, {"nodeId": "140265764916032"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265760335200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140265760335200": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764916032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802745888"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802746336"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802746784"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802747232"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802747680"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802748128"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802748576"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140265764918848"}], "isAbstract": false}}, "140265802745888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335200"}, {"nodeId": "140265764916032"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140265802746336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}}, "140265802746784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335200"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140265802747232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802747680": {"type": "Function", "content": {"typeVars": [".0.140265802747680"], "argTypes": [{"nodeId": ".0.140265802747680"}], "returnType": {"nodeId": ".0.140265802747680"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265802747680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760335200"}, "def": "140265802747680", "variance": "INVARIANT"}}, "140265802748128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335200"}, {"nodeId": "140265747830976"}, {"nodeId": "140265747831088"}, {"nodeId": "140265747831200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265747830976": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265747831088": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265747831200": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265802748576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752614432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265752614432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265764918144": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789651232"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, "140265789651232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764918144"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265764919200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140265764919200": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802246944"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702079648"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802247840"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802248288"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802248736"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": true}}, "140265802246944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140265702079648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140265802247840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802248288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919200"}], "returnType": {"nodeId": "140265747829744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747829744": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265802248736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919200"}, {"nodeId": "140265747829856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140265747829856": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265764918496": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789651680"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, "140265789651680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764918496"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265764919552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140265760334144": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265702172576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265702169440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265702169216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265702168320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265702168768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265702166976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802237984"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}], "isAbstract": false}}, "140265702172576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265747825600"}], "returnType": {"nodeId": "140265764916736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747825600": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}]}}, "140265702169440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265747825712"}], "returnType": {"nodeId": "140265764917088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747825712": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}]}}, "140265702169216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265747825824"}], "returnType": {"nodeId": "140265764917440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747825824": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}]}}, "140265702168320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265747825936"}], "returnType": {"nodeId": "140265764917792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747825936": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}]}}, "140265702168768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265747826048"}], "returnType": {"nodeId": "140265764918144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747826048": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}]}}, "140265702166976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265747826160"}], "returnType": {"nodeId": "140265764918496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747826160": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}]}}, "140265802237984": {"type": "Function", "content": {"typeVars": [".0.140265802237984"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265747826384"}, {"nodeId": "140265747826496"}, {"nodeId": "140265747826608"}, {"nodeId": "140265747826720"}, {"nodeId": "140265747826832"}, {"nodeId": "140265747826944"}], "returnType": {"nodeId": ".0.140265802237984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name", "_is_text_encoding"]}}, "140265747826384": {"type": "Union", "content": {"items": [{"nodeId": "140265764917440"}, {"nodeId": "N"}]}}, "140265747826496": {"type": "Union", "content": {"items": [{"nodeId": "140265764917792"}, {"nodeId": "N"}]}}, "140265747826608": {"type": "Union", "content": {"items": [{"nodeId": "140265764918144"}, {"nodeId": "N"}]}}, "140265747826720": {"type": "Union", "content": {"items": [{"nodeId": "140265764918496"}, {"nodeId": "N"}]}}, "140265747826832": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265747826944": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, ".0.140265802237984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265747824928"}, "def": "140265802237984", "variance": "INVARIANT"}}, "140265747824928": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}]}}, "140265760334496": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802251424"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702077856"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802744096"}, "name": "encode"}}], "typeVars": [], "bases": [{"nodeId": "140265764919200"}], "isAbstract": true}}, "140265802251424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760334496"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140265702077856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760334496"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265747830528"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140265747830528": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}]}}, "140265802744096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760334496"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140265760334848": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802744544"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702076736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802745440"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140265764919552"}], "isAbstract": true}}, "140265802744544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760334848"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140265702076736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760334848"}, {"nodeId": "140265789865152"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265747830752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140265747830752": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265802745440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760334848"}, {"nodeId": "140265789865152"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140265760335904": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760333792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802753504"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802753952"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802754400"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802754848"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802755296"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802755744"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802756192"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802756640"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802757088"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802757536"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802757984"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802758432"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802758880"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802759328"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802759776"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802858784"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802859232"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802859680"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802860128"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802860576"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802861024"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802861472"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140265789854592"}], "isAbstract": false}}, "140265802753504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265760333792"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}}, "140265802753952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140265802754400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265747832432"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140265747832432": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802754848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265747832544"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140265747832544": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802755296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802755744": {"type": "Function", "content": {"typeVars": [".0.140265802755744"], "argTypes": [{"nodeId": ".0.140265802755744"}], "returnType": {"nodeId": ".0.140265802755744"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265802755744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760335904"}, "def": "140265802755744", "variance": "INVARIANT"}}, "140265802756192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140265802756640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140265802757088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802757536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140265802757984": {"type": "Function", "content": {"typeVars": [".0.140265802757984"], "argTypes": [{"nodeId": ".0.140265802757984"}], "returnType": {"nodeId": ".0.140265802757984"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265802757984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760335904"}, "def": "140265802757984", "variance": "INVARIANT"}}, "140265802758432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265747832768"}, {"nodeId": "140265747832880"}, {"nodeId": "140265747832992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265747832768": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265747832880": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265747832992": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265802758880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265802759328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802759776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802858784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802859232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802859680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802860128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265747833216"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140265747833216": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802860576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802861024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802861472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764919904": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802861920"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802862368"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802862816"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802863264"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802863712"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802864160"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802864608"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802865056"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802865504"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802865952"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802866400"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802866848"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802867296"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802867744"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802868192"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802868640"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802869088"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802869536"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802869984"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802870432"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802870880"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802871328"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140265789854240"}], "isAbstract": false}}, "140265802861920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265760333792"}, {"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"]}}, "140265802862368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140265802862816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265747833328"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140265747833328": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802863264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265747833440"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227552"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140265747833440": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802863712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802864160": {"type": "Function", "content": {"typeVars": [".0.140265802864160"], "argTypes": [{"nodeId": ".0.140265802864160"}], "returnType": {"nodeId": ".0.140265802864160"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265802864160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764919904"}, "def": "140265802864160", "variance": "INVARIANT"}}, "140265802864608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140265802865056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227552"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140265802865504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802865952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265802866400": {"type": "Function", "content": {"typeVars": [".0.140265802866400"], "argTypes": [{"nodeId": ".0.140265802866400"}], "returnType": {"nodeId": ".0.140265802866400"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265802866400": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764919904"}, "def": "140265802866400", "variance": "INVARIANT"}}, "140265802866848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265747833776"}, {"nodeId": "140265747833888"}, {"nodeId": "140265747834000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265747833776": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265747833888": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265747834000": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265802867296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140265802867744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802868192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802868640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802869088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802869536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802869984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265747834112"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140265747834112": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802870432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802870880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802871328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764441600": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714447328"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265789882784"}], "isAbstract": false}}, "140265714447328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764441600"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764442304": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802402272"}, "name": "load"}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714438368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714437696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714438144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785797968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802404064"}, "name": "matches"}}], "typeVars": [], "bases": [{"nodeId": "140265764441952"}], "isAbstract": false}}, "140265802402272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265752084880"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752084880": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265714438368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265752085104"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752085104": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265714437696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265752085216"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752085216": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265714438144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265752085328"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752085328": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265785797968": {"type": "Union", "content": {"items": [{"nodeId": "140265764443712"}, {"nodeId": "N"}]}}, "140265802404064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265752085440"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140265752085440": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265764441952": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785796848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785796400"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773811744"}, "name": "_replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773822496"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773823168"}, "name": "_asdict"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773823392"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}], "isAbstract": false}}, "140265785796848": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265785796400": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265773811744": {"type": "Function", "content": {"typeVars": [".-1.140265773811744"], "argTypes": [{"nodeId": ".-1.140265773811744"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".-1.140265773811744"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}}, ".-1.140265773811744": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140265785796624"}, "def": "140265773811744", "variance": "INVARIANT"}}, "140265785796624": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265773822496": {"type": "Function", "content": {"typeVars": [".-1.140265773822496"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".-1.140265773822496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}}, ".-1.140265773822496": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140265785796624"}, "def": "140265773822496", "variance": "INVARIANT"}}, "140265773823168": {"type": "Function", "content": {"typeVars": [".-1.140265773823168"], "argTypes": [{"nodeId": ".-1.140265773823168"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}}, ".-1.140265773823168": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140265785796624"}, "def": "140265773823168", "variance": "INVARIANT"}}, "140265773823392": {"type": "Function", "content": {"typeVars": [".-1.140265773823392"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140265773823392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["_cls", "iterable"]}}, ".-1.140265773823392": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140265785796624"}, "def": "140265773823392", "variance": "INVARIANT"}}, "140265764443008": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "content": {"name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714411200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714410752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714410528"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265751887456"}, "items": [{"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "select"}}], "typeVars": [], "bases": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265764442656"}]}], "isAbstract": false}}, "140265714411200": {"type": "Function", "content": {"typeVars": [".0.140265714411200"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265752085776"}]}], "returnType": {"nodeId": ".0.140265714411200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}}, "140265752085776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760395824"}}}, ".0.140265714411200": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764443008"}, "def": "140265714411200", "variance": "INVARIANT"}}, "140265714410752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443008"}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714410528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443008"}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751887456": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265802407648"}, {"nodeId": "140265802408096"}]}}, "140265802407648": {"type": "Function", "content": {"typeVars": [".0.140265802407648"], "argTypes": [{"nodeId": ".0.140265802407648"}], "returnType": {"nodeId": ".0.140265802407648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265802407648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764443008"}, "def": "140265802407648", "variance": "INVARIANT"}}, "140265802408096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443008"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265764442656"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140265760330272": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "content": {"type": {"nodeId": "140265760330624"}}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714404928"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764447232"}], "isAbstract": true}}, "140265714404928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760330272"}, {"nodeId": "140265760330624"}], "returnType": {"nodeId": "140265861259232", "args": [{"nodeId": "140265764443712"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}}, "140265760330976": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714403136"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803024864"}, "name": "invalidate_caches"}}], "typeVars": [], "bases": [{"nodeId": "140265760330272"}], "isAbstract": false}}, "140265714403136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265760330624"}], "returnType": {"nodeId": "140265861259232", "args": [{"nodeId": "140265764444064"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}}, "140265803024864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760330976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140265785730048": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140265785730048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140265785730048"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803033600"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803034048"}, "name": "check_returncode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803034496"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265785730048"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265785730048": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785730048", "variance": "INVARIANT"}}, "140265803033600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785730048", "args": [{"nodeId": ".1.140265785730048"}]}, {"nodeId": "140265756197600"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756197712"}, {"nodeId": "140265756197824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}}, "140265756197600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756197712": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785730048"}, {"nodeId": "N"}]}}, "140265756197824": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785730048"}, {"nodeId": "N"}]}}, "140265803034048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785730048", "args": [{"nodeId": ".1.140265785730048"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265803034496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140265785730400": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265785730752": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777487808"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760641024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760274384"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265785730400"}], "isAbstract": false}}, "140265777487808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785730752"}, {"nodeId": "140265756382864"}, {"nodeId": "140265861266624"}, {"nodeId": "140265756382976"}, {"nodeId": "140265756383088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}}, "140265756382864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756382976": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265756383088": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265760641024": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265760274384": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265785731104": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777488256"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265785730400"}], "isAbstract": false}}, "140265777488256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731104"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756383200"}, {"nodeId": "140265756383312"}, {"nodeId": "140265756383424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}}, "140265756383200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756383312": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265756383424": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265785731808": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265785732160": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265785912656"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760578064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265731848032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782013152"}, "name": "opengroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782012480"}, "name": "closegroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782010016"}, "name": "checkgroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782009792"}, "name": "checklookbehindgroup"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265785912656": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265760578064": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265731848032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732160"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265782013152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732160"}, {"nodeId": "140265756451424"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140265756451424": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265782012480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732160"}, {"nodeId": "140265861266272"}, {"nodeId": "140265785732512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}}, "140265785732512": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265760640576"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760651216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785732160"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782011360"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782009568"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782008224"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782008896"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782009120"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782008448"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782005984"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782005760"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782007328"}, "name": "getwidth"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265760640576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760641808"}}}, "140265760641808": {"type": "Tuple", "content": {"items": [{"nodeId": "140265785733568"}, {"nodeId": "140265760640688"}]}}, "140265760640688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760641584"}}}, "140265760641584": {"type": "Union", "content": {"items": [{"nodeId": "140265760639792"}, {"nodeId": "140265760640352"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265785732512"}]}, {"nodeId": "140265760641248"}, {"nodeId": "140265760641472"}]}}, "140265760639792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790229312", "args": [{"nodeId": "140265785914448"}]}}}, "140265785914448": {"type": "Tuple", "content": {"items": [{"nodeId": "140265785733568"}, {"nodeId": "140265861266272"}]}}, "140265760640352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760275504"}}}, "140265760275504": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265785732512"}]}]}}, "140265760641248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760275392"}}}, "140265760275392": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265785732512"}, {"nodeId": "140265785732512"}]}}, "140265760641472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760639568"}}}, "140265760639568": {"type": "Tuple", "content": {"items": [{"nodeId": "140265785913104"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265785732512"}]}}, "140265785913104": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265760651216": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265782011360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}, {"nodeId": "140265785732160"}, {"nodeId": "140265756451648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}}, "140265756451648": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265756451536"}]}, {"nodeId": "N"}]}}, "140265756451536": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760641808"}}}, "140265782009568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}}, "140265782008224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265782008896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}, {"nodeId": "140265756451872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265756451872": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790228608"}]}}, "140265782009120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}, {"nodeId": "140265756450304"}], "returnType": {"nodeId": "140265756451984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265756450304": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790228608"}]}}, "140265756451984": {"type": "Union", "content": {"items": [{"nodeId": "140265785732512"}, {"nodeId": "140265756452208"}]}}, "140265756452208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760641808"}}}, "140265782008448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}, {"nodeId": "140265756452320"}, {"nodeId": "140265756451760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265756452320": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790228608"}]}}, "140265756451760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760641808"}}}, "140265782005984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756452432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}}, "140265756452432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760641808"}}}, "140265782005760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}, {"nodeId": "140265756452880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}}, "140265756452880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760641808"}}}, "140265782007328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}], "returnType": {"nodeId": "140265756452096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756452096": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265782010016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732160"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}}, "140265782009792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732160"}, {"nodeId": "140265861266272"}, {"nodeId": "140265785732864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}}, "140265785732864": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "content": {"name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760642144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782006656"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782005536"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782004192"}, "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782004864"}, "name": "getwhile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782005088"}, "name": "getuntil"}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265731843328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807089888"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807089440"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807088992"}, "name": "error"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265760642144": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265782006656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140265782005536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}}, "140265782004192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}], "returnType": {"nodeId": "140265756452544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756452544": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265782004864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}}, "140265782005088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}}, "140265731843328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265807089888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265807089440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}}, "140265807088992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265785733216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}}, "140265765095904": {"type": "Concrete", "content": {"module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265772856512"}, "name": "size"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265772856512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765095904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764441248": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781323456"}, "name": "joinpath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781323904"}, "name": "parent"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781324352"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781324800"}, "name": "__truediv__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}}, "140265781323456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764441248"}], "returnType": {"nodeId": "140265764441248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781323904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764441248"}], "returnType": {"nodeId": "140265764441248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781324352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764441248"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781324800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764441248"}], "returnType": {"nodeId": "140265764441248"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265764452864": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764451808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760646400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760400304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265764735104"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781326144"}, "name": "is_multipart"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781326592"}, "name": "set_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781327040"}, "name": "get_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781327488"}, "name": "attach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781327936"}, "name": "get_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781328384"}, "name": "set_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781328832"}, "name": "set_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781329280"}, "name": "get_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781772352"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781772800"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781773248"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781773696"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781774144"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781774592"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781775040"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781775488"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781775936"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752099104"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752317056"}, "items": [{"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781778176"}, "name": "add_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781778624"}, "name": "replace_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781779072"}, "name": "get_content_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781779520"}, "name": "get_content_maintype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781779968"}, "name": "get_content_subtype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781780416"}, "name": "get_default_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781780864"}, "name": "set_default_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752320528"}, "items": [{"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_params"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752321088"}, "items": [{"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781783104"}, "name": "del_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781783552"}, "name": "set_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752321872"}, "items": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_filename"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752323440"}, "items": [{"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_boundary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781785792"}, "name": "set_boundary"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752323328"}, "items": [{"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_content_charset"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752323552"}, "items": [{"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_charsets"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781788032"}, "name": "walk"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781575744"}, "name": "get_content_disposition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781576192"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781576640"}, "name": "as_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781577088"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781577536"}, "name": "set_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781577984"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781578432"}, "name": "set_raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781578880"}, "name": "raw_items"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265764451808": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764634688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764635024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773568000"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773568448"}, "name": "clone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773568896"}, "name": "handle_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773569344"}, "name": "register_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773569792"}, "name": "header_max_count"}}, {"kind": "Variable", "content": {"name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710335392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710334944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710334720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710334496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710332480"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": true}}, "140265764634688": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265764635024": {"type": "Union", "content": {"items": [{"nodeId": "140265764886272"}, {"nodeId": "N"}]}}, "140265764886272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}], "returnType": {"nodeId": "140265764452864"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265773568000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265752316832"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265752316944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory"]}}, "140265752316832": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752316944": {"type": "Union", "content": {"items": [{"nodeId": "140265751893088"}, {"nodeId": "N"}]}}, "140265751893088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}], "returnType": {"nodeId": "140265764452864"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265773568448": {"type": "Function", "content": {"typeVars": [".0.140265773568448"], "argTypes": [{"nodeId": ".0.140265773568448"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265773568448"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}}, ".0.140265773568448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451808"}, "def": "140265773568448", "variance": "INVARIANT"}}, "140265773568896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265764452864"}, {"nodeId": "140265764735104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140265764735104": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773566432"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265790241632"}], "isAbstract": false}}, "140265773566432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764735104"}, {"nodeId": "140265752494256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}}, "140265752494256": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265773569344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265764452864"}, {"nodeId": "140265764735104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140265773569792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752317280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "140265752317280": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265710335392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265752317504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140265752317504": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265710334944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752317728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265752317728": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265710334720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265710334496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265710332480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265760646400": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265760400304": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781326144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781326592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}}, "140265781327040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265752319072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752319072": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781327488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265764452864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}}, "140265781327936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265752319184"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}}, "140265752319184": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265781328384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265752319408"}, {"nodeId": "140265752319632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}}, "140265752319408": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764634912"}}}, "140265764634912": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265764452864"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}]}}, "140265752319632": {"type": "Union", "content": {"items": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265764742496": {"type": "Concrete", "content": {"module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764636816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764636928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764637040"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773491904"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773492352"}, "name": "get_body_encoding"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773492800"}, "name": "get_output_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773493248"}, "name": "header_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773493696"}, "name": "header_encode_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773494144"}, "name": "body_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773494592"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773495040"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265764636816": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265764636928": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265764637040": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265773491904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}}, "140265773492352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265773492800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}], "returnType": {"nodeId": "140265752495824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752495824": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265773493248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140265773493696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861259584", "args": [{"nodeId": "140265861266272"}]}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}}, "140265773494144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140265773494592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265773495040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781328832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265752319520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}}, "140265752319520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760400080"}}}, "140265760400080": {"type": "Union", "content": {"items": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781329280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265752319744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752319744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760400080"}}}, "140265781772352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265781772800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781773248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265781773696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752319856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752319856": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781774144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752319968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265752319968": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781774592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781775040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781775488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265752320080"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752320080": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781775936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265752320416"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752320416": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265752320192"}]}}, "140265752320192": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265752099104": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781776384"}, {"nodeId": "140265781776832"}]}}, "140265781776384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265752320752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140265752320752": {"type": "Union", "content": {"items": [{"nodeId": "140265752320640"}, {"nodeId": "N"}]}}, "140265752320640": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781776832": {"type": "Function", "content": {"typeVars": [".-1.140265781776832"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781776832"}], "returnType": {"nodeId": "140265752320976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140265781776832": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781776832", "variance": "INVARIANT"}}, "140265752320976": {"type": "Union", "content": {"items": [{"nodeId": "140265752320864"}, {"nodeId": ".-1.140265781776832"}]}}, "140265752320864": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265752317056": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781777280"}, {"nodeId": "140265781777728"}]}}, "140265781777280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265752321312"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140265752321312": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265752321200"}]}, {"nodeId": "N"}]}}, "140265752321200": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781777728": {"type": "Function", "content": {"typeVars": [".-1.140265781777728"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781777728"}], "returnType": {"nodeId": "140265752321536"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140265781777728": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781777728", "variance": "INVARIANT"}}, "140265752321536": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265752321424"}]}, {"nodeId": ".-1.140265781777728"}]}}, "140265752321424": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781778176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752321648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}}, "140265752321648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764638160"}}}, "140265764638160": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}, {"nodeId": "140265764638384"}]}}, "140265764638384": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265764637936"}, {"nodeId": "140265790227200"}]}}, "140265764637936": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781778624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752321760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}}, "140265752321760": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781779072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781779520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781779968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781780416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781780864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}}, "140265752320528": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781781312"}, {"nodeId": "140265781781760"}]}}, "140265781781312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "N"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265752322208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, "140265752322208": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265752322096"}]}, {"nodeId": "N"}]}}, "140265752322096": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265781781760": {"type": "Function", "content": {"typeVars": [".-1.140265781781760"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": ".-1.140265781781760"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265752322544"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, ".-1.140265781781760": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781781760", "variance": "INVARIANT"}}, "140265752322544": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265752322432"}]}, {"nodeId": ".-1.140265781781760"}]}}, "140265752322432": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265752321088": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781782208"}, {"nodeId": "140265781782656"}]}}, "140265781782208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265752322880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, "140265752322880": {"type": "Union", "content": {"items": [{"nodeId": "140265752322768"}, {"nodeId": "N"}]}}, "140265752322768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764637488"}}}, "140265764637488": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265764636480"}]}}, "140265764636480": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764637712"}, {"nodeId": "140265764637600"}, {"nodeId": "140265790227200"}]}}, "140265764637712": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265764637600": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781782656": {"type": "Function", "content": {"typeVars": [".-1.140265781782656"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781782656"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265752323216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, ".-1.140265781782656": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781782656", "variance": "INVARIANT"}}, "140265752323216": {"type": "Union", "content": {"items": [{"nodeId": "140265752322656"}, {"nodeId": ".-1.140265781782656"}]}}, "140265752322656": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764637488"}}}, "140265781783104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}}, "140265781783552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}}, "140265752321872": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781784000"}, {"nodeId": "140265781784448"}]}}, "140265781784000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265752322992"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140265752322992": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781784448": {"type": "Function", "content": {"typeVars": [".-1.140265781784448"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": ".-1.140265781784448"}], "returnType": {"nodeId": "140265752323104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140265781784448": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781784448", "variance": "INVARIANT"}}, "140265752323104": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781784448"}]}}, "140265752323440": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781784896"}, {"nodeId": "140265781785344"}]}}, "140265781784896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265752323664"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140265752323664": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781785344": {"type": "Function", "content": {"typeVars": [".-1.140265781785344"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": ".-1.140265781785344"}], "returnType": {"nodeId": "140265752323776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140265781785344": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781785344", "variance": "INVARIANT"}}, "140265752323776": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781785344"}]}}, "140265781785792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}}, "140265752323328": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781786240"}, {"nodeId": "140265781786688"}]}}, "140265781786240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265752324000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752324000": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781786688": {"type": "Function", "content": {"typeVars": [".-1.140265781786688"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": ".-1.140265781786688"}], "returnType": {"nodeId": "140265752324112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140265781786688": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781786688", "variance": "INVARIANT"}}, "140265752324112": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781786688"}]}}, "140265752323552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781787136"}, {"nodeId": "140265781787584"}]}}, "140265781787136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265752324336"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140265752324336": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781787584": {"type": "Function", "content": {"typeVars": [".-1.140265781787584"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": ".-1.140265781787584"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265752324448"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140265781787584": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781787584", "variance": "INVARIANT"}}, "140265752324448": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781787584"}]}}, "140265781788032": {"type": "Function", "content": {"typeVars": [".0.140265781788032"], "argTypes": [{"nodeId": ".0.140265781788032"}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": ".0.140265781788032"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265781788032": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764452864"}, "def": "140265781788032", "variance": "INVARIANT"}}, "140265781575744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265752324672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752324672": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781576192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265752324784"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140265752324784": {"type": "Union", "content": {"items": [{"nodeId": "140265764451808"}, {"nodeId": "N"}]}}, "140265781576640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265861255360"}, {"nodeId": "140265752324896"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}}, "140265752324896": {"type": "Union", "content": {"items": [{"nodeId": "140265764451808"}, {"nodeId": "N"}]}}, "140265781577088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781577536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}, {"nodeId": "140265752325008"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "value", "header", "requote", "charset", "language", "replace"]}}, "140265752325008": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781577984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265764451808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140265781578432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752325120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265752325120": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781578880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265752325456"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752325456": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265752325232"}]}}, "140265752325232": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265764453216": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781579328"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781579776"}, "name": "get_body"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781580224"}, "name": "iter_attachments"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781580672"}, "name": "iter_parts"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781581120"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781581568"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781582016"}, "name": "make_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781582464"}, "name": "make_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781582912"}, "name": "make_mixed"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781583360"}, "name": "add_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781583808"}, "name": "add_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781584256"}, "name": "add_attachment"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781584704"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781585152"}, "name": "clear_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781585600"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781586048"}, "name": "is_attachment"}}], "typeVars": [], "bases": [{"nodeId": "140265764452864"}], "isAbstract": false}}, "140265781579328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "140265752325568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140265752325568": {"type": "Union", "content": {"items": [{"nodeId": "140265764451808"}, {"nodeId": "N"}]}}, "140265781579776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265752325680"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}}, "140265752325680": {"type": "Union", "content": {"items": [{"nodeId": "140265764452864"}, {"nodeId": "N"}]}}, "140265781580224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265764452864"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781580672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265764452864"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781581120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "A"}, {"nodeId": "140265752325904"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140265752325904": {"type": "Union", "content": {"items": [{"nodeId": "140265764742144"}, {"nodeId": "N"}]}}, "140265764742144": {"type": "Concrete", "content": {"module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773497728"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773563968"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773564416"}, "name": "add_get_handler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773564864"}, "name": "add_set_handler"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265773497728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742144"}, {"nodeId": "140265764452864"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}}, "140265773563968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742144"}, {"nodeId": "140265764452864"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "obj", "args", "kw"]}}, "140265773564416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742144"}, {"nodeId": "140265790227200"}, {"nodeId": "140265751896896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}}, "140265751896896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265773564864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742144"}, {"nodeId": "140265861265568"}, {"nodeId": "140265751896672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}}, "140265751896672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265781581568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "A"}, {"nodeId": "140265752326352"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140265752326352": {"type": "Union", "content": {"items": [{"nodeId": "140265764742144"}, {"nodeId": "N"}]}}, "140265781582016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "140265752326576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140265752326576": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781582464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "140265752326688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140265752326688": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781582912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "140265752326800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140265752326800": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781583360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "A"}, {"nodeId": "140265752327024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140265752327024": {"type": "Union", "content": {"items": [{"nodeId": "140265764742144"}, {"nodeId": "N"}]}}, "140265781583808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "A"}, {"nodeId": "140265752327360"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140265752327360": {"type": "Union", "content": {"items": [{"nodeId": "140265764742144"}, {"nodeId": "N"}]}}, "140265781584256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "A"}, {"nodeId": "140265752327696"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140265752327696": {"type": "Union", "content": {"items": [{"nodeId": "140265764742144"}, {"nodeId": "N"}]}}, "140265781584704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781585152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781585600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "140265861255360"}, {"nodeId": "140265752327920"}, {"nodeId": "140265752328032"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140265752327920": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752328032": {"type": "Union", "content": {"items": [{"nodeId": "140265764451808"}, {"nodeId": "N"}]}}, "140265781586048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764453568": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764453216"}], "isAbstract": false}}, "140265760336960": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140265760336256"}], "isAbstract": false}}, "140265760337664": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140265760337312"}, {"nodeId": "140265760336608"}], "isAbstract": false}}, "140265760338016": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140265760337312"}, {"nodeId": "140265760336960"}], "isAbstract": false}}, "140265764732992": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265764733344": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764732992"}], "isAbstract": false}}, "140265764733696": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764733344"}], "isAbstract": false}}, "140265764734048": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764733344"}], "isAbstract": false}}, "140265764734400": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764732992"}, {"nodeId": "140265790241280"}], "isAbstract": false}}, "140265764734752": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764732992"}], "isAbstract": false}}, "140265764735456": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764735808": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764736160": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764736512": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764736864": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764737216": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764737568": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764737920": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764738272": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764738624": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764738976": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764739328": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764739680": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764740032": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764739680"}], "isAbstract": false}}, "140265764740384": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764739680"}], "isAbstract": false}}, "140265764740736": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773566880"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265764739680"}], "isAbstract": false}}, "140265773566880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764740736"}, {"nodeId": "140265752494368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}}, "140265752494368": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265764741088": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764739680"}], "isAbstract": false}}, "140265764741440": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764739680"}], "isAbstract": false}}, "140265764741792": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764739680"}], "isAbstract": false}}, "140265764452160": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773572480"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773572928"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773573376"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773573824"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773574272"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140265764451808"}], "isAbstract": false}}, "140265773572480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452160"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265752317952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140265752317952": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265773572928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452160"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752318176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265752318176": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265773573376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452160"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752318288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265752318288": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265764453920"}]}}, "140265764453920": {"type": "Concrete", "content": {"module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773750016"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773750464"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773750912"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773751360"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773751808"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265773750016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453920"}, {"nodeId": "140265752328144"}, {"nodeId": "140265752328256"}, {"nodeId": "140265752328368"}, {"nodeId": "140265752328480"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "maxlinelen", "header_name", "continuation_ws", "errors"]}}, "140265752328144": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752328256": {"type": "Union", "content": {"items": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752328368": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752328480": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265773750464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453920"}, {"nodeId": "140265752328592"}, {"nodeId": "140265752328704"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}}, "140265752328592": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}, {"nodeId": "140265790227200"}]}}, "140265752328704": {"type": "Union", "content": {"items": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265773750912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453920"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752328816"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}}, "140265752328816": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265773751360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453920"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265773751808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453920"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265773573824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452160"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265773574272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452160"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265764452512": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764885824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764742144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773574720"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773575168"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773575616"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773576064"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773576512"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773576960"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140265764451808"}], "isAbstract": false}}, "140265764885824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265773574720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452512"}, {"nodeId": "140265752318400"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265752318512"}, {"nodeId": "140265861255360"}, {"nodeId": "140265790227200"}, {"nodeId": "140265751898016"}, {"nodeId": "140265764742144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory", "utf8", "refold_source", "header_factory", "content_manager"]}}, "140265752318400": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752318512": {"type": "Union", "content": {"items": [{"nodeId": "140265751897792"}, {"nodeId": "N"}]}}, "140265751897792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}], "returnType": {"nodeId": "140265764452864"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265751898016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265773575168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452512"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265752318736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140265752318736": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265773575616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452512"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752318960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265752318960": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265773576064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452512"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265773576512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452512"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265773576960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452512"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265694100640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861258528", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265694120864": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265694096160"}, {"nodeId": "140265694095936"}]}}, "140265694096160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_OPT"], "argNames": ["object"]}}, "140265694095936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789865152"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["object", "encoding", "errors"]}}}, "exprTypes": {"annotation_tests": [{"startOffset": 140, "endOffset": 144, "line": 11, "type": {"nodeId": ".1.140265693807008"}}, {"startOffset": 553, "endOffset": 553, "line": 34, "type": {"nodeId": "140265861266272"}}, {"startOffset": 557, "endOffset": 557, "line": 34, "type": {"nodeId": "140265861266272"}}, {"startOffset": 604, "endOffset": 604, "line": 38, "type": {"nodeId": "140265693901456"}}, {"startOffset": 654, "endOffset": 654, "line": 42, "type": {"nodeId": "140265693901792"}}, {"startOffset": 681, "endOffset": 683, "line": 46, "type": {"nodeId": "140265861266272"}}, {"startOffset": 693, "endOffset": 697, "line": 47, "type": {"nodeId": "140265861266272"}}, {"startOffset": 707, "endOffset": 710, "line": 48, "type": {"nodeId": "140265861266272"}}, {"startOffset": 783, "endOffset": 783, "line": 52, "type": {"nodeId": "140265693902128"}}, {"startOffset": 837, "endOffset": 837, "line": 56, "type": {"nodeId": "140265861263808", "args": [{"nodeId": "140265861266272"}]}}, {"startOffset": 887, "endOffset": 887, "line": 60, "type": {"nodeId": "140265861264512", "args": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, {"startOffset": 937, "endOffset": 937, "line": 64, "type": {"nodeId": "140265861263104", "args": [{"nodeId": "140265861254656"}]}}, {"startOffset": 986, "endOffset": 988, "line": 68, "type": {"nodeId": "140265694100640"}}, {"startOffset": 990, "endOffset": 990, "line": 68, "type": {"nodeId": "140265861258528", "args": [{"nodeId": "A"}]}}, {"startOffset": 1038, "endOffset": 1038, "line": 72, "type": {"nodeId": "140265693902464"}}, {"startOffset": 1045, "endOffset": 1047, "line": 72, "type": {"nodeId": "140265694120864"}}, {"startOffset": 1049, "endOffset": 1049, "line": 72, "type": {"nodeId": "140265693902464"}}, {"startOffset": 1060, "endOffset": 1067, "line": 75, "type": {"nodeId": "140265790227200"}}]}, "definitions": {"annotation_tests": {"__name__": {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": false}}, "__doc__": {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": false}}, "__file__": {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": false}}, "__package__": {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": false}}, "__annotations__": {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": false}}, "A": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265693807008"}}}, "square": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "collection", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828382560"}, "name": "square"}}, "not_annotated": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265874276080"}, "name": "not_annotated"}}, "same_annotations": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "y", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "c", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265739917952"}, "name": "same_annotations"}}, "optional": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265710021856"}, "name": "optional"}}, "literal": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265856940320"}, "name": "literal"}}, "Color": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265693807360"}}}, "enum_literal": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265710023424"}, "name": "enum_literal"}}, "abstract_set": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265739612256"}, "name": "abstract_set"}}, "mapping": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828382112"}, "name": "mapping"}}, "sequence": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265739602848"}, "name": "sequence"}}, "supports_abs": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853043424"}, "name": "supports_abs"}}, "tuple_": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265856941664"}, "name": "tuple_"}}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789864096"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861256064"}}}, "_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861256416"}}}, "ParamSpecArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861256768"}}}, "ParamSpecKwargs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861257120"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861257472"}}}, "NewType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861257824"}}}, "_Alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861258176"}}}, "_ProtocolMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789898272"}}}, "SupportsInt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789849664"}}}, "SupportsFloat": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789850016"}}}, "SupportsComplex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789850368"}}}, "SupportsBytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789850720"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789851072"}}}, "SupportsAbs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861258528"}}}, "SupportsRound": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861258880"}}}, "Sized": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789851424"}}}, "Hashable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789851776"}}}, "Iterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861259232"}}}, "Iterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861259584"}}}, "Reversible": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861259936"}}}, "Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861260288"}}}, "Awaitable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861260640"}}}, "Coroutine": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861260992"}}}, "AwaitableGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789852128"}}}, "AsyncIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861261344"}}}, "AsyncIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861261696"}}}, "AsyncGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861262048"}}}, "Container": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861262400"}}}, "Collection": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861262752"}}}, "Sequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861263104"}}}, "MutableSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861263456"}}}, "AbstractSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861263808"}}}, "MutableSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861264160"}}}, "MappingView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789852480"}}}, "ItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789852832"}}}, "KeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789853184"}}}, "ValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789853536"}}}, "Mapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861264512"}}}, "MutableMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861264864"}}}, "IO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789853888"}}}, "BinaryIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789854240"}}}, "TextIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789854592"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789854944"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789855296"}}}, "ForwardRef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861265216"}}}}, "collections": {"UserDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789859168"}}}, "UserList": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789859520"}}}, "UserString": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789859872"}}}, "deque": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789860224"}}}, "Counter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789897568"}}}, "_OrderedDictKeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764914976"}}}, "_OrderedDictItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764915328"}}}, "_OrderedDictValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764915680"}}}, "_odict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789860576"}}}, "_odict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789860928"}}}, "_odict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789861280"}}}, "OrderedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789861632"}}}, "defaultdict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789897920"}}}, "ChainMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789861984"}}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764449344"}}}, "EnumMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764449696"}}}, "Enum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764450048"}}}, "IntEnum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764450400"}}}, "Flag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764450752"}}}, "IntFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764451104"}}}, "auto": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764451456"}}}}, "datetime": {"tzinfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760339776"}}}, "timezone": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760340128"}}}, "date": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760340832"}}}, "time": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760341184"}}}, "timedelta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760341536"}}}, "datetime": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265693806656"}}}}, "builtins": {"object": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861254656"}}}, "bool": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861255360"}}}, "function": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861255712"}}}, "staticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "classmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "type": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861265568"}}}, "super": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861265920"}}}, "int": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861266272"}}}, "float": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861266624"}}}, "complex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861266976"}}}, "_FormatMapMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790226496"}}}, "_TranslateTable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790226848"}}}, "str": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790227200"}}}, "bytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790227552"}}}, "bytearray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790227904"}}}, "memoryview": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790228256"}}}, "slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790228608"}}}, "tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790228960"}}}, "list": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790229312"}}}, "dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790229664"}}}, "set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789856704"}}}, "frozenset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789857056"}}}, "enumerate": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789857408"}}}, "range": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790230016"}}}, "property": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790230368"}}}, "_NotImplementedType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790230720"}}}, "_PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765401024"}}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790231072"}}}, "filter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789857760"}}}, "_GetItemIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790231424"}}}, "map": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789858112"}}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765401376"}}}, "_SupportsPow2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790231776"}}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790232128"}}}, "_SupportsPow3": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790232480"}}}, "reversed": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789858464"}}}, "_SupportsRound1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790232832"}}}, "_SupportsRound2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790233184"}}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765401728"}}}, "zip": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789858816"}}}, "ellipsis": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790233536"}}}, "BaseException": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790233888"}}}, "GeneratorExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790234240"}}}, "KeyboardInterrupt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790234592"}}}, "SystemExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790234944"}}}, "Exception": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790235296"}}}, "StopIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790235648"}}}, "OSError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790236000"}}}, "ArithmeticError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790236352"}}}, "AssertionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790236704"}}}, "AttributeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790237056"}}}, "BufferError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790237408"}}}, "EOFError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790237760"}}}, "ImportError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790238112"}}}, "LookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790238464"}}}, "MemoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790238816"}}}, "NameError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790239168"}}}, "ReferenceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790239520"}}}, "RuntimeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790239872"}}}, "StopAsyncIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790240224"}}}, "SyntaxError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790240576"}}}, "SystemError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790240928"}}}, "TypeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790241280"}}}, "ValueError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790241632"}}}, "FloatingPointError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790241984"}}}, "OverflowError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790242336"}}}, "ZeroDivisionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789882432"}}}, "ModuleNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789882784"}}}, "IndexError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789883136"}}}, "KeyError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789883488"}}}, "UnboundLocalError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789883840"}}}, "BlockingIOError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789884192"}}}, "ChildProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789884544"}}}, "ConnectionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789884896"}}}, "BrokenPipeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789885248"}}}, "ConnectionAbortedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789885600"}}}, "ConnectionRefusedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789885952"}}}, "ConnectionResetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789886304"}}}, "FileExistsError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789886656"}}}, "FileNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789887008"}}}, "InterruptedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789887360"}}}, "IsADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789887712"}}}, "NotADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789888064"}}}, "PermissionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789888416"}}}, "ProcessLookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789888768"}}}, "TimeoutError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789889120"}}}, "NotImplementedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789889472"}}}, "RecursionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789889824"}}}, "IndentationError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789890176"}}}, "TabError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789890528"}}}, "UnicodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789890880"}}}, "UnicodeDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789891232"}}}, "UnicodeEncodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789891584"}}}, "UnicodeTranslateError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789891936"}}}, "Warning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789892288"}}}, "UserWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789892640"}}}, "DeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789892992"}}}, "SyntaxWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789893344"}}}, "RuntimeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789893696"}}}, "FutureWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789894048"}}}, "PendingDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789894400"}}}, "ImportWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789894752"}}}, "UnicodeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789895104"}}}, "BytesWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789895456"}}}, "ResourceWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789895808"}}}, "EncodingWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789896160"}}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785728992"}}}, "_flags": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765403136"}}}, "_float_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765403488"}}}, "_hash_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765403840"}}}, "_implementation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785729344"}}}, "_int_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765404192"}}}, "_thread_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760325696"}}}, "_version_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760326048"}}}, "UnraisableHookArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785729696"}}}, "_asyncgen_hooks": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760326400"}}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789862336"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789862688"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789863040"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789863392"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789863744"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789864096"}}}, "TypeVarTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789864448"}}}, "TypeAliasType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789864800"}}}, "Buffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789865152"}}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789855648"}}}, "dict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789856000"}}}, "dict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789856352"}}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764920256"}}}, "SupportsNext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764920608"}}}, "SupportsAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764920960"}}}, "SupportsDunderLT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764921312"}}}, "SupportsDunderGT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764921664"}}}, "SupportsDunderLE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764922016"}}}, "SupportsDunderGE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764922368"}}}, "SupportsAllComparisons": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764922720"}}}, "SupportsAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764923072"}}}, "SupportsRAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764923424"}}}, "SupportsSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764923776"}}}, "SupportsRSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764924128"}}}, "SupportsDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764924480"}}}, "SupportsRDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764924832"}}}, "SupportsIter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764925184"}}}, "SupportsAiter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764925536"}}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764925888"}}}, "SupportsTrunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764926240"}}}, "SupportsItems": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764926592"}}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764926944"}}}, "SupportsGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764927296"}}}, "SupportsItemAccess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764927648"}}}, "HasFileno": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764928000"}}}, "SupportsRead": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764928352"}}}, "SupportsReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764928704"}}}, "SupportsNoArgReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764929056"}}}, "SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765093440"}}}, "SliceableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765093792"}}}, "IndexableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765094144"}}}, "SupportsGetItemBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765094496"}}}, "SizedBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765094848"}}}, "structseq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765095200"}}}, "DataclassInstance": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765095552"}}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789896512"}}}, "abstractclassmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractstaticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractproperty": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789896864"}}}, "ABC": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789897216"}}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764744960"}}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764745312"}}}, "ContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764745664"}}}, "_GeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764746016"}}}, "AsyncContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764746368"}}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764746720"}}}, "_SupportsClose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764747072"}}}, "closing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764747424"}}}, "_SupportsAclose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764747776"}}}, "aclosing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764748128"}}}, "suppress": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764748480"}}}, "_RedirectStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764748832"}}}, "redirect_stdout": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764913216"}}}, "redirect_stderr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764913568"}}}, "ExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764913920"}}}, "AsyncExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764914272"}}}, "nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764914624"}}}}, "re": {"Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785733920"}}}, "Pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785734272"}}}, "RegexFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760326752"}}}}, "types": {"_Cell": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789865504"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785720896"}}}, "CodeType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785721248"}}}, "MappingProxyType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785721600"}}}, "SimpleNamespace": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785721952"}}}, "_LoaderProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785722304"}}}, "ModuleType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785722656"}}}, "GeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785723008"}}}, "AsyncGeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785723360"}}}, "CoroutineType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785723712"}}}, "_StaticFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785724064"}}}, "MethodType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785724416"}}}, "BuiltinFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785724768"}}}, "WrapperDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785725120"}}}, "MethodWrapperType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785725472"}}}, "MethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785725824"}}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785726176"}}}, "TracebackType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785726528"}}}, "FrameType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785726880"}}}, "GetSetDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785727232"}}}, "MemberDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785727584"}}}, "GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785727936"}}}, "NoneType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785728288"}}}, "UnionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785728640"}}}}, "time": {"struct_time": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760339072"}}}, "_ClockInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760339424"}}}}, "_ast": {"AST": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765096256"}}}, "mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765096608"}}}, "type_ignore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765096960"}}}, "TypeIgnore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765097312"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765097664"}}}, "Module": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765098016"}}}, "Interactive": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765098368"}}}, "Expression": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765098720"}}}, "stmt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765099072"}}}, "FunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765099424"}}}, "AsyncFunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765099776"}}}, "ClassDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765100128"}}}, "Return": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765100480"}}}, "Delete": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765100832"}}}, "Assign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765101184"}}}, "AugAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765101536"}}}, "AnnAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765101888"}}}, "For": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765102240"}}}, "AsyncFor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765102592"}}}, "While": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765102944"}}}, "If": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765103296"}}}, "With": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765103648"}}}, "AsyncWith": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765104000"}}}, "Raise": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765104352"}}}, "Try": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765104704"}}}, "Assert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765105056"}}}, "Import": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765105408"}}}, "ImportFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765105760"}}}, "Global": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765106112"}}}, "Nonlocal": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765106464"}}}, "Expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765106816"}}}, "Pass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765107168"}}}, "Break": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765107520"}}}, "Continue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765107872"}}}, "expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765108224"}}}, "BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765108576"}}}, "BinOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765108928"}}}, "UnaryOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765109280"}}}, "Lambda": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765290048"}}}, "IfExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765290400"}}}, "Dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765290752"}}}, "Set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765291104"}}}, "ListComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765291456"}}}, "SetComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765291808"}}}, "DictComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765292160"}}}, "GeneratorExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765292512"}}}, "Await": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765292864"}}}, "Yield": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765293216"}}}, "YieldFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765293568"}}}, "Compare": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765293920"}}}, "Call": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765294272"}}}, "FormattedValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765294624"}}}, "JoinedStr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765294976"}}}, "Constant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765295328"}}}, "NamedExpr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765295680"}}}, "Attribute": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765296032"}}}, "Slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765296384"}}}, "Subscript": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765296736"}}}, "Starred": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765297088"}}}, "Name": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765297440"}}}, "List": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765297792"}}}, "Tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765298144"}}}, "expr_context": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765298496"}}}, "Del": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765298848"}}}, "Load": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765299200"}}}, "Store": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765299552"}}}, "boolop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765299904"}}}, "And": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765300256"}}}, "Or": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765300608"}}}, "operator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765300960"}}}, "Add": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765301312"}}}, "BitAnd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765301664"}}}, "BitOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765302016"}}}, "BitXor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765302368"}}}, "Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765302720"}}}, "FloorDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765303072"}}}, "LShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765303424"}}}, "Mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765303776"}}}, "Mult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765304128"}}}, "MatMult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765304480"}}}, "Pow": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765304832"}}}, "RShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765305184"}}}, "Sub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765305536"}}}, "unaryop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765305888"}}}, "Invert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765388352"}}}, "Not": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765388704"}}}, "UAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765389056"}}}, "USub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765389408"}}}, "cmpop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765389760"}}}, "Eq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765390112"}}}, "Gt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765390464"}}}, "GtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765390816"}}}, "In": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765391168"}}}, "Is": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765391520"}}}, "IsNot": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765391872"}}}, "Lt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765392224"}}}, "LtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765392576"}}}, "NotEq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765392928"}}}, "NotIn": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765393280"}}}, "comprehension": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765393632"}}}, "excepthandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765393984"}}}, "ExceptHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765394336"}}}, "arguments": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765394688"}}}, "arg": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765395040"}}}, "keyword": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765395392"}}}, "alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765395744"}}}, "withitem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765396096"}}}, "Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765396448"}}}, "pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765396800"}}}, "match_case": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765397152"}}}, "MatchValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765397504"}}}, "MatchSingleton": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765397856"}}}, "MatchSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765398208"}}}, "MatchStar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765398560"}}}, "MatchMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765398912"}}}, "MatchClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765399264"}}}, "MatchAs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765399616"}}}, "MatchOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765399968"}}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785735328"}}}, "IOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785735680"}}}, "RawIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785736032"}}}, "BufferedIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785736384"}}}, "FileIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785736736"}}}, "BytesIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764438080"}}}, "BufferedReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764438432"}}}, "BufferedWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764438784"}}}, "BufferedRandom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764439136"}}}, "BufferedRWPair": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764439488"}}}, "TextIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764439840"}}}, "TextIOWrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764440192"}}}, "StringIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764440544"}}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760338368"}}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764445120"}}}, "Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764445472"}}}, "ResourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764445824"}}}, "InspectLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764446176"}}}, "ExecutionLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764446528"}}}, "SourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764446880"}}}, "MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764447232"}}}, "PathEntryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764447584"}}}, "FileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764447936"}}}, "ResourceReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764448288"}}}, "Traversable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764448640"}}}, "TraversableResources": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764448992"}}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764444416"}}}, "BuiltinImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760331328"}}}, "FrozenImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760331680"}}}, "WindowsRegistryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760332032"}}}, "PathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764444768"}}}, "FileFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760332384"}}}, "SourceFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760332736"}}}, "SourcelessFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760333088"}}}, "ExtensionFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760333440"}}}}, "dataclasses": {"_MISSING_TYPE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764742848"}}}, "KW_ONLY": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764743200"}}}, "_DefaultFactory": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764743552"}}}, "Field": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764743904"}}}, "FrozenInstanceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764744256"}}}, "InitVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764744608"}}}}, "os": {"_Environ": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785734624"}}}, "stat_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765402080"}}}, "PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760327104"}}}, "DirEntry": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785734976"}}}, "statvfs_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760327456"}}}, "uname_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760327808"}}}, "terminal_size": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760328160"}}}, "_ScandirIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760328512"}}}, "_wrap_close": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760328864"}}}, "times_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760329216"}}}, "waitid_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760329568"}}}, "sched_param": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760329920"}}}}, "sre_constants": {"error": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785733216"}}}, "_NamedIntConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785733568"}}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764916032"}}}, "_ReadableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764916384"}}}, "_Stream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760333792"}}}, "_Encoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764916736"}}}, "_Decoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764917088"}}}, "_StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764917440"}}}, "_StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764917792"}}}, "_IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764918144"}}}, "_IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764918496"}}}, "CodecInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760334144"}}}, "Codec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764918848"}}}, "IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764919200"}}}, "IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764919552"}}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760334496"}}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760334848"}}}, "StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760335200"}}}, "StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760335552"}}}, "StreamReaderWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760335904"}}}, "StreamRecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764919904"}}}}, "importlib": {"Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764445472"}}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764440896"}}}, "PackageNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764441600"}}}, "EntryPoint": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764442304"}}}, "EntryPoints": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764442656"}}}, "SelectableGroups": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764443008"}}}, "PackagePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760338720"}}}, "FileHash": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764443360"}}}, "Distribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764443712"}}}, "DistributionFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760330272"}}}, "MetadataPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760330976"}}}, "PathDistribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764444064"}}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785730048"}}}, "SubprocessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785730400"}}}, "TimeoutExpired": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785730752"}}}, "CalledProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785731104"}}}, "Popen": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785731456"}}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785731808"}}}, "_State": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785732160"}}}, "SubPattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785732512"}}}, "Tokenizer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785732864"}}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765095904"}}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764440896"}}}, "SimplePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764441248"}}}}, "email.message": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764452864"}}}, "MIMEPart": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764453216"}}}, "EmailMessage": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764453568"}}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760336256"}}}, "PurePosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760336608"}}}, "PureWindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760336960"}}}, "Path": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760337312"}}}, "PosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760337664"}}}, "WindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760338016"}}}}, "email": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764452864"}}}, "Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764451808"}}}}, "email.charset": {"Charset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764742496"}}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764742144"}}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764732992"}}}, "MessageParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764733344"}}}, "HeaderParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764733696"}}}, "BoundaryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764734048"}}}, "MultipartConversionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764734400"}}}, "CharsetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764734752"}}}, "MessageDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764735104"}}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764735456"}}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764735808"}}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764736160"}}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764736512"}}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764736864"}}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764737216"}}}, "UndecodableBytesDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764737568"}}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764737920"}}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764738272"}}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764738624"}}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764738976"}}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764739328"}}}, "HeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764739680"}}}, "InvalidHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764740032"}}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764740384"}}}, "NonPrintableDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764740736"}}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764741088"}}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764741440"}}}, "InvalidDateDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764741792"}}}}, "email.policy": {"Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764451808"}}}, "Compat32": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764452160"}}}, "EmailPolicy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764452512"}}}}, "email.header": {"Header": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764453920"}}}}}, "names": {"annotation_tests": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing.ParamSpec"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "ByteString", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "Enum", "kind": "ImportedType", "fullname": "enum.Enum"}, {"name": "datetime", "kind": "Module", "fullname": "datetime"}, {"name": "XXX", "kind": "Other"}, {"name": "A", "kind": "LocalType"}, {"name": "square", "kind": "Other"}, {"name": "not_annotated", "kind": "Other"}, {"name": "same_annotations", "kind": "Other"}, {"name": "optional", "kind": "Other"}, {"name": "literal", "kind": "Other"}, {"name": "Color", "kind": "LocalType"}, {"name": "enum_literal", "kind": "Other"}, {"name": "abstract_set", "kind": "Other"}, {"name": "mapping", "kind": "Other"}, {"name": "sequence", "kind": "Other"}, {"name": "supports_abs", "kind": "Other"}, {"name": "tuple_", "kind": "Other"}], "typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AbstractAsyncContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractAsyncContextManager"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "BuiltinFunctionType", "kind": "ImportedType", "fullname": "types.BuiltinFunctionType"}, {"name": "CodeType", "kind": "ImportedType", "fullname": "types.CodeType"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "FunctionType", "kind": "ImportedType", "fullname": "types.FunctionType"}, {"name": "MethodDescriptorType", "kind": "ImportedType", "fullname": "types.MethodDescriptorType"}, {"name": "MethodType", "kind": "ImportedType", "fullname": "types.MethodType"}, {"name": "MethodWrapperType", "kind": "ImportedType", "fullname": "types.MethodWrapperType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "WrapperDescriptorType", "kind": "ImportedType", "fullname": "types.WrapperDescriptorType"}, {"name": "_Never", "kind": "Other"}, {"name": "_ParamSpec", "kind": "LocalType"}, {"name": "_final", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "_promote", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "LocalType"}, {"name": "ParamSpecKwargs", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "LocalType"}, {"name": "_S", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "_Alias", "kind": "LocalType"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "_ProtocolMeta", "kind": "LocalType"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "LocalType"}, {"name": "SupportsFloat", "kind": "LocalType"}, {"name": "SupportsComplex", "kind": "LocalType"}, {"name": "SupportsBytes", "kind": "LocalType"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "SupportsAbs", "kind": "LocalType"}, {"name": "SupportsRound", "kind": "LocalType"}, {"name": "Sized", "kind": "LocalType"}, {"name": "Hashable", "kind": "LocalType"}, {"name": "Iterable", "kind": "LocalType"}, {"name": "Iterator", "kind": "LocalType"}, {"name": "Reversible", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "Generator", "kind": "LocalType"}, {"name": "Awaitable", "kind": "LocalType"}, {"name": "Coroutine", "kind": "LocalType"}, {"name": "AwaitableGenerator", "kind": "LocalType"}, {"name": "AsyncIterable", "kind": "LocalType"}, {"name": "AsyncIterator", "kind": "LocalType"}, {"name": "AsyncGenerator", "kind": "LocalType"}, {"name": "Container", "kind": "LocalType"}, {"name": "Collection", "kind": "LocalType"}, {"name": "Sequence", "kind": "LocalType"}, {"name": "MutableSequence", "kind": "LocalType"}, {"name": "AbstractSet", "kind": "LocalType"}, {"name": "MutableSet", "kind": "LocalType"}, {"name": "MappingView", "kind": "LocalType"}, {"name": "ItemsView", "kind": "LocalType"}, {"name": "KeysView", "kind": "LocalType"}, {"name": "ValuesView", "kind": "LocalType"}, {"name": "Mapping", "kind": "LocalType"}, {"name": "MutableMapping", "kind": "LocalType"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "LocalType"}, {"name": "BinaryIO", "kind": "LocalType"}, {"name": "TextIO", "kind": "LocalType"}, {"name": "ByteString", "kind": "Other"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "ForwardRef", "kind": "LocalType"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "_type_repr", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "collections": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "SupportsItems", "kind": "ImportedType", "fullname": "_typeshed.SupportsItems"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "Callable", "kind": "Other"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "namedtuple", "kind": "Other"}, {"name": "UserDict", "kind": "LocalType"}, {"name": "UserList", "kind": "LocalType"}, {"name": "UserString", "kind": "LocalType"}, {"name": "deque", "kind": "LocalType"}, {"name": "Counter", "kind": "LocalType"}, {"name": "_OrderedDictKeysView", "kind": "LocalType"}, {"name": "_OrderedDictItemsView", "kind": "LocalType"}, {"name": "_OrderedDictValuesView", "kind": "LocalType"}, {"name": "_odict_keys", "kind": "LocalType"}, {"name": "_odict_items", "kind": "LocalType"}, {"name": "_odict_values", "kind": "LocalType"}, {"name": "OrderedDict", "kind": "LocalType"}, {"name": "defaultdict", "kind": "LocalType"}, {"name": "ChainMap", "kind": "LocalType"}], "enum": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_EnumMemberT", "kind": "Other"}, {"name": "_EnumerationT", "kind": "Other"}, {"name": "_EnumNames", "kind": "Other"}, {"name": "_EnumDict", "kind": "LocalType"}, {"name": "EnumMeta", "kind": "LocalType"}, {"name": "_magic_enum_attr", "kind": "Other"}, {"name": "Enum", "kind": "LocalType"}, {"name": "_IntEnumBase", "kind": "Other"}, {"name": "IntEnum", "kind": "LocalType"}, {"name": "unique", "kind": "Other"}, {"name": "_auto_null", "kind": "Other"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "kind": "LocalType"}, {"name": "auto", "kind": "LocalType"}], "datetime": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "struct_time", "kind": "ImportedType", "fullname": "time.struct_time"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_D", "kind": "Other"}, {"name": "MINYEAR", "kind": "Other"}, {"name": "MAXYEAR", "kind": "Other"}, {"name": "tzinfo", "kind": "LocalType"}, {"name": "_TzInfo", "kind": "Other"}, {"name": "timezone", "kind": "LocalType"}, {"name": "_IsoCalendarDate", "kind": "LocalType"}, {"name": "date", "kind": "LocalType"}, {"name": "time", "kind": "LocalType"}, {"name": "_Date", "kind": "Other"}, {"name": "_Time", "kind": "Other"}, {"name": "timedelta", "kind": "LocalType"}, {"name": "datetime", "kind": "LocalType"}], "builtins": [{"name": "object", "kind": "LocalType"}, {"name": "bool", "kind": "LocalType"}, {"name": "function", "kind": "LocalType"}, {"name": "None", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "reveal_locals", "kind": "Other"}, {"name": "True", "kind": "Other"}, {"name": "False", "kind": "Other"}, {"name": "__debug__", "kind": "Other"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T3", "kind": "Other"}, {"name": "_T4", "kind": "Other"}, {"name": "_T5", "kind": "Other"}, {"name": "_SupportsNextT", "kind": "Other"}, {"name": "_SupportsAnextT", "kind": "Other"}, {"name": "_AwaitableT", "kind": "Other"}, {"name": "_AwaitableT_co", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "staticmethod", "kind": "LocalType"}, {"name": "classmethod", "kind": "LocalType"}, {"name": "type", "kind": "LocalType"}, {"name": "super", "kind": "LocalType"}, {"name": "_PositiveInteger", "kind": "Other"}, {"name": "_NegativeInteger", "kind": "Other"}, {"name": "_LiteralInteger", "kind": "Other"}, {"name": "int", "kind": "LocalType"}, {"name": "float", "kind": "LocalType"}, {"name": "complex", "kind": "LocalType"}, {"name": "_FormatMapMapping", "kind": "LocalType"}, {"name": "_TranslateTable", "kind": "LocalType"}, {"name": "str", "kind": "LocalType"}, {"name": "bytes", "kind": "LocalType"}, {"name": "bytearray", "kind": "LocalType"}, {"name": "memoryview", "kind": "LocalType"}, {"name": "slice", "kind": "LocalType"}, {"name": "tuple", "kind": "LocalType"}, {"name": "list", "kind": "LocalType"}, {"name": "dict", "kind": "LocalType"}, {"name": "set", "kind": "LocalType"}, {"name": "frozenset", "kind": "LocalType"}, {"name": "enumerate", "kind": "LocalType"}, {"name": "range", "kind": "LocalType"}, {"name": "property", "kind": "LocalType"}, {"name": "_NotImplementedType", "kind": "LocalType"}, {"name": "NotImplemented", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "ascii", "kind": "Other"}, {"name": "bin", "kind": "Other"}, {"name": "breakpoint", "kind": "Other"}, {"name": "callable", "kind": "Other"}, {"name": "chr", "kind": "Other"}, {"name": "_PathLike", "kind": "LocalType"}, {"name": "aiter", "kind": "Other"}, {"name": "_SupportsSynchronousAnext", "kind": "LocalType"}, {"name": "anext", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "credits", "kind": "Other"}, {"name": "delattr", "kind": "Other"}, {"name": "dir", "kind": "Other"}, {"name": "divmod", "kind": "Other"}, {"name": "eval", "kind": "Other"}, {"name": "exec", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "filter", "kind": "LocalType"}, {"name": "format", "kind": "Other"}, {"name": "getattr", "kind": "Other"}, {"name": "globals", "kind": "Other"}, {"name": "hasattr", "kind": "Other"}, {"name": "hash", "kind": "Other"}, {"name": "help", "kind": "Other"}, {"name": "hex", "kind": "Other"}, {"name": "id", "kind": "Other"}, {"name": "input", "kind": "Other"}, {"name": "_GetItemIterable", "kind": "LocalType"}, {"name": "iter", "kind": "Other"}, {"name": "_ClassInfo", "kind": "Other"}, {"name": "isinstance", "kind": "Other"}, {"name": "issubclass", "kind": "Other"}, {"name": "len", "kind": "Other"}, {"name": "license", "kind": "Other"}, {"name": "locals", "kind": "Other"}, {"name": "map", "kind": "LocalType"}, {"name": "max", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "next", "kind": "Other"}, {"name": "oct", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "ord", "kind": "Other"}, {"name": "_SupportsWriteAndFlush", "kind": "LocalType"}, {"name": "print", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_M", "kind": "Other"}, {"name": "_SupportsPow2", "kind": "LocalType"}, {"name": "_SupportsPow3NoneOnly", "kind": "LocalType"}, {"name": "_SupportsPow3", "kind": "LocalType"}, {"name": "_SupportsSomeKindOfPow", "kind": "Other"}, {"name": "pow", "kind": "Other"}, {"name": "quit", "kind": "Other"}, {"name": "reversed", "kind": "LocalType"}, {"name": "repr", "kind": "Other"}, {"name": "_SupportsRound1", "kind": "LocalType"}, {"name": "_SupportsRound2", "kind": "LocalType"}, {"name": "round", "kind": "Other"}, {"name": "setattr", "kind": "Other"}, {"name": "sorted", "kind": "Other"}, {"name": "_AddableT1", "kind": "Other"}, {"name": "_AddableT2", "kind": "Other"}, {"name": "_SupportsSumWithNoDefaultGiven", "kind": "LocalType"}, {"name": "_SupportsSumNoDefaultT", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "vars", "kind": "Other"}, {"name": "zip", "kind": "LocalType"}, {"name": "__import__", "kind": "Other"}, {"name": "__build_class__", "kind": "Other"}, {"name": "ellipsis", "kind": "LocalType"}, {"name": "Ellipsis", "kind": "Other"}, {"name": "BaseException", "kind": "LocalType"}, {"name": "GeneratorExit", "kind": "LocalType"}, {"name": "KeyboardInterrupt", "kind": "LocalType"}, {"name": "SystemExit", "kind": "LocalType"}, {"name": "Exception", "kind": "LocalType"}, {"name": "StopIteration", "kind": "LocalType"}, {"name": "OSError", "kind": "LocalType"}, {"name": "EnvironmentError", "kind": "Other"}, {"name": "IOError", "kind": "Other"}, {"name": "ArithmeticError", "kind": "LocalType"}, {"name": "AssertionError", "kind": "LocalType"}, {"name": "AttributeError", "kind": "LocalType"}, {"name": "BufferError", "kind": "LocalType"}, {"name": "EOFError", "kind": "LocalType"}, {"name": "ImportError", "kind": "LocalType"}, {"name": "LookupError", "kind": "LocalType"}, {"name": "MemoryError", "kind": "LocalType"}, {"name": "NameError", "kind": "LocalType"}, {"name": "ReferenceError", "kind": "LocalType"}, {"name": "RuntimeError", "kind": "LocalType"}, {"name": "StopAsyncIteration", "kind": "LocalType"}, {"name": "SyntaxError", "kind": "LocalType"}, {"name": "SystemError", "kind": "LocalType"}, {"name": "TypeError", "kind": "LocalType"}, {"name": "ValueError", "kind": "LocalType"}, {"name": "FloatingPointError", "kind": "LocalType"}, {"name": "OverflowError", "kind": "LocalType"}, {"name": "ZeroDivisionError", "kind": "LocalType"}, {"name": "ModuleNotFoundError", "kind": "LocalType"}, {"name": "IndexError", "kind": "LocalType"}, {"name": "KeyError", "kind": "LocalType"}, {"name": "UnboundLocalError", "kind": "LocalType"}, {"name": "BlockingIOError", "kind": "LocalType"}, {"name": "ChildProcessError", "kind": "LocalType"}, {"name": "ConnectionError", "kind": "LocalType"}, {"name": "BrokenPipeError", "kind": "LocalType"}, {"name": "ConnectionAbortedError", "kind": "LocalType"}, {"name": "ConnectionRefusedError", "kind": "LocalType"}, {"name": "ConnectionResetError", "kind": "LocalType"}, {"name": "FileExistsError", "kind": "LocalType"}, {"name": "FileNotFoundError", "kind": "LocalType"}, {"name": "InterruptedError", "kind": "LocalType"}, {"name": "IsADirectoryError", "kind": "LocalType"}, {"name": "NotADirectoryError", "kind": "LocalType"}, {"name": "PermissionError", "kind": "LocalType"}, {"name": "ProcessLookupError", "kind": "LocalType"}, {"name": "TimeoutError", "kind": "LocalType"}, {"name": "NotImplementedError", "kind": "LocalType"}, {"name": "RecursionError", "kind": "LocalType"}, {"name": "IndentationError", "kind": "LocalType"}, {"name": "TabError", "kind": "LocalType"}, {"name": "UnicodeError", "kind": "LocalType"}, {"name": "UnicodeDecodeError", "kind": "LocalType"}, {"name": "UnicodeEncodeError", "kind": "LocalType"}, {"name": "UnicodeTranslateError", "kind": "LocalType"}, {"name": "Warning", "kind": "LocalType"}, {"name": "UserWarning", "kind": "LocalType"}, {"name": "DeprecationWarning", "kind": "LocalType"}, {"name": "SyntaxWarning", "kind": "LocalType"}, {"name": "RuntimeWarning", "kind": "LocalType"}, {"name": "FutureWarning", "kind": "LocalType"}, {"name": "PendingDeprecationWarning", "kind": "LocalType"}, {"name": "ImportWarning", "kind": "LocalType"}, {"name": "UnicodeWarning", "kind": "LocalType"}, {"name": "BytesWarning", "kind": "LocalType"}, {"name": "ResourceWarning", "kind": "LocalType"}, {"name": "EncodingWarning", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "sys": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "_object", "kind": "ImportedType", "fullname": "builtins.object"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "PathEntryFinder", "kind": "ImportedType", "fullname": "importlib.abc.PathEntryFinder"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ExitCode", "kind": "Other"}, {"name": "_OptExcInfo", "kind": "Other"}, {"name": "_MetaPathFinder", "kind": "LocalType"}, {"name": "abiflags", "kind": "Other"}, {"name": "argv", "kind": "Other"}, {"name": "base_exec_prefix", "kind": "Other"}, {"name": "base_prefix", "kind": "Other"}, {"name": "byteorder", "kind": "Other"}, {"name": "builtin_module_names", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "dont_write_bytecode", "kind": "Other"}, {"name": "displayhook", "kind": "Other"}, {"name": "excepthook", "kind": "Other"}, {"name": "exec_prefix", "kind": "Other"}, {"name": "executable", "kind": "Other"}, {"name": "float_repr_style", "kind": "Other"}, {"name": "hexversion", "kind": "Other"}, {"name": "last_type", "kind": "Other"}, {"name": "last_value", "kind": "Other"}, {"name": "last_traceback", "kind": "Other"}, {"name": "maxsize", "kind": "Other"}, {"name": "maxunicode", "kind": "Other"}, {"name": "meta_path", "kind": "Other"}, {"name": "modules", "kind": "Other"}, {"name": "orig_argv", "kind": "Other"}, {"name": "path", "kind": "Other"}, {"name": "path_hooks", "kind": "Other"}, {"name": "path_importer_cache", "kind": "Other"}, {"name": "platform", "kind": "Other"}, {"name": "platlibdir", "kind": "Other"}, {"name": "prefix", "kind": "Other"}, {"name": "pycache_prefix", "kind": "Other"}, {"name": "ps1", "kind": "Other"}, {"name": "ps2", "kind": "Other"}, {"name": "stdin", "kind": "Other"}, {"name": "stdout", "kind": "Other"}, {"name": "stderr", "kind": "Other"}, {"name": "stdlib_module_names", "kind": "Other"}, {"name": "__stdin__", "kind": "Other"}, {"name": "__stdout__", "kind": "Other"}, {"name": "__stderr__", "kind": "Other"}, {"name": "tracebacklimit", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "api_version", "kind": "Other"}, {"name": "warnoptions", "kind": "Other"}, {"name": "_xoptions", "kind": "Other"}, {"name": "_UninstantiableStructseq", "kind": "Other"}, {"name": "flags", "kind": "Other"}, {"name": "_FlagTuple", "kind": "Other"}, {"name": "_flags", "kind": "LocalType"}, {"name": "float_info", "kind": "Other"}, {"name": "_float_info", "kind": "LocalType"}, {"name": "hash_info", "kind": "Other"}, {"name": "_hash_info", "kind": "LocalType"}, {"name": "implementation", "kind": "Other"}, {"name": "_implementation", "kind": "LocalType"}, {"name": "int_info", "kind": "Other"}, {"name": "_int_info", "kind": "LocalType"}, {"name": "_ThreadInfoName", "kind": "Other"}, {"name": "_ThreadInfoLock", "kind": "Other"}, {"name": "_thread_info", "kind": "LocalType"}, {"name": "thread_info", "kind": "Other"}, {"name": "_version_info", "kind": "LocalType"}, {"name": "version_info", "kind": "Other"}, {"name": "call_tracing", "kind": "Other"}, {"name": "_clear_type_cache", "kind": "Other"}, {"name": "_current_frames", "kind": "Other"}, {"name": "_getframe", "kind": "Other"}, {"name": "_debugmallocstats", "kind": "Other"}, {"name": "__displayhook__", "kind": "Other"}, {"name": "__excepthook__", "kind": "Other"}, {"name": "exc_info", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "getallocatedblocks", "kind": "Other"}, {"name": "getdefaultencoding", "kind": "Other"}, {"name": "getdlopenflags", "kind": "Other"}, {"name": "getfilesystemencoding", "kind": "Other"}, {"name": "getfilesystemencodeerrors", "kind": "Other"}, {"name": "getrefcount", "kind": "Other"}, {"name": "getrecursionlimit", "kind": "Other"}, {"name": "getsizeof", "kind": "Other"}, {"name": "getswitchinterval", "kind": "Other"}, {"name": "getprofile", "kind": "Other"}, {"name": "setprofile", "kind": "Other"}, {"name": "gettrace", "kind": "Other"}, {"name": "settrace", "kind": "Other"}, {"name": "intern", "kind": "Other"}, {"name": "is_finalizing", "kind": "Other"}, {"name": "breakpointhook", "kind": "Other"}, {"name": "__breakpointhook__", "kind": "Other"}, {"name": "setdlopenflags", "kind": "Other"}, {"name": "setrecursionlimit", "kind": "Other"}, {"name": "setswitchinterval", "kind": "Other"}, {"name": "gettotalrefcount", "kind": "Other"}, {"name": "UnraisableHookArgs", "kind": "LocalType"}, {"name": "unraisablehook", "kind": "Other"}, {"name": "__unraisablehook__", "kind": "Other"}, {"name": "addaudithook", "kind": "Other"}, {"name": "audit", "kind": "Other"}, {"name": "_AsyncgenHook", "kind": "Other"}, {"name": "_asyncgen_hooks", "kind": "LocalType"}, {"name": "get_asyncgen_hooks", "kind": "Other"}, {"name": "set_asyncgen_hooks", "kind": "Other"}, {"name": "get_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_int_max_str_digits", "kind": "Other"}, {"name": "get_int_max_str_digits", "kind": "Other"}], "typing_extensions": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing", "kind": "Module", "fullname": "typing"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "List", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Set", "kind": "Other"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Text", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Tuple", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "cast", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "Protocol", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "runtime", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "IntVar", "kind": "Other"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "TypedDict", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "_AnnotatedAlias", "kind": "Other"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "Never", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "assert_never", "kind": "Other"}, {"name": "assert_type", "kind": "Other"}, {"name": "clear_overloads", "kind": "Other"}, {"name": "get_overloads", "kind": "Other"}, {"name": "Required", "kind": "Other"}, {"name": "NotRequired", "kind": "Other"}, {"name": "Unpack", "kind": "Other"}, {"name": "dataclass_transform", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "TypeVarTuple", "kind": "LocalType"}, {"name": "deprecated", "kind": "Other"}, {"name": "override", "kind": "Other"}, {"name": "get_original_bases", "kind": "Other"}, {"name": "TypeAliasType", "kind": "LocalType"}, {"name": "Buffer", "kind": "LocalType"}, {"name": "is_protocol", "kind": "Other"}, {"name": "get_protocol_members", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}], "_collections_abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "MappingProxyType", "kind": "ImportedType", "fullname": "types.MappingProxyType"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Protocol", "kind": "Other"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "dict_keys", "kind": "LocalType"}, {"name": "dict_values", "kind": "LocalType"}, {"name": "dict_items", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "_typeshed": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Field", "kind": "ImportedType", "fullname": "dataclasses.Field"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Buffer", "kind": "ImportedType", "fullname": "typing_extensions.Buffer"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_KT_contra", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "Incomplete", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "IdentityFunction", "kind": "LocalType"}, {"name": "SupportsNext", "kind": "LocalType"}, {"name": "SupportsAnext", "kind": "LocalType"}, {"name": "SupportsDunderLT", "kind": "LocalType"}, {"name": "SupportsDunderGT", "kind": "LocalType"}, {"name": "SupportsDunderLE", "kind": "LocalType"}, {"name": "SupportsDunderGE", "kind": "LocalType"}, {"name": "SupportsAllComparisons", "kind": "LocalType"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "SupportsAdd", "kind": "LocalType"}, {"name": "SupportsRAdd", "kind": "LocalType"}, {"name": "SupportsSub", "kind": "LocalType"}, {"name": "SupportsRSub", "kind": "LocalType"}, {"name": "SupportsDivMod", "kind": "LocalType"}, {"name": "SupportsRDivMod", "kind": "LocalType"}, {"name": "SupportsIter", "kind": "LocalType"}, {"name": "SupportsAiter", "kind": "LocalType"}, {"name": "SupportsLenAndGetItem", "kind": "LocalType"}, {"name": "SupportsTrunc", "kind": "LocalType"}, {"name": "SupportsItems", "kind": "LocalType"}, {"name": "SupportsKeysAndGetItem", "kind": "LocalType"}, {"name": "SupportsGetItem", "kind": "LocalType"}, {"name": "SupportsItemAccess", "kind": "LocalType"}, {"name": "StrPath", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "OpenTextModeUpdating", "kind": "Other"}, {"name": "OpenTextModeWriting", "kind": "Other"}, {"name": "OpenTextModeReading", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "HasFileno", "kind": "LocalType"}, {"name": "FileDescriptor", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "SupportsRead", "kind": "LocalType"}, {"name": "SupportsReadline", "kind": "LocalType"}, {"name": "SupportsNoArgReadline", "kind": "LocalType"}, {"name": "SupportsWrite", "kind": "LocalType"}, {"name": "ReadOnlyBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "LocalType"}, {"name": "IndexableBuffer", "kind": "LocalType"}, {"name": "SupportsGetItemBuffer", "kind": "LocalType"}, {"name": "SizedBuffer", "kind": "LocalType"}, {"name": "_BufferWithLen", "kind": "Other"}, {"name": "ExcInfo", "kind": "Other"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "NoneType", "kind": "ImportedType", "fullname": "types.NoneType"}, {"name": "structseq", "kind": "LocalType"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "StrOrLiteralStr", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "DataclassInstance", "kind": "LocalType"}], "abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Concatenate", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "ABCMeta", "kind": "LocalType"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "abstractclassmethod", "kind": "LocalType"}, {"name": "abstractstaticmethod", "kind": "LocalType"}, {"name": "abstractproperty", "kind": "LocalType"}, {"name": "ABC", "kind": "LocalType"}, {"name": "get_cache_token", "kind": "Other"}, {"name": "update_abstractmethods", "kind": "Other"}], "contextlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_io", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_ExitFunc", "kind": "Other"}, {"name": "_CM_EF", "kind": "Other"}, {"name": "AbstractContextManager", "kind": "LocalType"}, {"name": "AbstractAsyncContextManager", "kind": "LocalType"}, {"name": "ContextDecorator", "kind": "LocalType"}, {"name": "_GeneratorContextManager", "kind": "LocalType"}, {"name": "contextmanager", "kind": "Other"}, {"name": "_AF", "kind": "Other"}, {"name": "AsyncContextDecorator", "kind": "LocalType"}, {"name": "_AsyncGeneratorContextManager", "kind": "LocalType"}, {"name": "asynccontextmanager", "kind": "Other"}, {"name": "_SupportsClose", "kind": "LocalType"}, {"name": "_SupportsCloseT", "kind": "Other"}, {"name": "closing", "kind": "LocalType"}, {"name": "_SupportsAclose", "kind": "LocalType"}, {"name": "_SupportsAcloseT", "kind": "Other"}, {"name": "aclosing", "kind": "LocalType"}, {"name": "suppress", "kind": "LocalType"}, {"name": "_RedirectStream", "kind": "LocalType"}, {"name": "redirect_stdout", "kind": "LocalType"}, {"name": "redirect_stderr", "kind": "LocalType"}, {"name": "ExitStack", "kind": "LocalType"}, {"name": "_ExitCoroFunc", "kind": "Other"}, {"name": "_ACM_EF", "kind": "Other"}, {"name": "AsyncExitStack", "kind": "LocalType"}, {"name": "nullcontext", "kind": "LocalType"}], "re": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sre_compile", "kind": "Module", "fullname": "sre_compile"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "Match", "kind": "LocalType"}, {"name": "Pattern", "kind": "LocalType"}, {"name": "RegexFlag", "kind": "LocalType"}, {"name": "A", "kind": "Other"}, {"name": "ASCII", "kind": "Other"}, {"name": "DEBUG", "kind": "Other"}, {"name": "I", "kind": "Other"}, {"name": "IGNORECASE", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "LOCALE", "kind": "Other"}, {"name": "M", "kind": "Other"}, {"name": "MULTILINE", "kind": "Other"}, {"name": "S", "kind": "Other"}, {"name": "DOTALL", "kind": "Other"}, {"name": "X", "kind": "Other"}, {"name": "VERBOSE", "kind": "Other"}, {"name": "U", "kind": "Other"}, {"name": "UNICODE", "kind": "Other"}, {"name": "T", "kind": "Other"}, {"name": "TEMPLATE", "kind": "Other"}, {"name": "_FlagsType", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "search", "kind": "Other"}, {"name": "match", "kind": "Other"}, {"name": "fullmatch", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "findall", "kind": "Other"}, {"name": "finditer", "kind": "Other"}, {"name": "sub", "kind": "Other"}, {"name": "subn", "kind": "Other"}, {"name": "escape", "kind": "Other"}, {"name": "purge", "kind": "Other"}, {"name": "template", "kind": "Other"}], "types": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeVarTuple", "kind": "ImportedType", "fullname": "typing_extensions.TypeVarTuple"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_Cell", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "LambdaType", "kind": "Other"}, {"name": "CodeType", "kind": "LocalType"}, {"name": "MappingProxyType", "kind": "LocalType"}, {"name": "SimpleNamespace", "kind": "LocalType"}, {"name": "_LoaderProtocol", "kind": "LocalType"}, {"name": "ModuleType", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "GeneratorType", "kind": "LocalType"}, {"name": "AsyncGeneratorType", "kind": "LocalType"}, {"name": "CoroutineType", "kind": "LocalType"}, {"name": "_StaticFunctionType", "kind": "LocalType"}, {"name": "MethodType", "kind": "LocalType"}, {"name": "BuiltinFunctionType", "kind": "LocalType"}, {"name": "BuiltinMethodType", "kind": "Other"}, {"name": "WrapperDescriptorType", "kind": "LocalType"}, {"name": "MethodWrapperType", "kind": "LocalType"}, {"name": "MethodDescriptorType", "kind": "LocalType"}, {"name": "ClassMethodDescriptorType", "kind": "LocalType"}, {"name": "TracebackType", "kind": "LocalType"}, {"name": "FrameType", "kind": "LocalType"}, {"name": "GetSetDescriptorType", "kind": "LocalType"}, {"name": "MemberDescriptorType", "kind": "LocalType"}, {"name": "new_class", "kind": "Other"}, {"name": "resolve_bases", "kind": "Other"}, {"name": "prepare_class", "kind": "Other"}, {"name": "DynamicClassAttribute", "kind": "Other"}, {"name": "_Fn", "kind": "Other"}, {"name": "_R", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "coroutine", "kind": "Other"}, {"name": "CellType", "kind": "Other"}, {"name": "GenericAlias", "kind": "LocalType"}, {"name": "NoneType", "kind": "LocalType"}, {"name": "EllipsisType", "kind": "Other"}, {"name": "_NotImplementedType", "kind": "ImportedType", "fullname": "builtins._NotImplementedType"}, {"name": "NotImplementedType", "kind": "Other"}, {"name": "UnionType", "kind": "LocalType"}], "collections.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}], "time": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_TimeTuple", "kind": "Other"}, {"name": "altzone", "kind": "Other"}, {"name": "daylight", "kind": "Other"}, {"name": "timezone", "kind": "Other"}, {"name": "tzname", "kind": "Other"}, {"name": "CLOCK_BOOTTIME", "kind": "Other"}, {"name": "CLOCK_MONOTONIC", "kind": "Other"}, {"name": "CLOCK_MONOTONIC_RAW", "kind": "Other"}, {"name": "CLOCK_PROCESS_CPUTIME_ID", "kind": "Other"}, {"name": "CLOCK_REALTIME", "kind": "Other"}, {"name": "CLOCK_THREAD_CPUTIME_ID", "kind": "Other"}, {"name": "CLOCK_TAI", "kind": "Other"}, {"name": "struct_time", "kind": "LocalType"}, {"name": "asctime", "kind": "Other"}, {"name": "ctime", "kind": "Other"}, {"name": "gmtime", "kind": "Other"}, {"name": "localtime", "kind": "Other"}, {"name": "mktime", "kind": "Other"}, {"name": "sleep", "kind": "Other"}, {"name": "strftime", "kind": "Other"}, {"name": "strptime", "kind": "Other"}, {"name": "time", "kind": "Other"}, {"name": "tzset", "kind": "Other"}, {"name": "_ClockInfo", "kind": "LocalType"}, {"name": "get_clock_info", "kind": "Other"}, {"name": "monotonic", "kind": "Other"}, {"name": "perf_counter", "kind": "Other"}, {"name": "process_time", "kind": "Other"}, {"name": "clock_getres", "kind": "Other"}, {"name": "clock_gettime", "kind": "Other"}, {"name": "clock_settime", "kind": "Other"}, {"name": "clock_gettime_ns", "kind": "Other"}, {"name": "clock_settime_ns", "kind": "Other"}, {"name": "pthread_getcpuclockid", "kind": "Other"}, {"name": "monotonic_ns", "kind": "Other"}, {"name": "perf_counter_ns", "kind": "Other"}, {"name": "process_time_ns", "kind": "Other"}, {"name": "time_ns", "kind": "Other"}, {"name": "thread_time", "kind": "Other"}, {"name": "thread_time_ns", "kind": "Other"}], "_ast": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "PyCF_ONLY_AST", "kind": "Other"}, {"name": "PyCF_TYPE_COMMENTS", "kind": "Other"}, {"name": "PyCF_ALLOW_TOP_LEVEL_AWAIT", "kind": "Other"}, {"name": "_Identifier", "kind": "Other"}, {"name": "AST", "kind": "LocalType"}, {"name": "mod", "kind": "LocalType"}, {"name": "type_ignore", "kind": "LocalType"}, {"name": "TypeIgnore", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "Module", "kind": "LocalType"}, {"name": "Interactive", "kind": "LocalType"}, {"name": "Expression", "kind": "LocalType"}, {"name": "stmt", "kind": "LocalType"}, {"name": "FunctionDef", "kind": "LocalType"}, {"name": "AsyncFunctionDef", "kind": "LocalType"}, {"name": "ClassDef", "kind": "LocalType"}, {"name": "Return", "kind": "LocalType"}, {"name": "Delete", "kind": "LocalType"}, {"name": "Assign", "kind": "LocalType"}, {"name": "AugAssign", "kind": "LocalType"}, {"name": "AnnAssign", "kind": "LocalType"}, {"name": "For", "kind": "LocalType"}, {"name": "AsyncFor", "kind": "LocalType"}, {"name": "While", "kind": "LocalType"}, {"name": "If", "kind": "LocalType"}, {"name": "With", "kind": "LocalType"}, {"name": "AsyncWith", "kind": "LocalType"}, {"name": "Raise", "kind": "LocalType"}, {"name": "Try", "kind": "LocalType"}, {"name": "Assert", "kind": "LocalType"}, {"name": "Import", "kind": "LocalType"}, {"name": "ImportFrom", "kind": "LocalType"}, {"name": "Global", "kind": "LocalType"}, {"name": "Nonlocal", "kind": "LocalType"}, {"name": "Expr", "kind": "LocalType"}, {"name": "Pass", "kind": "LocalType"}, {"name": "Break", "kind": "LocalType"}, {"name": "Continue", "kind": "LocalType"}, {"name": "expr", "kind": "LocalType"}, {"name": "BoolOp", "kind": "LocalType"}, {"name": "BinOp", "kind": "LocalType"}, {"name": "UnaryOp", "kind": "LocalType"}, {"name": "Lambda", "kind": "LocalType"}, {"name": "IfExp", "kind": "LocalType"}, {"name": "Dict", "kind": "LocalType"}, {"name": "Set", "kind": "LocalType"}, {"name": "ListComp", "kind": "LocalType"}, {"name": "SetComp", "kind": "LocalType"}, {"name": "DictComp", "kind": "LocalType"}, {"name": "GeneratorExp", "kind": "LocalType"}, {"name": "Await", "kind": "LocalType"}, {"name": "Yield", "kind": "LocalType"}, {"name": "YieldFrom", "kind": "LocalType"}, {"name": "Compare", "kind": "LocalType"}, {"name": "Call", "kind": "LocalType"}, {"name": "FormattedValue", "kind": "LocalType"}, {"name": "JoinedStr", "kind": "LocalType"}, {"name": "Constant", "kind": "LocalType"}, {"name": "NamedExpr", "kind": "LocalType"}, {"name": "Attribute", "kind": "LocalType"}, {"name": "_Slice", "kind": "Other"}, {"name": "Slice", "kind": "LocalType"}, {"name": "Subscript", "kind": "LocalType"}, {"name": "Starred", "kind": "LocalType"}, {"name": "Name", "kind": "LocalType"}, {"name": "List", "kind": "LocalType"}, {"name": "Tuple", "kind": "LocalType"}, {"name": "expr_context", "kind": "LocalType"}, {"name": "Del", "kind": "LocalType"}, {"name": "Load", "kind": "LocalType"}, {"name": "Store", "kind": "LocalType"}, {"name": "boolop", "kind": "LocalType"}, {"name": "And", "kind": "LocalType"}, {"name": "Or", "kind": "LocalType"}, {"name": "operator", "kind": "LocalType"}, {"name": "Add", "kind": "LocalType"}, {"name": "BitAnd", "kind": "LocalType"}, {"name": "BitOr", "kind": "LocalType"}, {"name": "BitXor", "kind": "LocalType"}, {"name": "Div", "kind": "LocalType"}, {"name": "FloorDiv", "kind": "LocalType"}, {"name": "LShift", "kind": "LocalType"}, {"name": "Mod", "kind": "LocalType"}, {"name": "Mult", "kind": "LocalType"}, {"name": "MatMult", "kind": "LocalType"}, {"name": "Pow", "kind": "LocalType"}, {"name": "RShift", "kind": "LocalType"}, {"name": "Sub", "kind": "LocalType"}, {"name": "unaryop", "kind": "LocalType"}, {"name": "Invert", "kind": "LocalType"}, {"name": "Not", "kind": "LocalType"}, {"name": "UAdd", "kind": "LocalType"}, {"name": "USub", "kind": "LocalType"}, {"name": "cmpop", "kind": "LocalType"}, {"name": "Eq", "kind": "LocalType"}, {"name": "Gt", "kind": "LocalType"}, {"name": "GtE", "kind": "LocalType"}, {"name": "In", "kind": "LocalType"}, {"name": "Is", "kind": "LocalType"}, {"name": "IsNot", "kind": "LocalType"}, {"name": "Lt", "kind": "LocalType"}, {"name": "LtE", "kind": "LocalType"}, {"name": "NotEq", "kind": "LocalType"}, {"name": "NotIn", "kind": "LocalType"}, {"name": "comprehension", "kind": "LocalType"}, {"name": "excepthandler", "kind": "LocalType"}, {"name": "ExceptHandler", "kind": "LocalType"}, {"name": "arguments", "kind": "LocalType"}, {"name": "arg", "kind": "LocalType"}, {"name": "keyword", "kind": "LocalType"}, {"name": "alias", "kind": "LocalType"}, {"name": "withitem", "kind": "LocalType"}, {"name": "Match", "kind": "LocalType"}, {"name": "pattern", "kind": "LocalType"}, {"name": "_Pattern", "kind": "Other"}, {"name": "match_case", "kind": "LocalType"}, {"name": "MatchValue", "kind": "LocalType"}, {"name": "MatchSingleton", "kind": "LocalType"}, {"name": "MatchSequence", "kind": "LocalType"}, {"name": "MatchStar", "kind": "LocalType"}, {"name": "MatchMapping", "kind": "LocalType"}, {"name": "MatchClass", "kind": "LocalType"}, {"name": "MatchAs", "kind": "LocalType"}, {"name": "MatchOr", "kind": "LocalType"}], "io": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "builtins", "kind": "Module", "fullname": "builtins"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "_Opener", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "DEFAULT_BUFFER_SIZE", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "open_code", "kind": "Other"}, {"name": "BlockingIOError", "kind": "Other"}, {"name": "UnsupportedOperation", "kind": "LocalType"}, {"name": "IOBase", "kind": "LocalType"}, {"name": "RawIOBase", "kind": "LocalType"}, {"name": "BufferedIOBase", "kind": "LocalType"}, {"name": "FileIO", "kind": "LocalType"}, {"name": "BytesIO", "kind": "LocalType"}, {"name": "BufferedReader", "kind": "LocalType"}, {"name": "BufferedWriter", "kind": "LocalType"}, {"name": "BufferedRandom", "kind": "LocalType"}, {"name": "BufferedRWPair", "kind": "LocalType"}, {"name": "TextIOBase", "kind": "LocalType"}, {"name": "TextIOWrapper", "kind": "LocalType"}, {"name": "StringIO", "kind": "LocalType"}, {"name": "IncrementalNewlineDecoder", "kind": "LocalType"}], "importlib.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_ast", "kind": "Module", "fullname": "_ast"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Finder", "kind": "LocalType"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ResourceLoader", "kind": "LocalType"}, {"name": "InspectLoader", "kind": "LocalType"}, {"name": "ExecutionLoader", "kind": "LocalType"}, {"name": "SourceLoader", "kind": "LocalType"}, {"name": "MetaPathFinder", "kind": "LocalType"}, {"name": "PathEntryFinder", "kind": "LocalType"}, {"name": "FileLoader", "kind": "LocalType"}, {"name": "ResourceReader", "kind": "LocalType"}, {"name": "Traversable", "kind": "LocalType"}, {"name": "TraversableResources", "kind": "LocalType"}], "importlib.machinery": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "importlib", "kind": "Module", "fullname": "importlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "DistributionFinder", "kind": "ImportedType", "fullname": "importlib.metadata.DistributionFinder"}, {"name": "PathDistribution", "kind": "ImportedType", "fullname": "importlib.metadata.PathDistribution"}, {"name": "ModuleSpec", "kind": "LocalType"}, {"name": "BuiltinImporter", "kind": "LocalType"}, {"name": "FrozenImporter", "kind": "LocalType"}, {"name": "WindowsRegistryFinder", "kind": "LocalType"}, {"name": "PathFinder", "kind": "LocalType"}, {"name": "SOURCE_SUFFIXES", "kind": "Other"}, {"name": "DEBUG_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "OPTIMIZED_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "EXTENSION_SUFFIXES", "kind": "Other"}, {"name": "all_suffixes", "kind": "Other"}, {"name": "FileFinder", "kind": "LocalType"}, {"name": "SourceFileLoader", "kind": "LocalType"}, {"name": "SourcelessFileLoader", "kind": "LocalType"}, {"name": "ExtensionFileLoader", "kind": "LocalType"}], "dataclasses": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "DataclassInstance", "kind": "ImportedType", "fullname": "_typeshed.DataclassInstance"}, {"name": "Type", "kind": "ImportedType", "fullname": "builtins.type"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_DataclassT", "kind": "Other"}, {"name": "_MISSING_TYPE", "kind": "LocalType"}, {"name": "MISSING", "kind": "Other"}, {"name": "KW_ONLY", "kind": "LocalType"}, {"name": "asdict", "kind": "Other"}, {"name": "astuple", "kind": "Other"}, {"name": "dataclass", "kind": "Other"}, {"name": "_DefaultFactory", "kind": "LocalType"}, {"name": "Field", "kind": "LocalType"}, {"name": "field", "kind": "Other"}, {"name": "fields", "kind": "Other"}, {"name": "is_dataclass", "kind": "Other"}, {"name": "FrozenInstanceError", "kind": "LocalType"}, {"name": "_InitVarMeta", "kind": "Other"}, {"name": "InitVar", "kind": "LocalType"}, {"name": "make_dataclass", "kind": "Other"}, {"name": "replace", "kind": "Other"}], "os": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "OSError", "kind": "ImportedType", "fullname": "builtins.OSError"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "_TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "Popen", "kind": "ImportedType", "fullname": "subprocess.Popen"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_path", "kind": "Module", "fullname": "os.path"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "path", "kind": "Module", "fullname": "os.path"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "supports_bytes_environ", "kind": "Other"}, {"name": "supports_dir_fd", "kind": "Other"}, {"name": "supports_fd", "kind": "Other"}, {"name": "supports_effective_ids", "kind": "Other"}, {"name": "supports_follow_symlinks", "kind": "Other"}, {"name": "PRIO_PROCESS", "kind": "Other"}, {"name": "PRIO_PGRP", "kind": "Other"}, {"name": "PRIO_USER", "kind": "Other"}, {"name": "F_LOCK", "kind": "Other"}, {"name": "F_TLOCK", "kind": "Other"}, {"name": "F_ULOCK", "kind": "Other"}, {"name": "F_TEST", "kind": "Other"}, {"name": "POSIX_FADV_NORMAL", "kind": "Other"}, {"name": "POSIX_FADV_SEQUENTIAL", "kind": "Other"}, {"name": "POSIX_FADV_RANDOM", "kind": "Other"}, {"name": "POSIX_FADV_NOREUSE", "kind": "Other"}, {"name": "POSIX_FADV_WILLNEED", "kind": "Other"}, {"name": "POSIX_FADV_DONTNEED", "kind": "Other"}, {"name": "SF_NODISKIO", "kind": "Other"}, {"name": "SF_MNOWAIT", "kind": "Other"}, {"name": "SF_SYNC", "kind": "Other"}, {"name": "XATTR_SIZE_MAX", "kind": "Other"}, {"name": "XATTR_CREATE", "kind": "Other"}, {"name": "XATTR_REPLACE", "kind": "Other"}, {"name": "P_PID", "kind": "Other"}, {"name": "P_PGID", "kind": "Other"}, {"name": "P_ALL", "kind": "Other"}, {"name": "P_PIDFD", "kind": "Other"}, {"name": "WEXITED", "kind": "Other"}, {"name": "WSTOPPED", "kind": "Other"}, {"name": "WNOWAIT", "kind": "Other"}, {"name": "CLD_EXITED", "kind": "Other"}, {"name": "CLD_DUMPED", "kind": "Other"}, {"name": "CLD_TRAPPED", "kind": "Other"}, {"name": "CLD_CONTINUED", "kind": "Other"}, {"name": "CLD_KILLED", "kind": "Other"}, {"name": "CLD_STOPPED", "kind": "Other"}, {"name": "SCHED_OTHER", "kind": "Other"}, {"name": "SCHED_BATCH", "kind": "Other"}, {"name": "SCHED_IDLE", "kind": "Other"}, {"name": "SCHED_SPORADIC", "kind": "Other"}, {"name": "SCHED_FIFO", "kind": "Other"}, {"name": "SCHED_RR", "kind": "Other"}, {"name": "SCHED_RESET_ON_FORK", "kind": "Other"}, {"name": "RTLD_LAZY", "kind": "Other"}, {"name": "RTLD_NOW", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "RTLD_NODELETE", "kind": "Other"}, {"name": "RTLD_NOLOAD", "kind": "Other"}, {"name": "RTLD_DEEPBIND", "kind": "Other"}, {"name": "GRND_NONBLOCK", "kind": "Other"}, {"name": "GRND_RANDOM", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "SEEK_DATA", "kind": "Other"}, {"name": "SEEK_HOLE", "kind": "Other"}, {"name": "O_RDONLY", "kind": "Other"}, {"name": "O_WRONLY", "kind": "Other"}, {"name": "O_RDWR", "kind": "Other"}, {"name": "O_APPEND", "kind": "Other"}, {"name": "O_CREAT", "kind": "Other"}, {"name": "O_EXCL", "kind": "Other"}, {"name": "O_TRUNC", "kind": "Other"}, {"name": "O_DSYNC", "kind": "Other"}, {"name": "O_RSYNC", "kind": "Other"}, {"name": "O_SYNC", "kind": "Other"}, {"name": "O_NDELAY", "kind": "Other"}, {"name": "O_NONBLOCK", "kind": "Other"}, {"name": "O_NOCTTY", "kind": "Other"}, {"name": "O_CLOEXEC", "kind": "Other"}, {"name": "O_SHLOCK", "kind": "Other"}, {"name": "O_EXLOCK", "kind": "Other"}, {"name": "O_BINARY", "kind": "Other"}, {"name": "O_NOINHERIT", "kind": "Other"}, {"name": "O_SHORT_LIVED", "kind": "Other"}, {"name": "O_TEMPORARY", "kind": "Other"}, {"name": "O_RANDOM", "kind": "Other"}, {"name": "O_SEQUENTIAL", "kind": "Other"}, {"name": "O_TEXT", "kind": "Other"}, {"name": "O_ASYNC", "kind": "Other"}, {"name": "O_DIRECT", "kind": "Other"}, {"name": "O_DIRECTORY", "kind": "Other"}, {"name": "O_NOFOLLOW", "kind": "Other"}, {"name": "O_NOATIME", "kind": "Other"}, {"name": "O_PATH", "kind": "Other"}, {"name": "O_TMPFILE", "kind": "Other"}, {"name": "O_LARGEFILE", "kind": "Other"}, {"name": "O_ACCMODE", "kind": "Other"}, {"name": "ST_APPEND", "kind": "Other"}, {"name": "ST_MANDLOCK", "kind": "Other"}, {"name": "ST_NOATIME", "kind": "Other"}, {"name": "ST_NODEV", "kind": "Other"}, {"name": "ST_NODIRATIME", "kind": "Other"}, {"name": "ST_NOEXEC", "kind": "Other"}, {"name": "ST_RELATIME", "kind": "Other"}, {"name": "ST_SYNCHRONOUS", "kind": "Other"}, {"name": "ST_WRITE", "kind": "Other"}, {"name": "NGROUPS_MAX", "kind": "Other"}, {"name": "ST_NOSUID", "kind": "Other"}, {"name": "ST_RDONLY", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "linesep", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "name", "kind": "Other"}, {"name": "F_OK", "kind": "Other"}, {"name": "R_OK", "kind": "Other"}, {"name": "W_OK", "kind": "Other"}, {"name": "X_OK", "kind": "Other"}, {"name": "_EnvironCodeFunc", "kind": "Other"}, {"name": "_Environ", "kind": "LocalType"}, {"name": "environ", "kind": "Other"}, {"name": "environb", "kind": "Other"}, {"name": "confstr_names", "kind": "Other"}, {"name": "pathconf_names", "kind": "Other"}, {"name": "sysconf_names", "kind": "Other"}, {"name": "EX_OK", "kind": "Other"}, {"name": "EX_USAGE", "kind": "Other"}, {"name": "EX_DATAERR", "kind": "Other"}, {"name": "EX_NOINPUT", "kind": "Other"}, {"name": "EX_NOUSER", "kind": "Other"}, {"name": "EX_NOHOST", "kind": "Other"}, {"name": "EX_UNAVAILABLE", "kind": "Other"}, {"name": "EX_SOFTWARE", "kind": "Other"}, {"name": "EX_OSERR", "kind": "Other"}, {"name": "EX_OSFILE", "kind": "Other"}, {"name": "EX_CANTCREAT", "kind": "Other"}, {"name": "EX_IOERR", "kind": "Other"}, {"name": "EX_TEMPFAIL", "kind": "Other"}, {"name": "EX_PROTOCOL", "kind": "Other"}, {"name": "EX_NOPERM", "kind": "Other"}, {"name": "EX_CONFIG", "kind": "Other"}, {"name": "EX_NOTFOUND", "kind": "Other"}, {"name": "P_NOWAIT", "kind": "Other"}, {"name": "P_NOWAITO", "kind": "Other"}, {"name": "P_WAIT", "kind": "Other"}, {"name": "WNOHANG", "kind": "Other"}, {"name": "WCONTINUED", "kind": "Other"}, {"name": "WUNTRACED", "kind": "Other"}, {"name": "TMP_MAX", "kind": "Other"}, {"name": "stat_result", "kind": "LocalType"}, {"name": "PathLike", "kind": "LocalType"}, {"name": "listdir", "kind": "Other"}, {"name": "DirEntry", "kind": "LocalType"}, {"name": "statvfs_result", "kind": "LocalType"}, {"name": "fsencode", "kind": "Other"}, {"name": "fsdecode", "kind": "Other"}, {"name": "fspath", "kind": "Other"}, {"name": "get_exec_path", "kind": "Other"}, {"name": "getlogin", "kind": "Other"}, {"name": "getpid", "kind": "Other"}, {"name": "getppid", "kind": "Other"}, {"name": "strerror", "kind": "Other"}, {"name": "umask", "kind": "Other"}, {"name": "uname_result", "kind": "LocalType"}, {"name": "ctermid", "kind": "Other"}, {"name": "getegid", "kind": "Other"}, {"name": "geteuid", "kind": "Other"}, {"name": "getgid", "kind": "Other"}, {"name": "getgrouplist", "kind": "Other"}, {"name": "getgroups", "kind": "Other"}, {"name": "initgroups", "kind": "Other"}, {"name": "getpgid", "kind": "Other"}, {"name": "getpgrp", "kind": "Other"}, {"name": "getpriority", "kind": "Other"}, {"name": "setpriority", "kind": "Other"}, {"name": "getresuid", "kind": "Other"}, {"name": "getresgid", "kind": "Other"}, {"name": "getuid", "kind": "Other"}, {"name": "setegid", "kind": "Other"}, {"name": "seteuid", "kind": "Other"}, {"name": "setgid", "kind": "Other"}, {"name": "setgroups", "kind": "Other"}, {"name": "setpgrp", "kind": "Other"}, {"name": "setpgid", "kind": "Other"}, {"name": "setregid", "kind": "Other"}, {"name": "setresgid", "kind": "Other"}, {"name": "setresuid", "kind": "Other"}, {"name": "setreuid", "kind": "Other"}, {"name": "getsid", "kind": "Other"}, {"name": "setsid", "kind": "Other"}, {"name": "setuid", "kind": "Other"}, {"name": "uname", "kind": "Other"}, {"name": "getenv", "kind": "Other"}, {"name": "getenvb", "kind": "Other"}, {"name": "putenv", "kind": "Other"}, {"name": "unsetenv", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "fdopen", "kind": "Other"}, {"name": "close", "kind": "Other"}, {"name": "closerange", "kind": "Other"}, {"name": "device_encoding", "kind": "Other"}, {"name": "dup", "kind": "Other"}, {"name": "dup2", "kind": "Other"}, {"name": "fstat", "kind": "Other"}, {"name": "ftruncate", "kind": "Other"}, {"name": "fsync", "kind": "Other"}, {"name": "isatty", "kind": "Other"}, {"name": "lseek", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "pipe", "kind": "Other"}, {"name": "read", "kind": "Other"}, {"name": "fchmod", "kind": "Other"}, {"name": "fchown", "kind": "Other"}, {"name": "fpathconf", "kind": "Other"}, {"name": "fstatvfs", "kind": "Other"}, {"name": "get_blocking", "kind": "Other"}, {"name": "set_blocking", "kind": "Other"}, {"name": "lockf", "kind": "Other"}, {"name": "openpty", "kind": "Other"}, {"name": "fdatasync", "kind": "Other"}, {"name": "pipe2", "kind": "Other"}, {"name": "posix_fallocate", "kind": "Other"}, {"name": "posix_fadvise", "kind": "Other"}, {"name": "pread", "kind": "Other"}, {"name": "pwrite", "kind": "Other"}, {"name": "preadv", "kind": "Other"}, {"name": "pwritev", "kind": "Other"}, {"name": "RWF_APPEND", "kind": "Other"}, {"name": "RWF_DSYNC", "kind": "Other"}, {"name": "RWF_SYNC", "kind": "Other"}, {"name": "RWF_HIPRI", "kind": "Other"}, {"name": "RWF_NOWAIT", "kind": "Other"}, {"name": "sendfile", "kind": "Other"}, {"name": "readv", "kind": "Other"}, {"name": "writev", "kind": "Other"}, {"name": "terminal_size", "kind": "LocalType"}, {"name": "get_terminal_size", "kind": "Other"}, {"name": "get_inheritable", "kind": "Other"}, {"name": "set_inheritable", "kind": "Other"}, {"name": "tcgetpgrp", "kind": "Other"}, {"name": "tcsetpgrp", "kind": "Other"}, {"name": "ttyname", "kind": "Other"}, {"name": "write", "kind": "Other"}, {"name": "access", "kind": "Other"}, {"name": "chdir", "kind": "Other"}, {"name": "fchdir", "kind": "Other"}, {"name": "getcwd", "kind": "Other"}, {"name": "getcwdb", "kind": "Other"}, {"name": "chmod", "kind": "Other"}, {"name": "chroot", "kind": "Other"}, {"name": "chown", "kind": "Other"}, {"name": "lchown", "kind": "Other"}, {"name": "link", "kind": "Other"}, {"name": "lstat", "kind": "Other"}, {"name": "mkdir", "kind": "Other"}, {"name": "mkfifo", "kind": "Other"}, {"name": "makedirs", "kind": "Other"}, {"name": "mknod", "kind": "Other"}, {"name": "major", "kind": "Other"}, {"name": "minor", "kind": "Other"}, {"name": "makedev", "kind": "Other"}, {"name": "pathconf", "kind": "Other"}, {"name": "readlink", "kind": "Other"}, {"name": "remove", "kind": "Other"}, {"name": "removedirs", "kind": "Other"}, {"name": "rename", "kind": "Other"}, {"name": "renames", "kind": "Other"}, {"name": "replace", "kind": "Other"}, {"name": "rmdir", "kind": "Other"}, {"name": "_ScandirIterator", "kind": "LocalType"}, {"name": "scandir", "kind": "Other"}, {"name": "stat", "kind": "Other"}, {"name": "statvfs", "kind": "Other"}, {"name": "symlink", "kind": "Other"}, {"name": "sync", "kind": "Other"}, {"name": "truncate", "kind": "Other"}, {"name": "unlink", "kind": "Other"}, {"name": "utime", "kind": "Other"}, {"name": "_OnError", "kind": "Other"}, {"name": "walk", "kind": "Other"}, {"name": "fwalk", "kind": "Other"}, {"name": "getxattr", "kind": "Other"}, {"name": "listxattr", "kind": "Other"}, {"name": "removexattr", "kind": "Other"}, {"name": "setxattr", "kind": "Other"}, {"name": "abort", "kind": "Other"}, {"name": "execl", "kind": "Other"}, {"name": "execlp", "kind": "Other"}, {"name": "execle", "kind": "Other"}, {"name": "execlpe", "kind": "Other"}, {"name": "_ExecVArgs", "kind": "Other"}, {"name": "_ExecEnv", "kind": "Other"}, {"name": "execv", "kind": "Other"}, {"name": "execve", "kind": "Other"}, {"name": "execvp", "kind": "Other"}, {"name": "execvpe", "kind": "Other"}, {"name": "_exit", "kind": "Other"}, {"name": "kill", "kind": "Other"}, {"name": "fork", "kind": "Other"}, {"name": "forkpty", "kind": "Other"}, {"name": "killpg", "kind": "Other"}, {"name": "nice", "kind": "Other"}, {"name": "plock", "kind": "Other"}, {"name": "_wrap_close", "kind": "LocalType"}, {"name": "popen", "kind": "Other"}, {"name": "spawnl", "kind": "Other"}, {"name": "spawnle", "kind": "Other"}, {"name": "spawnv", "kind": "Other"}, {"name": "spawnve", "kind": "Other"}, {"name": "system", "kind": "Other"}, {"name": "times_result", "kind": "LocalType"}, {"name": "times", "kind": "Other"}, {"name": "waitpid", "kind": "Other"}, {"name": "spawnlp", "kind": "Other"}, {"name": "spawnlpe", "kind": "Other"}, {"name": "spawnvp", "kind": "Other"}, {"name": "spawnvpe", "kind": "Other"}, {"name": "wait", "kind": "Other"}, {"name": "waitid_result", "kind": "LocalType"}, {"name": "waitid", "kind": "Other"}, {"name": "wait3", "kind": "Other"}, {"name": "wait4", "kind": "Other"}, {"name": "WCOREDUMP", "kind": "Other"}, {"name": "WIFCONTINUED", "kind": "Other"}, {"name": "WIFSTOPPED", "kind": "Other"}, {"name": "WIFSIGNALED", "kind": "Other"}, {"name": "WIFEXITED", "kind": "Other"}, {"name": "WEXITSTATUS", "kind": "Other"}, {"name": "WSTOPSIG", "kind": "Other"}, {"name": "WTERMSIG", "kind": "Other"}, {"name": "posix_spawn", "kind": "Other"}, {"name": "posix_spawnp", "kind": "Other"}, {"name": "POSIX_SPAWN_OPEN", "kind": "Other"}, {"name": "POSIX_SPAWN_CLOSE", "kind": "Other"}, {"name": "POSIX_SPAWN_DUP2", "kind": "Other"}, {"name": "sched_param", "kind": "LocalType"}, {"name": "sched_get_priority_min", "kind": "Other"}, {"name": "sched_get_priority_max", "kind": "Other"}, {"name": "sched_yield", "kind": "Other"}, {"name": "sched_setscheduler", "kind": "Other"}, {"name": "sched_getscheduler", "kind": "Other"}, {"name": "sched_rr_get_interval", "kind": "Other"}, {"name": "sched_setparam", "kind": "Other"}, {"name": "sched_getparam", "kind": "Other"}, {"name": "sched_setaffinity", "kind": "Other"}, {"name": "sched_getaffinity", "kind": "Other"}, {"name": "cpu_count", "kind": "Other"}, {"name": "confstr", "kind": "Other"}, {"name": "getloadavg", "kind": "Other"}, {"name": "sysconf", "kind": "Other"}, {"name": "getrandom", "kind": "Other"}, {"name": "urandom", "kind": "Other"}, {"name": "register_at_fork", "kind": "Other"}, {"name": "MFD_CLOEXEC", "kind": "Other"}, {"name": "MFD_ALLOW_SEALING", "kind": "Other"}, {"name": "MFD_HUGETLB", "kind": "Other"}, {"name": "MFD_HUGE_SHIFT", "kind": "Other"}, {"name": "MFD_HUGE_MASK", "kind": "Other"}, {"name": "MFD_HUGE_64KB", "kind": "Other"}, {"name": "MFD_HUGE_512KB", "kind": "Other"}, {"name": "MFD_HUGE_1MB", "kind": "Other"}, {"name": "MFD_HUGE_2MB", "kind": "Other"}, {"name": "MFD_HUGE_8MB", "kind": "Other"}, {"name": "MFD_HUGE_16MB", "kind": "Other"}, {"name": "MFD_HUGE_32MB", "kind": "Other"}, {"name": "MFD_HUGE_256MB", "kind": "Other"}, {"name": "MFD_HUGE_512MB", "kind": "Other"}, {"name": "MFD_HUGE_1GB", "kind": "Other"}, {"name": "MFD_HUGE_2GB", "kind": "Other"}, {"name": "MFD_HUGE_16GB", "kind": "Other"}, {"name": "memfd_create", "kind": "Other"}, {"name": "copy_file_range", "kind": "Other"}, {"name": "waitstatus_to_exitcode", "kind": "Other"}, {"name": "pidfd_open", "kind": "Other"}], "sre_compile": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NamedIntConstant", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "SubPattern", "kind": "ImportedType", "fullname": "sre_parse.SubPattern"}, {"name": "Any", "kind": "Other"}, {"name": "MAXCODE", "kind": "Other"}, {"name": "dis", "kind": "Other"}, {"name": "isstring", "kind": "Other"}, {"name": "compile", "kind": "Other"}], "sre_constants": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "LocalType"}, {"name": "_NamedIntConstant", "kind": "LocalType"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}], "codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "BOM32_BE", "kind": "Other"}, {"name": "BOM32_LE", "kind": "Other"}, {"name": "BOM64_BE", "kind": "Other"}, {"name": "BOM64_LE", "kind": "Other"}, {"name": "_WritableStream", "kind": "LocalType"}, {"name": "_ReadableStream", "kind": "LocalType"}, {"name": "_Stream", "kind": "LocalType"}, {"name": "_Encoder", "kind": "LocalType"}, {"name": "_Decoder", "kind": "LocalType"}, {"name": "_StreamReader", "kind": "LocalType"}, {"name": "_StreamWriter", "kind": "LocalType"}, {"name": "_IncrementalEncoder", "kind": "LocalType"}, {"name": "_IncrementalDecoder", "kind": "LocalType"}, {"name": "CodecInfo", "kind": "LocalType"}, {"name": "getencoder", "kind": "Other"}, {"name": "getdecoder", "kind": "Other"}, {"name": "getincrementalencoder", "kind": "Other"}, {"name": "getincrementaldecoder", "kind": "Other"}, {"name": "getreader", "kind": "Other"}, {"name": "getwriter", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "EncodedFile", "kind": "Other"}, {"name": "iterencode", "kind": "Other"}, {"name": "iterdecode", "kind": "Other"}, {"name": "BOM", "kind": "Other"}, {"name": "BOM_BE", "kind": "Other"}, {"name": "BOM_LE", "kind": "Other"}, {"name": "BOM_UTF8", "kind": "Other"}, {"name": "BOM_UTF16", "kind": "Other"}, {"name": "BOM_UTF16_BE", "kind": "Other"}, {"name": "BOM_UTF16_LE", "kind": "Other"}, {"name": "BOM_UTF32", "kind": "Other"}, {"name": "BOM_UTF32_BE", "kind": "Other"}, {"name": "BOM_UTF32_LE", "kind": "Other"}, {"name": "strict_errors", "kind": "Other"}, {"name": "replace_errors", "kind": "Other"}, {"name": "ignore_errors", "kind": "Other"}, {"name": "xmlcharrefreplace_errors", "kind": "Other"}, {"name": "backslashreplace_errors", "kind": "Other"}, {"name": "namereplace_errors", "kind": "Other"}, {"name": "Codec", "kind": "LocalType"}, {"name": "IncrementalEncoder", "kind": "LocalType"}, {"name": "IncrementalDecoder", "kind": "LocalType"}, {"name": "BufferedIncrementalEncoder", "kind": "LocalType"}, {"name": "BufferedIncrementalDecoder", "kind": "LocalType"}, {"name": "StreamWriter", "kind": "LocalType"}, {"name": "StreamReader", "kind": "LocalType"}, {"name": "StreamReaderWriter", "kind": "LocalType"}, {"name": "StreamRecoder", "kind": "LocalType"}], "importlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "__all__", "kind": "Other"}, {"name": "__import__", "kind": "Other"}, {"name": "import_module", "kind": "Other"}, {"name": "find_loader", "kind": "Other"}, {"name": "invalidate_caches", "kind": "Other"}, {"name": "reload", "kind": "Other"}], "importlib.metadata": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "pathlib", "kind": "Module", "fullname": "pathlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "StrPath", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "MetaPathFinder", "kind": "ImportedType", "fullname": "importlib.abc.MetaPathFinder"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "packages_distributions", "kind": "Other"}, {"name": "PackageNotFoundError", "kind": "LocalType"}, {"name": "_EntryPointBase", "kind": "LocalType"}, {"name": "EntryPoint", "kind": "LocalType"}, {"name": "EntryPoints", "kind": "LocalType"}, {"name": "SelectableGroups", "kind": "LocalType"}, {"name": "PackagePath", "kind": "LocalType"}, {"name": "FileHash", "kind": "LocalType"}, {"name": "Distribution", "kind": "LocalType"}, {"name": "DistributionFinder", "kind": "LocalType"}, {"name": "MetadataPathFinder", "kind": "LocalType"}, {"name": "PathDistribution", "kind": "LocalType"}, {"name": "distribution", "kind": "Other"}, {"name": "distributions", "kind": "Other"}, {"name": "metadata", "kind": "Other"}, {"name": "entry_points", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "files", "kind": "Other"}, {"name": "requires", "kind": "Other"}], "os.path": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "subprocess": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_FILE", "kind": "Other"}, {"name": "_InputString", "kind": "Other"}, {"name": "_CMD", "kind": "Other"}, {"name": "_ENV", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_USE_POSIX_SPAWN", "kind": "Other"}, {"name": "CompletedProcess", "kind": "LocalType"}, {"name": "run", "kind": "Other"}, {"name": "call", "kind": "Other"}, {"name": "check_call", "kind": "Other"}, {"name": "check_output", "kind": "Other"}, {"name": "PIPE", "kind": "Other"}, {"name": "STDOUT", "kind": "Other"}, {"name": "DEVNULL", "kind": "Other"}, {"name": "SubprocessError", "kind": "LocalType"}, {"name": "TimeoutExpired", "kind": "LocalType"}, {"name": "CalledProcessError", "kind": "LocalType"}, {"name": "Popen", "kind": "LocalType"}, {"name": "getstatusoutput", "kind": "Other"}, {"name": "getoutput", "kind": "Other"}, {"name": "list2cmdline", "kind": "Other"}], "sre_parse": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "_Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NIC", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "_Error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "SPECIAL_CHARS", "kind": "Other"}, {"name": "REPEAT_CHARS", "kind": "Other"}, {"name": "DIGITS", "kind": "Other"}, {"name": "OCTDIGITS", "kind": "Other"}, {"name": "HEXDIGITS", "kind": "Other"}, {"name": "ASCIILETTERS", "kind": "Other"}, {"name": "WHITESPACE", "kind": "Other"}, {"name": "ESCAPES", "kind": "Other"}, {"name": "CATEGORIES", "kind": "Other"}, {"name": "FLAGS", "kind": "Other"}, {"name": "TYPE_FLAGS", "kind": "Other"}, {"name": "GLOBAL_FLAGS", "kind": "Other"}, {"name": "Verbose", "kind": "LocalType"}, {"name": "_State", "kind": "LocalType"}, {"name": "State", "kind": "Other"}, {"name": "_OpSubpatternType", "kind": "Other"}, {"name": "_OpGroupRefExistsType", "kind": "Other"}, {"name": "_OpInType", "kind": "Other"}, {"name": "_OpBranchType", "kind": "Other"}, {"name": "_AvType", "kind": "Other"}, {"name": "_CodeType", "kind": "Other"}, {"name": "SubPattern", "kind": "LocalType"}, {"name": "Tokenizer", "kind": "LocalType"}, {"name": "fix_flags", "kind": "Other"}, {"name": "_TemplateType", "kind": "Other"}, {"name": "_TemplateByteType", "kind": "Other"}, {"name": "parse", "kind": "Other"}, {"name": "parse_template", "kind": "Other"}, {"name": "expand_template", "kind": "Other"}], "_codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_EncodingMap", "kind": "LocalType"}, {"name": "_CharMap", "kind": "Other"}, {"name": "_Handler", "kind": "Other"}, {"name": "_SearchFunction", "kind": "Other"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "_BytesToBytesEncoding", "kind": "Other"}, {"name": "_StrToStrEncoding", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}], "importlib.metadata._meta": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_T", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "SimplePath", "kind": "LocalType"}], "email.message": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Policy", "kind": "ImportedType", "fullname": "email.policy.Policy"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_PayloadType", "kind": "Other"}, {"name": "_CharsetType", "kind": "Other"}, {"name": "_HeaderType", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "MIMEPart", "kind": "LocalType"}, {"name": "EmailMessage", "kind": "LocalType"}], "pathlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "stat_result", "kind": "ImportedType", "fullname": "os.stat_result"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "PurePath", "kind": "LocalType"}, {"name": "PurePosixPath", "kind": "LocalType"}, {"name": "PureWindowsPath", "kind": "LocalType"}, {"name": "Path", "kind": "LocalType"}, {"name": "PosixPath", "kind": "LocalType"}, {"name": "WindowsPath", "kind": "LocalType"}], "posixpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "AnyStr", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}], "email": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "Policy", "kind": "LocalType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "message_from_string", "kind": "Other"}, {"name": "message_from_bytes", "kind": "Other"}, {"name": "message_from_file", "kind": "Other"}, {"name": "message_from_binary_file", "kind": "Other"}], "email.charset": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "__all__", "kind": "Other"}, {"name": "QP", "kind": "Other"}, {"name": "BASE64", "kind": "Other"}, {"name": "SHORTEST", "kind": "Other"}, {"name": "Charset", "kind": "LocalType"}, {"name": "add_charset", "kind": "Other"}, {"name": "add_alias", "kind": "Other"}, {"name": "add_codec", "kind": "Other"}], "email.contentmanager": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "ContentManager", "kind": "LocalType"}, {"name": "raw_data_manager", "kind": "Other"}], "email.errors": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "MessageError", "kind": "LocalType"}, {"name": "MessageParseError", "kind": "LocalType"}, {"name": "HeaderParseError", "kind": "LocalType"}, {"name": "BoundaryError", "kind": "LocalType"}, {"name": "MultipartConversionError", "kind": "LocalType"}, {"name": "CharsetError", "kind": "LocalType"}, {"name": "MessageDefect", "kind": "LocalType"}, {"name": "NoBoundaryInMultipartDefect", "kind": "LocalType"}, {"name": "StartBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "FirstHeaderLineIsContinuationDefect", "kind": "LocalType"}, {"name": "MisplacedEnvelopeHeaderDefect", "kind": "LocalType"}, {"name": "MultipartInvariantViolationDefect", "kind": "LocalType"}, {"name": "InvalidMultipartContentTransferEncodingDefect", "kind": "LocalType"}, {"name": "UndecodableBytesDefect", "kind": "LocalType"}, {"name": "InvalidBase64PaddingDefect", "kind": "LocalType"}, {"name": "InvalidBase64CharactersDefect", "kind": "LocalType"}, {"name": "InvalidBase64LengthDefect", "kind": "LocalType"}, {"name": "CloseBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "MissingHeaderBodySeparatorDefect", "kind": "LocalType"}, {"name": "MalformedHeaderDefect", "kind": "Other"}, {"name": "HeaderDefect", "kind": "LocalType"}, {"name": "InvalidHeaderDefect", "kind": "LocalType"}, {"name": "HeaderMissingRequiredValue", "kind": "LocalType"}, {"name": "NonPrintableDefect", "kind": "LocalType"}, {"name": "ObsoleteHeaderDefect", "kind": "LocalType"}, {"name": "NonASCIILocalPartDefect", "kind": "LocalType"}, {"name": "InvalidDateDefect", "kind": "LocalType"}], "email.policy": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Header", "kind": "ImportedType", "fullname": "email.header.Header"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Policy", "kind": "LocalType"}, {"name": "Compat32", "kind": "LocalType"}, {"name": "compat32", "kind": "Other"}, {"name": "EmailPolicy", "kind": "LocalType"}, {"name": "default", "kind": "Other"}, {"name": "SMTP", "kind": "Other"}, {"name": "SMTPUTF8", "kind": "Other"}, {"name": "HTTP", "kind": "Other"}, {"name": "strict", "kind": "Other"}], "genericpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}], "email.header": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "Any", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Header", "kind": "LocalType"}, {"name": "decode_header", "kind": "Other"}, {"name": "make_header", "kind": "Other"}]}} \ No newline at end of file diff --git a/utbot-python-types/src/test/resources/boruvka.json b/utbot-python-types/src/test/resources/boruvka.json deleted file mode 100644 index 548361a5fa..0000000000 --- a/utbot-python-types/src/test/resources/boruvka.json +++ /dev/null @@ -1 +0,0 @@ -{"nodeStorage": {"140097428308736": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391192416"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474781120"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474781568"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474782016"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474782464"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474782912"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474783360"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474783808"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474784704"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474785152"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474785600"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474786048"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474786496"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474786944"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474787392"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474787840"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474788288"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474788736"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474936896"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474937344"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474937792"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474938240"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474938688"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474939136"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474939584"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474940032"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474940480"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474940928"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474941376"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474941824"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474942272"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474942720"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474943168"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474943616"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474944064"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474944512"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474944960"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474945408"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474945856"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474946304"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474946752"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474947200"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474947648"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474948096"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474948544"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474948992"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474949440"}, "name": "zfill"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391192640"}, "items": [{"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "maketrans"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474951232"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474951680"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474952128"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474952576"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475067968"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475068416"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475068864"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475069312"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475069760"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475070208"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475070656"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475071104"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475071552"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475072000"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475072448"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}], "isAbstract": false}}, "140097391192416": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097474780224"}, {"nodeId": "140097474780672"}]}}, "140097474780224": {"type": "Function", "content": {"typeVars": [".0.140097474780224"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": ".0.140097474780224"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}}, "0": {"type": "Unknown", "content": {}}, "140097499811328": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424809024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390906160"}, "items": [{"kind": "Variable", "content": {"name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336513408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491618496"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491618944"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491619392"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491619840"}, "name": "__delattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491620288"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491620736"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491621184"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491621632"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491622080"}, "name": "__hash__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491622528"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491622976"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491623424"}, "name": "__sizeof__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491623872"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491624320"}, "name": "__reduce_ex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491625664"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491626112"}, "name": "__init_subclass__"}}, {"kind": "Variable", "content": {"name": "__subclasshook__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097336510720"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [], "isAbstract": false}}, "140097424809024": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "N": {"type": "NoneType", "content": {}}, "140097428311200": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386297408"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470830784"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470831232"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470831680"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470832128"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470832576"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386297856"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386298640"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386298976"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470835712"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470836160"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470836608"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470837056"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470837504"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470837952"}, "name": "__reversed__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470838400"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470838848"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470839296"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386610752"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}], "bases": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "isAbstract": false}}, ".1.140097428311200": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428311200", "variance": "INVARIANT"}}, ".2.140097428311200": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428311200", "variance": "INVARIANT"}}, "140097386297408": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470827200"}, {"nodeId": "140097470827648"}, {"nodeId": "140097470828096"}, {"nodeId": "140097470828544"}, {"nodeId": "140097470828992"}, {"nodeId": "140097470829440"}, {"nodeId": "140097470829888"}, {"nodeId": "140097470830336"}]}}, "140097470827200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470827648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".2.140097428311200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140097470828096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097419752928": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492046048"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492046496"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140097419752928"}, {"nodeId": ".2.140097419752928"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__getitem__", "keys"]}}, ".1.140097419752928": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419752928", "variance": "INVARIANT"}}, ".2.140097419752928": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419752928", "variance": "COVARIANT"}}, "140097492046048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097419752928"}, {"nodeId": ".2.140097419752928"}]}], "returnType": {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097419752928"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499815904": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382455936"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499815904"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__iter__"]}}, ".1.140097499815904": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499815904", "variance": "COVARIANT"}}, "140097382455936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097499815904"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499815904"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097499816256": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382459520"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462706336"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140097499816256"}], "bases": [{"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097499816256"}]}], "protocolMembers": ["__iter__", "__next__"]}}, ".1.140097499816256": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499816256", "variance": "COVARIANT"}}, "140097382459520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499816256"}]}], "returnType": {"nodeId": ".1.140097499816256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462706336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499816256"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499816256"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "A": {"type": "Any", "content": {}}, "140097492046496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097419752928"}, {"nodeId": ".2.140097419752928"}]}, {"nodeId": ".1.140097419752928"}], "returnType": {"nodeId": ".2.140097419752928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470828544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": "140097419752928", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".2.140097428311200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097470828992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097386298304"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386298304": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}}, "140097470829440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097386298528"}]}, {"nodeId": ".2.140097428311200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097386298528": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097428311200"}]}}, "140097470829888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097428310848": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386295616"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470649664"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470650112"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470650560"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470651008"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470651456"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470651904"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470652352"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470652800"}, "name": "remove"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386295728"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470654144"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470654592"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386296848"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386296960"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470656832"}, "name": "__delitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386297184"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470658176"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470658624"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470659072"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470659520"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470659968"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470824512"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470824960"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470825408"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470825856"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470826304"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470826752"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097428310848"}], "bases": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097428310848"}]}], "isAbstract": false}}, ".1.140097428310848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428310848", "variance": "INVARIANT"}}, "140097386295616": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470648768"}, {"nodeId": "140097470649216"}]}}, "140097470648768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470649216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470649664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470650112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": ".1.140097428310848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470650560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470651008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".1.140097428310848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097407464576": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097387080256"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__index__"]}}, "140097387080256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499822944": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391185472"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487007168"}, "name": "as_integer_ratio"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336173824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336174496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336172928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336172704"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487009408"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487009856"}, "name": "bit_length"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487010304"}, "name": "bit_count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474428992"}, "name": "to_bytes"}}, {"kind": "Variable", "content": {"name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340462624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474430336"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474430784"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474431232"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474431680"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474432128"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474432576"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474433024"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474433472"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474433920"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474434368"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474434816"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474435264"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474435712"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474436160"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391186592"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474439296"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474439744"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474440192"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474440640"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474441088"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474441536"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474441984"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474442432"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474442880"}, "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474443328"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474443776"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474444224"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474444672"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474527296"}, "name": "__invert__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474527744"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474528192"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474528640"}, "name": "__floor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474529088"}, "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474529536"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474529984"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474530432"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474530880"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474531328"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474531776"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474532224"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474532672"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474533120"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474533568"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474534016"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474534464"}, "name": "__index__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097391185472": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097487006272"}, {"nodeId": "140097487006720"}]}}, "140097487006272": {"type": "Function", "content": {"typeVars": [".0.140097487006272"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097391187264"}], "returnType": {"nodeId": ".0.140097487006272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140097391187264": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407466688"}, {"nodeId": "140097407451200"}, {"nodeId": "140097407464576"}, {"nodeId": "140097419752224"}]}}, "140097407466688": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "Buffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462052768"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__buffer__"]}}, "140097462052768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097428309792": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "content": {"name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331894240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331894912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331895136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331895360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331895584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331895808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331896032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331896256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331896480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331896704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331896928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331897152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470407488"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470407936"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470408384"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470408832"}, "name": "cast"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386291024"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470410176"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470410624"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470411072"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386292032"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470412416"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470413760"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470414208"}, "name": "toreadonly"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470529600"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470530048"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470530944"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470531392"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097331894240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331894912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331895136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097386291696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386291696": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "N"}]}}, "140097428310496": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470540800"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470541248"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470541696"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386294048"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470543040"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470543488"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470543936"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470544384"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470544832"}, "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386295504"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470644736"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470645184"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470645632"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470646080"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470646528"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097428310496"}], "bases": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097428310496"}]}], "isAbstract": false}}, ".1.140097428310496": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428310496", "variance": "COVARIANT"}}, "140097470540800": {"type": "Function", "content": {"typeVars": [".0.140097470540800"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": ".0.140097470540800"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, ".0.140097470540800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, "def": "140097470540800", "variance": "INVARIANT"}}, "140097470541248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470541696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097499812032": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470531840"}, "name": "__new__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386292592"}, "items": [{"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__and__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386293376"}, "items": [{"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__or__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386293488"}, "items": [{"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__xor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386293600"}, "items": [{"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386293712"}, "items": [{"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386293824"}, "items": [{"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470537664"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140097499822944"}], "isAbstract": false}}, "140097470531840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140097386292592": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470532288"}, {"nodeId": "140097470532736"}]}}, "140097470532288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470532736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386293376": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470533184"}, {"nodeId": "140097470533632"}]}}, "140097470533184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470533632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386293488": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470534080"}, {"nodeId": "140097470534528"}]}}, "140097470534080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470534528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386293600": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470534976"}, {"nodeId": "140097470535424"}]}}, "140097470534976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470535424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386293712": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470535872"}, {"nodeId": "140097470536320"}]}}, "140097470535872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470536320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386293824": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470536768"}, {"nodeId": "140097470537216"}]}}, "140097470536768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470537216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470537664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097386294272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386294272": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}]}}, "140097386294048": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470542144"}, {"nodeId": "140097470542592"}]}}, "140097470542144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".1.140097428310496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470542592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097428310144": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332009152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332009600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332010720"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386293936"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470540352"}, "name": "indices"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097332009152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097332009600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097332010720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386293936": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470539456"}, {"nodeId": "140097470539904"}]}}, "140097470539456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310144"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470539904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310144"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097470540352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310144"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097386295392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386295392": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097470543040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097428310496"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470543488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470543936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470544384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470544832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386295504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470545280"}, {"nodeId": "140097470644288"}]}}, "140097470545280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470644288": {"type": "Function", "content": {"typeVars": [".-1.140097470644288"], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": ".-1.140097470644288"}]}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097386295840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097470644288": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470644288", "variance": "INVARIANT"}}, "140097386295840": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097428310496"}, {"nodeId": ".-1.140097470644288"}]}}, "140097470644736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470645184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470645632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470646080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "A"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097470646528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097407720384": {"type": "Concrete", "content": {"module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378548672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378549120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378549344"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479281120"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479281568"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479282912"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378548672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720384"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499822240": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "content": {"name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336179648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336179200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336178976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336178080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336178304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336178528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336177632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336177408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336177184"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390906496"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391181888"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487001344"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097395489952"}, "name": "__subclasses__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487002240"}, "name": "mro"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487002688"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487003136"}, "name": "__subclasscheck__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097336176960"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487004032"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487004480"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097336179648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336179200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336178976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097407714048", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407714048": {"type": "Concrete", "content": {"module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478722272"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478722720"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478723168"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478723616"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478724064"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478724512"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478724960"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478725408"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478725856"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478726304"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478726752"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478727200"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478727648"}, "name": "__ror__"}}], "typeVars": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}], "bases": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "isAbstract": false}}, ".1.140097407714048": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407714048", "variance": "INVARIANT"}}, ".2.140097407714048": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407714048", "variance": "COVARIANT"}}, "140097478722272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140097478722720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}, {"nodeId": ".1.140097407714048"}], "returnType": {"nodeId": ".2.140097407714048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097478723168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407714048"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097478723616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097478724064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097478724512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478724960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407714048"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407454720": {"type": "Concrete", "content": {"module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457881376"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457881824"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457882272"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457882720"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457883168"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457883616"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457884064"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457884512"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457884960"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457885408"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457885856"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457886304"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140097407454720"}], "bases": [{"nodeId": "140097407454016"}, {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097407454720"}]}], "isAbstract": false}}, ".1.140097407454720": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407454720", "variance": "COVARIANT"}}, "140097457881376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097407454720"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140097499821184": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382776416"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403899456"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457889888"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457890336"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457890784"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457891232"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457891680"}, "name": "__eq__"}}], "typeVars": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}], "bases": [{"nodeId": "140097499819424", "args": [{"nodeId": ".1.140097499821184"}]}], "isAbstract": true}}, ".1.140097499821184": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499821184", "variance": "INVARIANT"}}, ".2.140097499821184": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499821184", "variance": "COVARIANT"}}, "140097382776416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}, {"nodeId": ".1.140097499821184"}], "returnType": {"nodeId": ".2.140097499821184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097403899456": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457888992"}, {"nodeId": "140097457889440"}]}}, "140097457888992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}, {"nodeId": ".1.140097499821184"}], "returnType": {"nodeId": "140097403904832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097403904832": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097499821184"}, {"nodeId": "N"}]}}, "140097457889440": {"type": "Function", "content": {"typeVars": [".-1.140097457889440"], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}, {"nodeId": ".1.140097499821184"}, {"nodeId": "140097403904944"}], "returnType": {"nodeId": "140097403905056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140097403904944": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097499821184"}, {"nodeId": ".-1.140097457889440"}]}}, ".-1.140097457889440": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457889440", "variance": "INVARIANT"}}, "140097403905056": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097499821184"}, {"nodeId": ".-1.140097457889440"}]}}, "140097457889888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}], "returnType": {"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407454368": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457777440"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457777888"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457778336"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457778784"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457779232"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457779680"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457780128"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457780576"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457781024"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457781472"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457781920"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457782368"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}], "bases": [{"nodeId": "140097407454016"}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097407570928"}]}], "isAbstract": false}}, ".1.140097407454368": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407454368", "variance": "COVARIANT"}}, ".2.140097407454368": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407454368", "variance": "COVARIANT"}}, "140097457777440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140097457777888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403901584"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407458240": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386611200"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470956480"}, "name": "add"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470956928"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470957376"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470957824"}, "name": "difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470958272"}, "name": "discard"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470958720"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470959168"}, "name": "intersection_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470959616"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470960064"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470960512"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470960960"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470961408"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470961856"}, "name": "symmetric_difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470962304"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470962752"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470963200"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470963648"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470964096"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470964544"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470964992"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470965440"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470965888"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470966336"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470966784"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470967232"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470967680"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470968128"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470968576"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470969024"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470969472"}, "name": "__gt__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470969920"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407458240"}], "bases": [{"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097407458240"}]}], "isAbstract": false}}, ".1.140097407458240": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407458240", "variance": "INVARIANT"}}, "140097386611200": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470955584"}, {"nodeId": "140097470956032"}]}}, "140097470955584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470956032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470956480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": ".1.140097407458240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470956928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470957376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140097470957824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140097470958272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": ".1.140097407458240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470958720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140097470959168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140097470959616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470960064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470960512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470960960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": ".1.140097407458240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470961408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470961856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470962304": {"type": "Function", "content": {"typeVars": [".-1.140097470962304"], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097470962304"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097386613328"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140097470962304": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470962304", "variance": "INVARIANT"}}, "140097386613328": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407458240"}, {"nodeId": ".-1.140097470962304"}]}}, "140097470962752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140097470963200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470963648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470964096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407458240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470964544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097499820480": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382641760"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457768032"}, "name": "_hash"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457768480"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457768928"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457769376"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457769824"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457770272"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457770720"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457771168"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457771616"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457772064"}, "name": "isdisjoint"}}], "typeVars": [{"nodeId": ".1.140097499820480"}], "bases": [{"nodeId": "140097499819424", "args": [{"nodeId": ".1.140097499820480"}]}], "isAbstract": true}}, ".1.140097499820480": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499820480", "variance": "COVARIANT"}}, "140097382641760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457768032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097457768480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457768928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457769376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457769824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457770272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457770720": {"type": "Function", "content": {"typeVars": [".-1.140097457770720"], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".-1.140097457770720"}]}], "returnType": {"nodeId": "140097499820480", "args": [{"nodeId": "140097403900352"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457770720": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457770720", "variance": "INVARIANT"}}, "140097403900352": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097499820480"}, {"nodeId": ".-1.140097457770720"}]}}, "140097457771168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457771616": {"type": "Function", "content": {"typeVars": [".-1.140097457771616"], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".-1.140097457771616"}]}], "returnType": {"nodeId": "140097499820480", "args": [{"nodeId": "140097403900576"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457771616": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457771616", "variance": "INVARIANT"}}, "140097403900576": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097499820480"}, {"nodeId": ".-1.140097457771616"}]}}, "140097457772064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140097499819424": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382634816"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499819424"}], "bases": [{"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097499819424"}]}, {"nodeId": "140097499819072", "args": [{"nodeId": ".1.140097499819424"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}}, ".1.140097499819424": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499819424", "variance": "COVARIANT"}}, "140097382634816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819424", "args": [{"nodeId": ".1.140097499819424"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097499819072": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382631456"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499819072"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__contains__"]}}, ".1.140097499819072": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499819072", "variance": "COVARIANT"}}, "140097382631456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819072", "args": [{"nodeId": ".1.140097499819072"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470964992": {"type": "Function", "content": {"typeVars": [".0.140097470964992"], "argTypes": [{"nodeId": ".0.140097470964992"}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": ".0.140097470964992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470964992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "def": "140097470964992", "variance": "INVARIANT"}}, "140097470965440": {"type": "Function", "content": {"typeVars": [".-1.140097470965440"], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".-1.140097470965440"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097386613552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097470965440": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470965440", "variance": "INVARIANT"}}, "140097386613552": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407458240"}, {"nodeId": ".-1.140097470965440"}]}}, "140097470965888": {"type": "Function", "content": {"typeVars": [".0.140097470965888"], "argTypes": [{"nodeId": ".0.140097470965888"}, {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": ".0.140097470965888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470965888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "def": "140097470965888", "variance": "INVARIANT"}}, "140097470966336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097386613664"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386613664": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407458240"}, {"nodeId": "N"}]}}, "140097470966784": {"type": "Function", "content": {"typeVars": [".0.140097470966784"], "argTypes": [{"nodeId": ".0.140097470966784"}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": ".0.140097470966784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470966784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "def": "140097470966784", "variance": "INVARIANT"}}, "140097470967232": {"type": "Function", "content": {"typeVars": [".-1.140097470967232"], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".-1.140097470967232"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097386613776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097470967232": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470967232", "variance": "INVARIANT"}}, "140097386613776": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407458240"}, {"nodeId": ".-1.140097470967232"}]}}, "140097470967680": {"type": "Function", "content": {"typeVars": [".0.140097470967680"], "argTypes": [{"nodeId": ".0.140097470967680"}, {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": ".0.140097470967680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470967680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "def": "140097470967680", "variance": "INVARIANT"}}, "140097470968128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470968576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470969024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470969472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470969920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097499820832": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "content": {"name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382679936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382685088"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457773408"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457773856"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457774304"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457774752"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457775200"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457775648"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457776096"}, "name": "__isub__"}}], "typeVars": [{"nodeId": ".1.140097499820832"}], "bases": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820832"}]}], "isAbstract": true}}, ".1.140097499820832": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499820832", "variance": "INVARIANT"}}, "140097382679936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}, {"nodeId": ".1.140097499820832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140097382685088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}, {"nodeId": ".1.140097499820832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140097457773408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097457773856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}], "returnType": {"nodeId": ".1.140097499820832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097457774304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}, {"nodeId": ".1.140097499820832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140097457774752": {"type": "Function", "content": {"typeVars": [".0.140097457774752"], "argTypes": [{"nodeId": ".0.140097457774752"}, {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820832"}]}], "returnType": {"nodeId": ".0.140097457774752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097457774752": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}, "def": "140097457774752", "variance": "INVARIANT"}}, "140097457775200": {"type": "Function", "content": {"typeVars": [".0.140097457775200"], "argTypes": [{"nodeId": ".0.140097457775200"}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140097457775200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097457775200": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}, "def": "140097457775200", "variance": "INVARIANT"}}, "140097457775648": {"type": "Function", "content": {"typeVars": [".0.140097457775648"], "argTypes": [{"nodeId": ".0.140097457775648"}, {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820832"}]}], "returnType": {"nodeId": ".0.140097457775648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097457775648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}, "def": "140097457775648", "variance": "INVARIANT"}}, "140097457776096": {"type": "Function", "content": {"typeVars": [".0.140097457776096"], "argTypes": [{"nodeId": ".0.140097457776096"}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140097457776096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097457776096": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}, "def": "140097457776096", "variance": "INVARIANT"}}, "140097403901584": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457778336": {"type": "Function", "content": {"typeVars": [".-1.140097457778336"], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457778336"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".-1.140097457778336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457778336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457778336", "variance": "INVARIANT"}}, "140097457778784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457779232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097403901808"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097403901808": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457779680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097403902032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097403902032": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457780128": {"type": "Function", "content": {"typeVars": [".-1.140097457780128"], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457780128"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403902368"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457780128": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457780128", "variance": "INVARIANT"}}, "140097403902368": {"type": "Union", "content": {"items": [{"nodeId": "140097403902256"}, {"nodeId": ".-1.140097457780128"}]}}, "140097403902256": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457780576": {"type": "Function", "content": {"typeVars": [".-1.140097457780576"], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457780576"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403902704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457780576": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457780576", "variance": "INVARIANT"}}, "140097403902704": {"type": "Union", "content": {"items": [{"nodeId": "140097403902592"}, {"nodeId": ".-1.140097457780576"}]}}, "140097403902592": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457781024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403903040"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097403903040": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457781472": {"type": "Function", "content": {"typeVars": [".-1.140097457781472"], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457781472"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".-1.140097457781472"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457781472": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457781472", "variance": "INVARIANT"}}, "140097457781920": {"type": "Function", "content": {"typeVars": [".-1.140097457781920"], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457781920"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403903376"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457781920": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457781920", "variance": "INVARIANT"}}, "140097403903376": {"type": "Union", "content": {"items": [{"nodeId": "140097403903264"}, {"nodeId": ".-1.140097457781920"}]}}, "140097403903264": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457782368": {"type": "Function", "content": {"typeVars": [".-1.140097457782368"], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457782368"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403903712"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457782368": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457782368", "variance": "INVARIANT"}}, "140097403903712": {"type": "Union", "content": {"items": [{"nodeId": "140097403903600"}, {"nodeId": ".-1.140097457782368"}]}}, "140097403903600": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097407454016": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457776544"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457776992"}, "name": "__len__"}}], "typeVars": [], "bases": [{"nodeId": "140097407452960"}], "isAbstract": false}}, "140097457776544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454016"}, {"nodeId": "140097499821184", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140097457776992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454016"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407452960": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382453696"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__len__"]}}, "140097382453696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407452960"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407570928": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457890336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}], "returnType": {"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097499821184"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097457890784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}], "returnType": {"nodeId": "140097407455072", "args": [{"nodeId": ".2.140097499821184"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407455072": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457886752"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457887200"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457887648"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457888096"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097407455072"}], "bases": [{"nodeId": "140097407454016"}, {"nodeId": "140097499819424", "args": [{"nodeId": ".1.140097407455072"}]}], "isAbstract": false}}, ".1.140097407455072": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407455072", "variance": "COVARIANT"}}, "140097457886752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455072", "args": [{"nodeId": ".1.140097407455072"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": "A"}, {"nodeId": ".1.140097407455072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140097457887200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455072", "args": [{"nodeId": ".1.140097407455072"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457887648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455072", "args": [{"nodeId": ".1.140097407455072"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407455072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097457888096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455072", "args": [{"nodeId": ".1.140097407455072"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407455072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097457891232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457891680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457881824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407454720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457882272": {"type": "Function", "content": {"typeVars": [".-1.140097457882272"], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457882272"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".-1.140097457882272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457882272": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457882272", "variance": "INVARIANT"}}, "140097457882720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457883168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407454720"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097457883616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407454720"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097457884064": {"type": "Function", "content": {"typeVars": [".-1.140097457884064"], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457884064"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403904048"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457884064": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457884064", "variance": "INVARIANT"}}, "140097403904048": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407454720"}, {"nodeId": ".-1.140097457884064"}]}}, "140097457884512": {"type": "Function", "content": {"typeVars": [".-1.140097457884512"], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457884512"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403904160"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457884512": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457884512", "variance": "INVARIANT"}}, "140097403904160": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407454720"}, {"nodeId": ".-1.140097457884512"}]}}, "140097457884960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407454720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457885408": {"type": "Function", "content": {"typeVars": [".-1.140097457885408"], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457885408"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".-1.140097457885408"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457885408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457885408", "variance": "INVARIANT"}}, "140097457885856": {"type": "Function", "content": {"typeVars": [".-1.140097457885856"], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457885856"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403904384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457885856": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457885856", "variance": "INVARIANT"}}, "140097403904384": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407454720"}, {"nodeId": ".-1.140097457885856"}]}}, "140097457886304": {"type": "Function", "content": {"typeVars": [".-1.140097457886304"], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457886304"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403904496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457886304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457886304", "variance": "INVARIANT"}}, "140097403904496": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407454720"}, {"nodeId": ".-1.140097457886304"}]}}, "140097478725408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "140097407455072", "args": [{"nodeId": ".2.140097407714048"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478725856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478726304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140097478726752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407714048"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097478727200": {"type": "Function", "content": {"typeVars": [".-1.140097478727200", ".-2.140097478727200"], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097478727200"}, {"nodeId": ".-2.140097478727200"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097398916368"}, {"nodeId": "140097398916480"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097478727200": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097478727200", "variance": "INVARIANT"}}, ".-2.140097478727200": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097478727200", "variance": "INVARIANT"}}, "140097398916368": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".-1.140097478727200"}]}}, "140097398916480": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407714048"}, {"nodeId": ".-2.140097478727200"}]}}, "140097478727648": {"type": "Function", "content": {"typeVars": [".-1.140097478727648", ".-2.140097478727648"], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097478727648"}, {"nodeId": ".-2.140097478727648"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097398916592"}, {"nodeId": "140097398916704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097478727648": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097478727648", "variance": "INVARIANT"}}, ".-2.140097478727648": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097478727648", "variance": "INVARIANT"}}, "140097398916592": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".-1.140097478727648"}]}}, "140097398916704": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407714048"}, {"nodeId": ".-2.140097478727648"}]}}, "140097336178080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336178304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336178528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336177632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336177408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097391185024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391185024": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097336177184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390906496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097486999552"}, {"nodeId": "140097487000000"}]}}, "140097486999552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097487000000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, null, "kwds"]}}, "140097391181888": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097487000448"}, {"nodeId": "140097395485248"}]}}, "140097487000448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097395485248": {"type": "Function", "content": {"typeVars": [".-1.140097395485248"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140097395485248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}}, ".-1.140097395485248": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395485248", "variance": "INVARIANT"}}, "140097487001344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140097395489952": {"type": "Function", "content": {"typeVars": [".-1.140097395489952"], "argTypes": [{"nodeId": ".-1.140097395489952"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".-1.140097395489952"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140097395489952": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395489952", "variance": "INVARIANT"}}, "140097487002240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097487002688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097487003136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}, {"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097336176960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}}, "140097487004032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407721088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407721088": {"type": "Concrete", "content": {"module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378618048"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479284256"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479284704"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378618048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407721088"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479284256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407721088"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407721088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097479284704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407721088"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407721088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097487004480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407721088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097378549120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720384"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378549344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720384"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479281120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720384"}, {"nodeId": "140097499822240"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}}, "140097479281568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720384"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097479282912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720384"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097499819776": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403898000"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457611360"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457611808"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457612256"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457612704"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457613152"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097499819776"}], "bases": [{"nodeId": "140097499819424", "args": [{"nodeId": ".1.140097499819776"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": ".1.140097499819776"}]}], "isAbstract": true}}, ".1.140097499819776": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499819776", "variance": "COVARIANT"}}, "140097403898000": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457610464"}, {"nodeId": "140097457610912"}]}}, "140097457610464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097499819776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457610912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457611360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}, {"nodeId": "A"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}}, "140097457611808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140097457612256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457612704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499819776"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097457613152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499819776"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097499816608": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "content": {"name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382462208"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499816608"}], "bases": [{"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097499816608"}]}], "protocolMembers": ["__iter__", "__reversed__"]}}, ".1.140097499816608": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499816608", "variance": "COVARIANT"}}, "140097382462208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816608", "args": [{"nodeId": ".1.140097499816608"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499816608"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097331895360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097386291808"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386291808": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "N"}]}}, "140097331895584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097386291920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386291920": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "N"}]}}, "140097331895808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331896032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331896256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097407466688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331896480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331896704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331896928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331897152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470407488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140097470407936": {"type": "Function", "content": {"typeVars": [".0.140097470407936"], "argTypes": [{"nodeId": ".0.140097470407936"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097470407936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309792"}, "def": "140097470407936", "variance": "INVARIANT"}}, "140097470408384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097386292144"}, {"nodeId": "140097386292256"}, {"nodeId": "140097386292368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097386292144": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097386292256": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097428315424": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429055392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429048336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429056176"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466707840"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466708288"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466708736"}, "name": "with_traceback"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097429055392": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097429048336": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097429056176": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097407718976": {"type": "Concrete", "content": {"module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479102240"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407572496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378538144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378538368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378538592"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097479102240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718976"}, {"nodeId": "140097398924768"}, {"nodeId": "140097407719328"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}}, "140097398924768": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097407719328": {"type": "Concrete", "content": {"module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "content": {"name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378540160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378540608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378540832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378541056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378541280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378541504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378541728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407572720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479107168"}, "name": "clear"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378540160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "140097398924880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398924880": {"type": "Union", "content": {"items": [{"nodeId": "140097407719328"}, {"nodeId": "N"}]}}, "140097378540608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378540832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "140097407713696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407713696": {"type": "Concrete", "content": {"module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "content": {"name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378106304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378106976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378205984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378206208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378206432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378206656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378206880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378207104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378207328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378207552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378207776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378208000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378208224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378208448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378208672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378208896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378209568"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483370144"}, "name": "co_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483372384"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483374176"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378106304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378106976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378205984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378206208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378206432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378206656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378206880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428309088": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391193424"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475074240"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475074688"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475075136"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475075584"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475076032"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475076480"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475077376"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475077824"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475078720"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475079168"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475079616"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475080064"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475080512"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475080960"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475081408"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475081856"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475082304"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475082752"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475083200"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475083648"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475199040"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475199488"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475199936"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475200384"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475200832"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475201280"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475201728"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475202176"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475202624"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475203072"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475203520"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475203968"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475204416"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475204864"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475205312"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475205760"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475206208"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475206656"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475207104"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475207552"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097336835680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097331757792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475208896"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475209344"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391196336"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475210688"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475211136"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475211584"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475212032"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475212480"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475212928"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475213376"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475213824"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475214272"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475214720"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470087232"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470087680"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470088576"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097391193424": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097475072896"}, {"nodeId": "140097475073344"}, {"nodeId": "140097475073792"}]}}, "140097475072896": {"type": "Function", "content": {"typeVars": [".0.140097475072896"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097391197456"}], "returnType": {"nodeId": ".0.140097475072896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097391197456": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097407464576"}]}, {"nodeId": "140097407464576"}, {"nodeId": "140097407452256"}, {"nodeId": "140097407466688"}]}}, "140097407452256": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "content": {"name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382378496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__bytes__"]}}, "140097382378496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407452256"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097475072896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309088"}, "def": "140097475072896", "variance": "INVARIANT"}}, "140097475073344": {"type": "Function", "content": {"typeVars": [".0.140097475073344"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097475073344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}}, ".0.140097475073344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309088"}, "def": "140097475073344", "variance": "INVARIANT"}}, "140097475073792": {"type": "Function", "content": {"typeVars": [".0.140097475073792"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140097475073792"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140097475073792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309088"}, "def": "140097475073792", "variance": "INVARIANT"}}, "140097475074240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475074688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097475075136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097391197568"}, {"nodeId": "140097391197680"}, {"nodeId": "140097391197792"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391197568": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097391197680": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391197792": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097475075584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140097475076032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097391197904"}, {"nodeId": "140097391198016"}, {"nodeId": "140097386283072"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391197904": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097407466688"}]}]}}, "140097391198016": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386283072": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097475076480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140097475077376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386283184"}, {"nodeId": "140097386283296"}, {"nodeId": "140097386283408"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386283184": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386283296": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386283408": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097475077824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386283520"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140097386283520": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}]}}, "140097475078720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386283632"}, {"nodeId": "140097386283744"}, {"nodeId": "140097386283856"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386283632": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386283744": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386283856": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097475079168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475079616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475080064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475080512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475080960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475081408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475081856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475082304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475082752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097407466688"}]}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097475083200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}, {"nodeId": "140097386283968"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097386283968": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}]}}, "140097428309440": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391197344"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470090368"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470090816"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470091264"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470091712"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470092160"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470092608"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470093056"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470093504"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470094400"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470094848"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470095296"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470096192"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470096640"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470097088"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470097536"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470097984"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470098432"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470098880"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470099328"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470099776"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470100224"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470100672"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470101120"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470101568"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470102016"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470102464"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470102912"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470218304"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470218752"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470219200"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470219648"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470220096"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470220544"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470220992"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470221440"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470221888"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470222336"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470222784"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470223232"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470223680"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470224128"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470224576"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470225024"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470225472"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470225920"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470226368"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097331767424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097331766304"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470227712"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470228160"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386286320"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386290912"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470230400"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470230848"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470231296"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470231744"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470232192"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470232640"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470233088"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470233536"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470233984"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470398528"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470398976"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470399424"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470399872"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470400320"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470400768"}, "name": "__alloc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470401216"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470401664"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140097499820128", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097391197344": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470089024"}, {"nodeId": "140097470089472"}, {"nodeId": "140097470089920"}]}}, "140097470089024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470089472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386286992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386286992": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097407464576"}]}, {"nodeId": "140097407464576"}, {"nodeId": "140097407466688"}]}}, "140097470089920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}}, "140097470090368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470090816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470091264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097470091712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386287104"}, {"nodeId": "140097386287216"}, {"nodeId": "140097386287328"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386287104": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386287216": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386287328": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097470092160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470092608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140097470093056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386287440"}, {"nodeId": "140097386287552"}, {"nodeId": "140097386287664"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386287440": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097407466688"}]}]}}, "140097386287552": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386287664": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097470093504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140097470094400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097407464576"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470094848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386287776"}, {"nodeId": "140097386287888"}, {"nodeId": "140097386288000"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386287776": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386287888": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386288000": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097470095296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386288112"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140097386288112": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}]}}, "140097470096192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386288224"}, {"nodeId": "140097386288336"}, {"nodeId": "140097386288448"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386288224": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386288336": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386288448": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097470096640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097470097088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470097536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470097984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470098432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470098880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470099328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470099776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470100224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470100672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097407466688"}]}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470101120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}, {"nodeId": "140097386288560"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097386288560": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}]}}, "140097470101568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470102016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386288672"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097386288672": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097470102464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097386288896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386288896": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309440"}, {"nodeId": "140097428309440"}, {"nodeId": "140097428309440"}]}}, "140097470102912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097470218304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470218752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470219200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470219648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}, {"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097470220096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386289008"}, {"nodeId": "140097386289120"}, {"nodeId": "140097386289232"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386289008": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386289120": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386289232": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097470220544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386289344"}, {"nodeId": "140097386289456"}, {"nodeId": "140097386289568"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386289344": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386289456": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386289568": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097470220992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}, {"nodeId": "140097386289680"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097386289680": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}]}}, "140097470221440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097386289904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386289904": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309440"}, {"nodeId": "140097428309440"}, {"nodeId": "140097428309440"}]}}, "140097470221888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386290016"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309440"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097386290016": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097470222336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386290128"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097386290128": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097470222784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386290240"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309440"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097386290240": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097470223232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309440"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140097470223680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386290352"}, {"nodeId": "140097386290464"}, {"nodeId": "140097386290576"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386290352": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097407466688"}]}]}}, "140097386290464": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386290576": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097470224128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386290688"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097386290688": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097470224576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470225024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470225472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386290800"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140097386290800": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097470225920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470226368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097331767424": {"type": "Function", "content": {"typeVars": [".0.140097331767424"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097331767424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140097331767424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309440"}, "def": "140097331767424", "variance": "INVARIANT"}}, "140097331766304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466688"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470227712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470228160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386286320": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470228608"}, {"nodeId": "140097470229056"}]}}, "140097470228608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470229056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386290912": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470229504"}, {"nodeId": "140097470229952"}]}}, "140097470229504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097470229952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097428310144"}, {"nodeId": "140097386291248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097386291248": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097407464576"}]}, {"nodeId": "140097428309088"}]}}, "140097470230400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386291360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386291360": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "140097428310144"}]}}, "140097470230848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470231296": {"type": "Function", "content": {"typeVars": [".0.140097470231296"], "argTypes": [{"nodeId": ".0.140097470231296"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": ".0.140097470231296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470231296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309440"}, "def": "140097470231296", "variance": "INVARIANT"}}, "140097470231744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470232192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470232640": {"type": "Function", "content": {"typeVars": [".0.140097470232640"], "argTypes": [{"nodeId": ".0.140097470232640"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".0.140097470232640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470232640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309440"}, "def": "140097470232640", "variance": "INVARIANT"}}, "140097470233088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470233536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386291584"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386291584": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "140097407466688"}]}}, "140097470233984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470398528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470398976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470399424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470399872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470400320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470400768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470401216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470401664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097428309792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097499820128": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "content": {"name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382639072"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403898448"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403899008"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403899344"}, "items": [{"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457616736"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457617184"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457617632"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457618080"}, "name": "reverse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457618528"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457766688"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457767136"}, "name": "__iadd__"}}], "typeVars": [{"nodeId": ".1.140097499820128"}], "bases": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499820128"}]}], "isAbstract": true}}, ".1.140097499820128": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499820128", "variance": "INVARIANT"}}, "140097382639072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097499822944"}, {"nodeId": ".1.140097499820128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}}, "140097403898448": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457614048"}, {"nodeId": "140097457614496"}]}}, "140097457614048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097499820128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457614496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097403899008": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457614944"}, {"nodeId": "140097457615392"}]}}, "140097457614944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097499822944"}, {"nodeId": ".1.140097499820128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097457615392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097428310144"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097499820128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097403899344": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457615840"}, {"nodeId": "140097457616288"}]}}, "140097457615840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457616288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457616736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": ".1.140097499820128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140097457617184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097457617632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097499820128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}}, "140097457618080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097457618528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097499820128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}}, "140097457766688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": ".1.140097499820128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140097457767136": {"type": "Function", "content": {"typeVars": [".0.140097457767136"], "argTypes": [{"nodeId": ".0.140097457767136"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097499820128"}]}], "returnType": {"nodeId": ".0.140097457767136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097457767136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, "def": "140097457767136", "variance": "INVARIANT"}}, "140097475083648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475199040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386284080"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097386284080": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097475199488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097386284304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386284304": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}]}}, "140097475199936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407466688"}, {"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097475200384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097475200832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097475201280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386284416"}, {"nodeId": "140097386284528"}, {"nodeId": "140097386284640"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386284416": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386284528": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386284640": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097475201728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386284752"}, {"nodeId": "140097386284864"}, {"nodeId": "140097386284976"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386284752": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386284864": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386284976": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097475202176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}, {"nodeId": "140097386285088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097386285088": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}]}}, "140097475202624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097386285312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386285312": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}]}}, "140097475203072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386285424"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309088"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097386285424": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097475203520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386285536"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097386285536": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097475203968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386285648"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309088"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097386285648": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097475204416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309088"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140097475204864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386285760"}, {"nodeId": "140097386285872"}, {"nodeId": "140097386285984"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386285760": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097407466688"}]}]}}, "140097386285872": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386285984": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097475205312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386286096"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097386286096": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097475205760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475206208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475206656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386286208"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140097386286208": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097475207104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475207552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097336835680": {"type": "Function", "content": {"typeVars": [".0.140097336835680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097336835680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140097336835680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309088"}, "def": "140097336835680", "variance": "INVARIANT"}}, "140097331757792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466688"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475208896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097475209344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097391196336": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097475209792"}, {"nodeId": "140097475210240"}]}}, "140097475209792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475210240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475210688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475211136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475211584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475212032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475212480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386286544"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386286544": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "140097407466688"}]}}, "140097475212928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475213376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475213824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475214272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475214720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470087232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470087680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097386286768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386286768": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}]}}, "140097470088576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097378207104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378207328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378207552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378207776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378208000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378208224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378208448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378208672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378208896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378209568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483370144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097398916144"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398916144": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097398915920"}]}}, "140097398915920": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097483372384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null]}}, "140097483374176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097407713696"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "co_argcount", "co_posonlyargcount", "co_kwonlyargcount", "co_nlocals", "co_stacksize", "co_flags", "co_firstlineno", "co_code", "co_consts", "co_names", "co_varnames", "co_freevars", "co_cellvars", "co_filename", "co_name", "co_linetable"]}}, "140097378541056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378541280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378541504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "140097398925328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398925328": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "A"}]}}, "140097378541728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407572720": {"type": "Union", "content": {"items": [{"nodeId": "140097428394656"}, {"nodeId": "N"}]}}, "140097428394656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097479107168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407572496": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097378538144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718976"}], "returnType": {"nodeId": "140097407719328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378538368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718976"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378538592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718976"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097466707840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428315424"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "140097466708288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428315424"}, {"nodeId": "140097386903280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386903280": {"type": "Union", "content": {"items": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097466708736": {"type": "Function", "content": {"typeVars": [".0.140097466708736"], "argTypes": [{"nodeId": ".0.140097466708736"}, {"nodeId": "140097386903504"}], "returnType": {"nodeId": ".0.140097466708736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140097466708736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428315424"}, "def": "140097466708736", "variance": "INVARIANT"}}, "140097386903504": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097386292368": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097470408832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097428308736"}, {"nodeId": "140097386292480"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}}, "140097386292480": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}]}}, "140097386291024": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470409280"}, {"nodeId": "140097470409728"}]}}, "140097470409280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470409728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470410176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470410624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470411072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386292032": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470411520"}, {"nodeId": "140097470411968"}]}}, "140097470411520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097428310144"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097470411968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097470412416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097386293264"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "140097386293264": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140097470413760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470414208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470529600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470530048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097386293152"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140097386293152": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}]}}, "140097470530944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470531392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097428309792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097407451200": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "content": {"name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382373568"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__int__"]}}, "140097382373568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407451200"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097419752224": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492045152"}, "name": "__trunc__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__trunc__"]}}, "140097492045152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419752224"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097487006272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499822944"}, "def": "140097487006272", "variance": "INVARIANT"}}, "140097487006720": {"type": "Function", "content": {"typeVars": [".0.140097487006720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097391187376"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".0.140097487006720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}}, "140097391187376": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}]}}, ".0.140097487006720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499822944"}, "def": "140097487006720", "variance": "INVARIANT"}}, "140097487007168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097391187712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391187712": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "0"}]}}, "140097336173824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336174496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336172928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336172704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097487009408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097487009856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097487010304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474428992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097407464576"}, {"nodeId": "140097391188272"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}}, "140097391188272": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140097340462624": {"type": "Function", "content": {"typeVars": [".0.140097340462624"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097391188384"}, {"nodeId": "140097391188720"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": ".0.140097340462624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}}, "140097391188384": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097407464576"}]}, {"nodeId": "140097407452256"}, {"nodeId": "140097407466688"}]}}, "140097391188720": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, ".0.140097340462624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499822944"}, "def": "140097340462624", "variance": "INVARIANT"}}, "140097474430336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474430784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474431232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474431680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474432128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097499823296": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474534912"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474535360"}, "name": "as_integer_ratio"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474535808"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474536256"}, "name": "is_integer"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097336664672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336665120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336663776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474538048"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474538496"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474538944"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474539392"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474539840"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474540288"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474540736"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474541184"}, "name": "__divmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391187152"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474542528"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474542976"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474658368"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474658816"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474659264"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474659712"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474660160"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391190624"}, "items": [{"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474661952"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474662400"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474662848"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474663296"}, "name": "__floor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391191296"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474664640"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474665088"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474665536"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474665984"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474666432"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474666880"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474667328"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474667776"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474668224"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474668672"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474669120"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474669568"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097474534912": {"type": "Function", "content": {"typeVars": [".0.140097474534912"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097391190736"}], "returnType": {"nodeId": ".0.140097474534912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140097391190736": {"type": "Union", "content": {"items": [{"nodeId": "140097407451552"}, {"nodeId": "140097407464576"}, {"nodeId": "140097428308736"}, {"nodeId": "140097407466688"}]}}, "140097407451552": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "content": {"name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382375360"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__float__"]}}, "140097382375360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407451552"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097474534912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499823296"}, "def": "140097474534912", "variance": "INVARIANT"}}, "140097474535360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097391190960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391190960": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097474535808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474536256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336664672": {"type": "Function", "content": {"typeVars": [".0.140097336664672"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097336664672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140097336664672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499823296"}, "def": "140097336664672", "variance": "INVARIANT"}}, "140097336665120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336663776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474538048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474538496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474538944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474539392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474539840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474540288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474540736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474541184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097391191184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097391191184": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097391187152": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097474541632"}, {"nodeId": "140097474542080"}]}}, "140097474541632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097474542080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097474542528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474542976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474658368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474658816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474659264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474659712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474660160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097391191632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097391191632": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097391190624": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097474660608"}, {"nodeId": "140097474661056"}, {"nodeId": "140097474661504"}]}}, "140097474660608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097391191856"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097391191856": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097424808240"}}}, "140097424808240": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097474661056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097391191968"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097391191968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097441665808"}}}, "140097441665808": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097499823648": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391191744"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336670944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336820224"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474672704"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474673152"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474673600"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474674048"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474773056"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474773504"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474773952"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474774400"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474774848"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474775296"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474775744"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474776192"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474776640"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474777088"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474777536"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474777984"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474778432"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097391191744": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097474670016"}, {"nodeId": "140097474670464"}]}}, "140097474670016": {"type": "Function", "content": {"typeVars": [".0.140097474670016"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097391192752"}, {"nodeId": "140097391192864"}], "returnType": {"nodeId": ".0.140097474670016"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}}, "140097391192752": {"type": "Union", "content": {"items": [{"nodeId": "140097499823648"}, {"nodeId": "140097407451904"}, {"nodeId": "140097407451552"}, {"nodeId": "140097407464576"}]}}, "140097407451904": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "content": {"name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382376928"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__complex__"]}}, "140097382376928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407451904"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097391192864": {"type": "Union", "content": {"items": [{"nodeId": "140097499823648"}, {"nodeId": "140097407451552"}, {"nodeId": "140097407464576"}]}}, ".0.140097474670016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499823648"}, "def": "140097474670016", "variance": "INVARIANT"}}, "140097474670464": {"type": "Function", "content": {"typeVars": [".0.140097474670464"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097391192976"}], "returnType": {"nodeId": ".0.140097474670464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}}, "140097391192976": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407451904"}, {"nodeId": "140097407451552"}, {"nodeId": "140097407464576"}, {"nodeId": "140097499823648"}]}}, ".0.140097474670464": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499823648"}, "def": "140097474670464", "variance": "INVARIANT"}}, "140097336670944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336820224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474672704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474673152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474673600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474674048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474773056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097474773504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474773952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474774400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474774848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474775296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097474775744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474776192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474776640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474777088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474777536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474777984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474778432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474661504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097474661952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097391192304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391192304": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}]}}, "140097474662400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474662848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474663296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391191296": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097474663744"}, {"nodeId": "140097474664192"}]}}, "140097474663744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097474664192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097474664640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474665088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474665536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474665984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474666432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474666880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474667328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474667776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474668224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474668672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474669120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474669568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474432576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474433024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097391188944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097391188944": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097474433472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474433920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474434368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474434816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474435264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474435712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474436160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097391189168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097391189168": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097391186592": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097474436608"}, {"nodeId": "140097474437056"}, {"nodeId": "140097474437504"}, {"nodeId": "140097474437952"}, {"nodeId": "140097474438400"}, {"nodeId": "140097474438848"}]}}, "140097474436608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474437056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097474437504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097391189840"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097391189840": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097424808240"}}}, "140097474437952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097391189952"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097391189952": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097441665808"}}}, "140097474438400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097474438848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097474439296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097391190176"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097391190176": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097474439744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474440192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474440640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474441088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474441536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474441984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474442432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474442880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474443328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474443776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474444224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474444672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474527296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474527744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474528192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474528640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474529088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097474529536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097391190512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391190512": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}]}}, "140097474529984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474530432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474530880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474531328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474531776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474532224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474532672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474533120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474533568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474534016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474534464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470651456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": ".1.140097428310848"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097470651904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": ".1.140097428310848"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470652352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097407464576"}, {"nodeId": ".1.140097428310848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097470652800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": ".1.140097428310848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386295728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470653248"}, {"nodeId": "140097470653696"}]}}, "140097470653248": {"type": "Function", "content": {"typeVars": [".-1.140097470653248"], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".-1.140097470653248"}]}, {"nodeId": "N"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140097470653248": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140097420531904"}, "def": "140097470653248", "variance": "INVARIANT"}}, "140097420531904": {"type": "Union", "content": {"items": [{"nodeId": "140097419747296", "args": [{"nodeId": "A"}]}, {"nodeId": "140097419747648", "args": [{"nodeId": "A"}]}]}}, "140097419747296": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461777376"}, "name": "__lt__"}}], "typeVars": [{"nodeId": ".1.140097419747296"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__lt__"]}}, ".1.140097419747296": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419747296", "variance": "CONTRAVARIANT"}}, "140097461777376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419747296", "args": [{"nodeId": ".1.140097419747296"}]}, {"nodeId": ".1.140097419747296"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419747648": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461777824"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140097419747648"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__gt__"]}}, ".1.140097419747648": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419747648", "variance": "CONTRAVARIANT"}}, "140097461777824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419747648", "args": [{"nodeId": ".1.140097419747648"}]}, {"nodeId": ".1.140097419747648"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470653696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097391261984"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140097391261984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140097428310848"}], "returnType": {"nodeId": "140097386297296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386297296": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531792"}}}, "140097420531792": {"type": "Union", "content": {"items": [{"nodeId": "140097419747296", "args": [{"nodeId": "A"}]}, {"nodeId": "140097419747648", "args": [{"nodeId": "A"}]}]}}, "140097470654144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470654592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386296848": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470655040"}, {"nodeId": "140097470655488"}]}}, "140097470655040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".1.140097428310848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470655488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386296960": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470655936"}, {"nodeId": "140097470656384"}]}}, "140097470655936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097407464576"}, {"nodeId": ".1.140097428310848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097470656384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310144"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097470656832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097386297520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386297520": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "140097428310144"}]}}, "140097386297184": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470657280"}, {"nodeId": "140097470657728"}]}}, "140097470657280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470657728": {"type": "Function", "content": {"typeVars": [".-1.140097470657728"], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310848", "args": [{"nodeId": ".-1.140097470657728"}]}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097386297744"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097470657728": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470657728", "variance": "INVARIANT"}}, "140097386297744": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140097470657728"}, {"nodeId": ".1.140097428310848"}]}}, "140097470658176": {"type": "Function", "content": {"typeVars": [".0.140097470658176"], "argTypes": [{"nodeId": ".0.140097470658176"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": ".0.140097470658176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470658176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "def": "140097470658176", "variance": "INVARIANT"}}, "140097470658624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470659072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470659520": {"type": "Function", "content": {"typeVars": [".0.140097470659520"], "argTypes": [{"nodeId": ".0.140097470659520"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".0.140097470659520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470659520": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "def": "140097470659520", "variance": "INVARIANT"}}, "140097470659968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470824512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470824960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470825408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470825856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470826304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470826752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097470830336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097428309088"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470830784": {"type": "Function", "content": {"typeVars": [".0.140097470830784"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097470830784"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, ".0.140097470830784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, "def": "140097470830784", "variance": "INVARIANT"}}, "140097470831232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470831680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "140097407457184", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407457184": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097340148864"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097407457184"}, {"nodeId": ".2.140097407457184"}], "bases": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407457184"}]}], "isAbstract": false}}, ".1.140097407457184": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407457184", "variance": "COVARIANT"}}, ".2.140097407457184": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407457184", "variance": "COVARIANT"}}, "140097340148864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407457184", "args": [{"nodeId": ".1.140097407457184"}, {"nodeId": ".2.140097407457184"}]}], "returnType": {"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407457184"}, {"nodeId": ".2.140097407457184"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470832128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "140097407457536", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407457536": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097340050112"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097407457536"}, {"nodeId": ".2.140097407457536"}], "bases": [{"nodeId": "140097407455072", "args": [{"nodeId": ".2.140097407457536"}]}], "isAbstract": false}}, ".1.140097407457536": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407457536", "variance": "COVARIANT"}}, ".2.140097407457536": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407457536", "variance": "COVARIANT"}}, "140097340050112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407457536", "args": [{"nodeId": ".1.140097407457536"}, {"nodeId": ".2.140097407457536"}]}], "returnType": {"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407457536"}, {"nodeId": ".2.140097407457536"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470832576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "140097407457888", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407457888": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097340051456"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097407457888"}, {"nodeId": ".2.140097407457888"}], "bases": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407457888"}, {"nodeId": ".2.140097407457888"}]}], "isAbstract": false}}, ".1.140097407457888": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407457888", "variance": "COVARIANT"}}, ".2.140097407457888": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407457888", "variance": "COVARIANT"}}, "140097340051456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407457888", "args": [{"nodeId": ".1.140097407457888"}, {"nodeId": ".2.140097407457888"}]}], "returnType": {"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407457888"}, {"nodeId": ".2.140097407457888"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386297856": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470833024"}, {"nodeId": "140097470833472"}]}}, "140097470833024": {"type": "Function", "content": {"typeVars": [".-1.140097470833024"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097470833024"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": ".-1.140097470833024"}, {"nodeId": "140097386299200"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}}, ".-1.140097470833024": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470833024", "variance": "INVARIANT"}}, "140097386299200": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097470833472": {"type": "Function", "content": {"typeVars": [".-1.140097470833472", ".-2.140097470833472"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097470833472"}]}, {"nodeId": ".-2.140097470833472"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": ".-1.140097470833472"}, {"nodeId": ".-2.140097470833472"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140097470833472": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470833472", "variance": "INVARIANT"}}, ".-2.140097470833472": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470833472", "variance": "INVARIANT"}}, "140097386298640": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470833920"}, {"nodeId": "140097470834368"}]}}, "140097470833920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".1.140097428311200"}], "returnType": {"nodeId": "140097386610864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386610864": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097428311200"}, {"nodeId": "N"}]}}, "140097470834368": {"type": "Function", "content": {"typeVars": [".-1.140097470834368"], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".1.140097428311200"}, {"nodeId": "140097386610976"}], "returnType": {"nodeId": "140097386611088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097386610976": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097428311200"}, {"nodeId": ".-1.140097470834368"}]}}, ".-1.140097470834368": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470834368", "variance": "INVARIANT"}}, "140097386611088": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097428311200"}, {"nodeId": ".-1.140097470834368"}]}}, "140097386298976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470834816"}, {"nodeId": "140097470835264"}]}}, "140097470834816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".1.140097428311200"}], "returnType": {"nodeId": ".2.140097428311200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470835264": {"type": "Function", "content": {"typeVars": [".-1.140097470835264"], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".1.140097428311200"}, {"nodeId": "140097386611312"}], "returnType": {"nodeId": "140097386611424"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097386611312": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097428311200"}, {"nodeId": ".-1.140097470835264"}]}}, ".-1.140097470835264": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470835264", "variance": "INVARIANT"}}, "140097386611424": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097428311200"}, {"nodeId": ".-1.140097470835264"}]}}, "140097470835712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470836160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".1.140097428311200"}], "returnType": {"nodeId": ".2.140097428311200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470836608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097470837056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".1.140097428311200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470837504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097428311200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470837952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097428311200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470838400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097470838848": {"type": "Function", "content": {"typeVars": [".-1.140097470838848", ".-2.140097470838848"], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097470838848"}, {"nodeId": ".-2.140097470838848"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097386611648"}, {"nodeId": "140097386611760"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097470838848": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470838848", "variance": "INVARIANT"}}, ".-2.140097470838848": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470838848", "variance": "INVARIANT"}}, "140097386611648": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".-1.140097470838848"}]}}, "140097386611760": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097428311200"}, {"nodeId": ".-2.140097470838848"}]}}, "140097470839296": {"type": "Function", "content": {"typeVars": [".-1.140097470839296", ".-2.140097470839296"], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097470839296"}, {"nodeId": ".-2.140097470839296"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097386611872"}, {"nodeId": "140097386611984"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097470839296": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470839296", "variance": "INVARIANT"}}, ".-2.140097470839296": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470839296", "variance": "INVARIANT"}}, "140097386611872": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".-1.140097470839296"}]}}, "140097386611984": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097428311200"}, {"nodeId": ".-2.140097470839296"}]}}, "140097386610752": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470839744"}, {"nodeId": "140097470840192"}]}}, "140097470839744": {"type": "Function", "content": {"typeVars": [".0.140097470839744"], "argTypes": [{"nodeId": ".0.140097470839744"}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": ".0.140097470839744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470839744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, "def": "140097470839744", "variance": "INVARIANT"}}, "140097470840192": {"type": "Function", "content": {"typeVars": [".0.140097470840192"], "argTypes": [{"nodeId": ".0.140097470840192"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097386612320"}]}], "returnType": {"nodeId": ".0.140097470840192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470840192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, "def": "140097470840192", "variance": "INVARIANT"}}, "140097386612320": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}}, "140097499821536": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382876992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382877440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457893024"}, "name": "clear"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403900800"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457894368"}, "name": "popitem"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403904720"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403905168"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}], "typeVars": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}], "bases": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}], "isAbstract": true}}, ".1.140097499821536": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499821536", "variance": "INVARIANT"}}, ".2.140097499821536": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499821536", "variance": "INVARIANT"}}, "140097382876992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097382877440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": ".1.140097499821536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457893024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403900800": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457893472"}, {"nodeId": "140097457893920"}]}}, "140097457893472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": ".1.140097499821536"}], "returnType": {"nodeId": ".2.140097499821536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097457893920": {"type": "Function", "content": {"typeVars": [".-1.140097457893920"], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": ".1.140097499821536"}, {"nodeId": "140097403905280"}], "returnType": {"nodeId": "140097403905392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140097403905280": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097499821536"}, {"nodeId": ".-1.140097457893920"}]}}, ".-1.140097457893920": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457893920", "variance": "INVARIANT"}}, "140097403905392": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097499821536"}, {"nodeId": ".-1.140097457893920"}]}}, "140097457894368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}], "returnType": {"nodeId": "140097403905616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403905616": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}}, "140097403904720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457894816"}, {"nodeId": "140097457895264"}]}}, "140097457894816": {"type": "Function", "content": {"typeVars": [".-1.140097457894816"], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": "140097403905840"}]}, {"nodeId": ".1.140097499821536"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097403905952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097403905840": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140097457894816"}, {"nodeId": "N"}]}}, ".-1.140097457894816": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457894816", "variance": "INVARIANT"}}, "140097403905952": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140097457894816"}, {"nodeId": "N"}]}}, "140097457895264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}], "returnType": {"nodeId": ".2.140097499821536"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097403905168": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457895712"}, {"nodeId": "140097457896160"}, {"nodeId": "140097457896608"}]}}, "140097457895712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": ".2.140097499821536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097457896160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097403906288"}]}, {"nodeId": ".2.140097499821536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097403906288": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}}, "140097457896608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": ".2.140097499821536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140097390906160": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097491617600"}]}}, "140097491617600": {"type": "Function", "content": {"typeVars": [".0.140097491617600"], "argTypes": [{"nodeId": ".0.140097491617600"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097491617600": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097491617600", "variance": "INVARIANT"}}, "140097336513408": {"type": "Function", "content": {"typeVars": [".0.140097336513408"], "argTypes": [{"nodeId": ".0.140097336513408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097336513408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097336513408", "variance": "INVARIANT"}}, "140097491618496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097491618944": {"type": "Function", "content": {"typeVars": [".0.140097491618944"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140097491618944"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140097491618944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097491618944", "variance": "INVARIANT"}}, "140097491619392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097491619840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097491620288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097491620736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097491621184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097491621632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097491622080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097491622528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097491622976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097491623424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097491623872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097391182336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391182336": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}]}}, "140097491624320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097391182560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097391182560": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}]}}, "140097491625664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097491626112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140097336510720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140097474780224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428308736"}, "def": "140097474780224", "variance": "INVARIANT"}}, "140097474780672": {"type": "Function", "content": {"typeVars": [".0.140097474780672"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097407466688"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097474780672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}}, ".0.140097474780672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428308736"}, "def": "140097474780672", "variance": "INVARIANT"}}, "140097474781120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474781568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474782016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097474782464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097391193536"}, {"nodeId": "140097391193648"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}}, "140097391193536": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391193648": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097474782912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140097474783360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391193760"}, {"nodeId": "140097391193872"}, {"nodeId": "140097391193984"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391193760": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}]}}, "140097391193872": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391193984": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097474783808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140097474784704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097391194096"}, {"nodeId": "140097391194208"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391194096": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391194208": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097474785152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097474785600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}}, "140097428308032": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474779328"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__getitem__"]}}, "140097474779328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308032"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474786048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097391194320"}, {"nodeId": "140097391194432"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391194320": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391194432": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097474786496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474786944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474787392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474787840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474788288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474788736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474936896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474937344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474937792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474938240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474938688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474939136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474939584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097474940032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097474940480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474940928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391194544"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097391194544": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097474941376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097391194768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097391194768": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097474941824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097474942272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097474942720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097474943168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097391194880"}, {"nodeId": "140097391194992"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391194880": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391194992": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097474943616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097391195104"}, {"nodeId": "140097391195216"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391195104": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391195216": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097474944064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097474944512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097391195440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097391195440": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097474944960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391195552"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097391195552": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097474945408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391195664"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097391195664": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097474945856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391195776"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097391195776": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097474946304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140097474946752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391195888"}, {"nodeId": "140097391196000"}, {"nodeId": "140097391196112"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391195888": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}]}}, "140097391196000": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391196112": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097474947200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391196224"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097391196224": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097474947648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474948096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474948544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308384"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097428308384": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474779776"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__getitem__"]}}, "140097474779776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308384"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097391193200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097391193200": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097474948992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474949440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097391192640": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097474949888"}, {"nodeId": "140097474950336"}, {"nodeId": "140097474950784"}]}}, "140097474949888": {"type": "Function", "content": {"typeVars": [".-1.140097474949888"], "argTypes": [{"nodeId": "140097391196560"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": ".-1.140097474949888"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097391196560": {"type": "Union", "content": {"items": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": ".-1.140097474949888"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".-1.140097474949888"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097391196448"}, {"nodeId": ".-1.140097474949888"}]}]}}, ".-1.140097474949888": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097474949888", "variance": "INVARIANT"}}, "140097391196448": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097474950336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474950784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097391196672"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097391196672": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097474951232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474951680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474952128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474952576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475067968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391196784"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097391196784": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "140097428310144"}]}}, "140097475068416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475068864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097475069312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475069760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097475070208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475070656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475071104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475071552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475072000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475072448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097391197120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391197120": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403417728": {"type": "Concrete", "content": {"module": "boruvka", "simpleName": "Graph", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "num_of_nodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097495476352"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weight", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097495480608"}, "name": "add_edge"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097495481056"}, "name": "find_component"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097495481504"}, "name": "set_component"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "component_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097495481952"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491616032"}, "name": "boruvka"}}, {"kind": "Variable", "content": {"name": "m_num_of_nodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m_edges", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}]}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m_component", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097495476352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417728"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "num_of_nodes"]}}, "140097495480608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417728"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "u_node", "v_node", "weight"]}}, "140097495481056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417728"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "u_node"]}}, "140097495481504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417728"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "u_node"]}}, "140097495481952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417728"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "component_size", "u_node", "v_node"]}}, "140097491616032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499812384": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332016992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407713696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407965824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332017664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332018336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470648320"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097332016992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812384"}], "returnType": {"nodeId": "140097386296288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386296288": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097407467040"}]}, {"nodeId": "N"}]}}, "140097407467040": {"type": "Concrete", "content": {"module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483358944"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097483358944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407467040"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097407965824": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097332017664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812384"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097332018336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812384"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470648320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812384"}, {"nodeId": "140097499811328"}, {"nodeId": "140097386296624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097386296624": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097499822592": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391185136"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097391185136": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097487004928"}, {"nodeId": "140097487005376"}, {"nodeId": "140097487005824"}]}}, "140097487004928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822592"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097487005376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822592"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097487005824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407458592": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386612096"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470971264"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471086656"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471087104"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471087552"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471088000"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471088448"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471088896"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471089344"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471089792"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471090240"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471090688"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471091136"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471091584"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471092032"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471092480"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471092928"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471093376"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471093824"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471094272"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471094720"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407458592"}], "bases": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097407458592"}]}], "isAbstract": false}}, ".1.140097407458592": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407458592", "variance": "COVARIANT"}}, "140097386612096": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470970368"}, {"nodeId": "140097470970816"}]}}, "140097470970368": {"type": "Function", "content": {"typeVars": [".0.140097470970368"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140097470970368"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140097470970368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "def": "140097470970368", "variance": "INVARIANT"}}, "140097470970816": {"type": "Function", "content": {"typeVars": [".0.140097470970816"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": ".0.140097470970816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140097470970816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "def": "140097470970816", "variance": "INVARIANT"}}, "140097470971264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097471086656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140097471087104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140097471087552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097471088000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097471088448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097471088896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097471089344": {"type": "Function", "content": {"typeVars": [".-1.140097471089344"], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097471089344"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": "140097386614224"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140097471089344": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097471089344", "variance": "INVARIANT"}}, "140097386614224": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407458592"}, {"nodeId": ".-1.140097471089344"}]}}, "140097471089792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097471090240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471090688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407458592"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097471091136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471091584": {"type": "Function", "content": {"typeVars": [".-1.140097471091584"], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".-1.140097471091584"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": "140097386614336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097471091584": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097471091584", "variance": "INVARIANT"}}, "140097386614336": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407458592"}, {"nodeId": ".-1.140097471091584"}]}}, "140097471092032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471092480": {"type": "Function", "content": {"typeVars": [".-1.140097471092480"], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".-1.140097471092480"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": "140097386614448"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097471092480": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097471092480", "variance": "INVARIANT"}}, "140097386614448": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407458592"}, {"nodeId": ".-1.140097471092480"}]}}, "140097471092928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471093376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471093824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471094272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471094720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097407458944": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471095168"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471095616"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471096064"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471096512"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407458944"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": "140097407568240"}]}], "isAbstract": false}}, ".1.140097407458944": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407458944", "variance": "INVARIANT"}}, "140097471095168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458944", "args": [{"nodeId": ".1.140097407458944"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458944"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}}, "140097471095616": {"type": "Function", "content": {"typeVars": [".0.140097471095616"], "argTypes": [{"nodeId": ".0.140097471095616"}], "returnType": {"nodeId": ".0.140097471095616"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097471095616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407458944", "args": [{"nodeId": ".1.140097407458944"}]}, "def": "140097471095616", "variance": "INVARIANT"}}, "140097471096064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458944", "args": [{"nodeId": ".1.140097407458944"}]}], "returnType": {"nodeId": "140097386614896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386614896": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": ".1.140097407458944"}]}}, "140097471096512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097407568240": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": ".1.140097407458944"}]}}, "140097428311552": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332522656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332523104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332523328"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386613440"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471099200"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471099648"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471100096"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471100544"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471100992"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386614672"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471102336"}, "name": "__reversed__"}}], "typeVars": [], "bases": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097332522656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097332523104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097332523328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386613440": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097471098304"}, {"nodeId": "140097471098752"}]}}, "140097471098304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097471098752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097471099200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097471099648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097471100096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097471100544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471100992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386614672": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097471101440"}, {"nodeId": "140097471101888"}]}}, "140097471101440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471101888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097428311552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471102336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097428311904": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407974560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407968624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407975232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465991232"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465991680"}, "name": "getter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465992128"}, "name": "setter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465992576"}, "name": "deleter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465993024"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465993472"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465993920"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097407974560": {"type": "Union", "content": {"items": [{"nodeId": "140097428395776"}, {"nodeId": "N"}]}}, "140097428395776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407968624": {"type": "Union", "content": {"items": [{"nodeId": "140097415604800"}, {"nodeId": "N"}]}}, "140097415604800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407975232": {"type": "Union", "content": {"items": [{"nodeId": "140097415605472"}, {"nodeId": "N"}]}}, "140097415605472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097465991232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311904"}, {"nodeId": "140097386615344"}, {"nodeId": "140097386615680"}, {"nodeId": "140097386616016"}, {"nodeId": "140097386616240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}}, "140097386615344": {"type": "Union", "content": {"items": [{"nodeId": "140097391262880"}, {"nodeId": "N"}]}}, "140097391262880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386615680": {"type": "Union", "content": {"items": [{"nodeId": "140097391263104"}, {"nodeId": "N"}]}}, "140097391263104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386616016": {"type": "Union", "content": {"items": [{"nodeId": "140097391263328"}, {"nodeId": "N"}]}}, "140097391263328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386616240": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097465991680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311904"}, {"nodeId": "140097386758208"}], "returnType": {"nodeId": "140097428311904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386758208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097465992128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311904"}, {"nodeId": "140097386758432"}], "returnType": {"nodeId": "140097428311904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386758432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097465992576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311904"}, {"nodeId": "140097386758656"}], "returnType": {"nodeId": "140097428311904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386758656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097465993024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311904"}, {"nodeId": "A"}, {"nodeId": "140097386617024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097386617024": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097465993472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311904"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097465993920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311904"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097428312256": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097403220416": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465997952"}, "name": "__fspath__"}}], "typeVars": [{"nodeId": ".1.140097403220416"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__fspath__"]}}, ".1.140097403220416": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097403220416", "variance": "COVARIANT"}}, "140097465997952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403220416", "args": [{"nodeId": ".1.140097403220416"}]}], "returnType": {"nodeId": ".1.140097403220416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428312608": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465998848"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140097428312608"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__anext__"]}}, ".1.140097428312608": {"type": "TypeVar", "content": {"varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "140097499817312", "args": [{"nodeId": "A"}]}, "def": "140097428312608", "variance": "COVARIANT"}}, "140097499817312": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "content": {"name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382533376"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499817312"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__await__"]}}, ".1.140097499817312": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499817312", "variance": "COVARIANT"}}, "140097382533376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817312", "args": [{"nodeId": ".1.140097499817312"}]}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.140097499817312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499816960": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462707232"}, "name": "__next__"}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382464000"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403703744"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462709024"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462709472"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382531360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382531808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382532480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382532704"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499816960"}]}], "isAbstract": true}}, ".1.140097499816960": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499816960", "variance": "COVARIANT"}}, ".2.140097499816960": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499816960", "variance": "CONTRAVARIANT"}}, ".3.140097499816960": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499816960", "variance": "COVARIANT"}}, "140097462707232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}], "returnType": {"nodeId": ".1.140097499816960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382464000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}, {"nodeId": ".2.140097499816960"}], "returnType": {"nodeId": ".1.140097499816960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097403703744": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097462708128"}, {"nodeId": "140097462708576"}]}}, "140097462708128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}, {"nodeId": "0"}, {"nodeId": "140097403896880"}, {"nodeId": "140097403896992"}], "returnType": {"nodeId": ".1.140097499816960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097403896880": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "140097499811328"}]}}, "140097403896992": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097462708576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}, {"nodeId": "140097428315424"}, {"nodeId": "N"}, {"nodeId": "140097403897104"}], "returnType": {"nodeId": ".1.140097499816960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097403897104": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097462709024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462709472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097382531360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}], "returnType": {"nodeId": "140097407713696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382531808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}], "returnType": {"nodeId": "140097407719328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382532480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382532704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}], "returnType": {"nodeId": "140097403897552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403897552": {"type": "Union", "content": {"items": [{"nodeId": "140097499816960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097465998848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428312608", "args": [{"nodeId": ".1.140097428312608"}]}], "returnType": {"nodeId": ".1.140097428312608"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407459296": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386618368"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466140928"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466141376"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140097407459296"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407459296"}]}], "isAbstract": false}}, ".1.140097407459296": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407459296", "variance": "INVARIANT"}}, "140097386618368": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097466139584"}, {"nodeId": "140097466140032"}, {"nodeId": "140097466140480"}]}}, "140097466139584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407459296", "args": [{"nodeId": ".1.140097407459296"}]}, {"nodeId": "N"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097386621504"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097386621504": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407459296"}, {"nodeId": "N"}]}}, "140097466140032": {"type": "Function", "content": {"typeVars": [".-1.140097466140032"], "argTypes": [{"nodeId": "140097407459296", "args": [{"nodeId": ".1.140097407459296"}]}, {"nodeId": "140097386758880"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466140032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097386758880": {"type": "Function", "content": {"typeVars": [".-1.140097386758880"], "argTypes": [{"nodeId": ".-1.140097386758880"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140097386758880": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386758880", "variance": "INVARIANT"}}, ".-1.140097466140032": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466140032", "variance": "INVARIANT"}}, "140097466140480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407459296", "args": [{"nodeId": ".1.140097407459296"}]}, {"nodeId": "140097386759104"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407459296"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097386759104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140097407459296"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097466140928": {"type": "Function", "content": {"typeVars": [".0.140097466140928"], "argTypes": [{"nodeId": ".0.140097466140928"}], "returnType": {"nodeId": ".0.140097466140928"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097466140928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407459296", "args": [{"nodeId": ".1.140097407459296"}]}, "def": "140097466140928", "variance": "INVARIANT"}}, "140097466141376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407459296", "args": [{"nodeId": ".1.140097407459296"}]}], "returnType": {"nodeId": ".1.140097407459296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428312960": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466148096"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140097428312960"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__getitem__"]}}, ".1.140097428312960": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428312960", "variance": "COVARIANT"}}, "140097466148096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428312960", "args": [{"nodeId": ".1.140097428312960"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097428312960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407459648": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386621840"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466319360"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466319808"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140097407459648"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407459648"}]}], "isAbstract": false}}, ".1.140097407459648": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407459648", "variance": "INVARIANT"}}, "140097386621840": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097466152576"}, {"nodeId": "140097466153024"}, {"nodeId": "140097466153472"}, {"nodeId": "140097466153920"}, {"nodeId": "140097466154368"}, {"nodeId": "140097466318912"}]}}, "140097466152576": {"type": "Function", "content": {"typeVars": [".-1.140097466152576"], "argTypes": [{"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}, {"nodeId": "140097386761344"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466152576"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097386761344": {"type": "Function", "content": {"typeVars": [".-1.140097386761344"], "argTypes": [{"nodeId": ".-1.140097386761344"}], "returnType": {"nodeId": ".1.140097407459648"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140097386761344": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761344", "variance": "INVARIANT"}}, ".-1.140097466152576": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466152576", "variance": "INVARIANT"}}, "140097466153024": {"type": "Function", "content": {"typeVars": [".-1.140097466153024", ".-2.140097466153024"], "argTypes": [{"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}, {"nodeId": "140097386760672"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466153024"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466153024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140097386760672": {"type": "Function", "content": {"typeVars": [".-1.140097386760672", ".-2.140097386760672"], "argTypes": [{"nodeId": ".-1.140097386760672"}, {"nodeId": ".-2.140097386760672"}], "returnType": {"nodeId": ".1.140097407459648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097386760672": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386760672", "variance": "INVARIANT"}}, ".-2.140097386760672": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386760672", "variance": "INVARIANT"}}, ".-1.140097466153024": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153024", "variance": "INVARIANT"}}, ".-2.140097466153024": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153024", "variance": "INVARIANT"}}, "140097466153472": {"type": "Function", "content": {"typeVars": [".-1.140097466153472", ".-2.140097466153472", ".-3.140097466153472"], "argTypes": [{"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}, {"nodeId": "140097386760896"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466153472"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466153472"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-3.140097466153472"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140097386760896": {"type": "Function", "content": {"typeVars": [".-1.140097386760896", ".-2.140097386760896", ".-3.140097386760896"], "argTypes": [{"nodeId": ".-1.140097386760896"}, {"nodeId": ".-2.140097386760896"}, {"nodeId": ".-3.140097386760896"}], "returnType": {"nodeId": ".1.140097407459648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, ".-1.140097386760896": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386760896", "variance": "INVARIANT"}}, ".-2.140097386760896": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386760896", "variance": "INVARIANT"}}, ".-3.140097386760896": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386760896", "variance": "INVARIANT"}}, ".-1.140097466153472": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153472", "variance": "INVARIANT"}}, ".-2.140097466153472": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153472", "variance": "INVARIANT"}}, ".-3.140097466153472": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153472", "variance": "INVARIANT"}}, "140097466153920": {"type": "Function", "content": {"typeVars": [".-1.140097466153920", ".-2.140097466153920", ".-3.140097466153920", ".-4.140097466153920"], "argTypes": [{"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}, {"nodeId": "140097386761568"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466153920"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466153920"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-3.140097466153920"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-4.140097466153920"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140097386761568": {"type": "Function", "content": {"typeVars": [".-1.140097386761568", ".-2.140097386761568", ".-3.140097386761568", ".-4.140097386761568"], "argTypes": [{"nodeId": ".-1.140097386761568"}, {"nodeId": ".-2.140097386761568"}, {"nodeId": ".-3.140097386761568"}, {"nodeId": ".-4.140097386761568"}], "returnType": {"nodeId": ".1.140097407459648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, ".-1.140097386761568": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761568", "variance": "INVARIANT"}}, ".-2.140097386761568": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761568", "variance": "INVARIANT"}}, ".-3.140097386761568": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761568", "variance": "INVARIANT"}}, ".-4.140097386761568": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761568", "variance": "INVARIANT"}}, ".-1.140097466153920": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153920", "variance": "INVARIANT"}}, ".-2.140097466153920": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153920", "variance": "INVARIANT"}}, ".-3.140097466153920": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153920", "variance": "INVARIANT"}}, ".-4.140097466153920": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153920", "variance": "INVARIANT"}}, "140097466154368": {"type": "Function", "content": {"typeVars": [".-1.140097466154368", ".-2.140097466154368", ".-3.140097466154368", ".-4.140097466154368", ".-5.140097466154368"], "argTypes": [{"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}, {"nodeId": "140097386761792"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466154368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466154368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-3.140097466154368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-4.140097466154368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-5.140097466154368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null, null]}}, "140097386761792": {"type": "Function", "content": {"typeVars": [".-1.140097386761792", ".-2.140097386761792", ".-3.140097386761792", ".-4.140097386761792", ".-5.140097386761792"], "argTypes": [{"nodeId": ".-1.140097386761792"}, {"nodeId": ".-2.140097386761792"}, {"nodeId": ".-3.140097386761792"}, {"nodeId": ".-4.140097386761792"}, {"nodeId": ".-5.140097386761792"}], "returnType": {"nodeId": ".1.140097407459648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}}, ".-1.140097386761792": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761792", "variance": "INVARIANT"}}, ".-2.140097386761792": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761792", "variance": "INVARIANT"}}, ".-3.140097386761792": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761792", "variance": "INVARIANT"}}, ".-4.140097386761792": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761792", "variance": "INVARIANT"}}, ".-5.140097386761792": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761792", "variance": "INVARIANT"}}, ".-1.140097466154368": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466154368", "variance": "INVARIANT"}}, ".-2.140097466154368": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466154368", "variance": "INVARIANT"}}, ".-3.140097466154368": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466154368", "variance": "INVARIANT"}}, ".-4.140097466154368": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466154368", "variance": "INVARIANT"}}, ".-5.140097466154368": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466154368", "variance": "INVARIANT"}}, "140097466318912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}, {"nodeId": "140097386762016"}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, null, null, null, null, null, "iterables"]}}, "140097386762016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140097407459648"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097466319360": {"type": "Function", "content": {"typeVars": [".0.140097466319360"], "argTypes": [{"nodeId": ".0.140097466319360"}], "returnType": {"nodeId": ".0.140097466319360"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097466319360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}, "def": "140097466319360", "variance": "INVARIANT"}}, "140097466319808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}], "returnType": {"nodeId": ".1.140097407459648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403220768": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466330560"}, "name": "flush"}}], "typeVars": [{"nodeId": ".1.140097403220768"}], "bases": [{"nodeId": "140097402961984", "args": [{"nodeId": ".1.140097403220768"}]}], "protocolMembers": ["flush", "write"]}}, ".1.140097403220768": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097403220768", "variance": "CONTRAVARIANT"}}, "140097466330560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403220768", "args": [{"nodeId": ".1.140097403220768"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097402961984": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492050528"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.140097402961984"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["write"]}}, ".1.140097402961984": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097402961984", "variance": "CONTRAVARIANT"}}, "140097492050528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402961984", "args": [{"nodeId": ".1.140097402961984"}]}, {"nodeId": ".1.140097402961984"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097428313312": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466331904"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140097428313312"}, {"nodeId": ".2.140097428313312"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__pow__"]}}, ".1.140097428313312": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428313312", "variance": "CONTRAVARIANT"}}, ".2.140097428313312": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428313312", "variance": "COVARIANT"}}, "140097466331904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428313312", "args": [{"nodeId": ".1.140097428313312"}, {"nodeId": ".2.140097428313312"}]}, {"nodeId": ".1.140097428313312"}], "returnType": {"nodeId": ".2.140097428313312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097428313664": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466332352"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140097428313664"}, {"nodeId": ".2.140097428313664"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__pow__"]}}, ".1.140097428313664": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428313664", "variance": "CONTRAVARIANT"}}, ".2.140097428313664": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428313664", "variance": "COVARIANT"}}, "140097466332352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428313664", "args": [{"nodeId": ".1.140097428313664"}, {"nodeId": ".2.140097428313664"}]}, {"nodeId": ".1.140097428313664"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.140097428313664"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097428314016": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466332800"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140097428314016"}, {"nodeId": ".2.140097428314016"}, {"nodeId": ".3.140097428314016"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__pow__"]}}, ".1.140097428314016": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428314016", "variance": "CONTRAVARIANT"}}, ".2.140097428314016": {"type": "TypeVar", "content": {"varName": "_M", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428314016", "variance": "CONTRAVARIANT"}}, ".3.140097428314016": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428314016", "variance": "COVARIANT"}}, "140097466332800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428314016", "args": [{"nodeId": ".1.140097428314016"}, {"nodeId": ".2.140097428314016"}, {"nodeId": ".3.140097428314016"}]}, {"nodeId": ".1.140097428314016"}, {"nodeId": ".2.140097428314016"}], "returnType": {"nodeId": ".3.140097428314016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097407460000": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386895552"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466512128"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466512576"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466513024"}, "name": "__length_hint__"}}], "typeVars": [{"nodeId": ".1.140097407460000"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407460000"}]}], "isAbstract": false}}, ".1.140097407460000": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407460000", "variance": "INVARIANT"}}, "140097386895552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097466511232"}, {"nodeId": "140097466511680"}]}}, "140097466511232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460000", "args": [{"nodeId": ".1.140097407460000"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": ".1.140097407460000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097466511680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460000", "args": [{"nodeId": ".1.140097407460000"}]}, {"nodeId": "140097419751872", "args": [{"nodeId": ".1.140097407460000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097419751872": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492044256"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492044704"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140097419751872"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__getitem__", "__len__"]}}, ".1.140097419751872": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419751872", "variance": "COVARIANT"}}, "140097492044256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419751872", "args": [{"nodeId": ".1.140097419751872"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097492044704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419751872", "args": [{"nodeId": ".1.140097419751872"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097419751872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097466512128": {"type": "Function", "content": {"typeVars": [".0.140097466512128"], "argTypes": [{"nodeId": ".0.140097466512128"}], "returnType": {"nodeId": ".0.140097466512128"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097466512128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407460000", "args": [{"nodeId": ".1.140097407460000"}]}, "def": "140097466512128", "variance": "INVARIANT"}}, "140097466512576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460000", "args": [{"nodeId": ".1.140097407460000"}]}], "returnType": {"nodeId": ".1.140097407460000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097466513024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460000", "args": [{"nodeId": ".1.140097407460000"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428314368": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466513920"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140097428314368"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__round__"]}}, ".1.140097428314368": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428314368", "variance": "COVARIANT"}}, "140097466513920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428314368", "args": [{"nodeId": ".1.140097428314368"}]}], "returnType": {"nodeId": ".1.140097428314368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428314720": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466514368"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140097428314720"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__round__"]}}, ".1.140097428314720": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428314720", "variance": "COVARIANT"}}, "140097466514368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428314720", "args": [{"nodeId": ".1.140097428314720"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097428314720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097403221120": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "140097419749056", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140097419749408", "args": [{"nodeId": "140097499822944"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}}, "140097419749056": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461779168"}, "name": "__add__"}}], "typeVars": [{"nodeId": ".1.140097419749056"}, {"nodeId": ".2.140097419749056"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__add__"]}}, ".1.140097419749056": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419749056", "variance": "CONTRAVARIANT"}}, ".2.140097419749056": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419749056", "variance": "COVARIANT"}}, "140097461779168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419749056", "args": [{"nodeId": ".1.140097419749056"}, {"nodeId": ".2.140097419749056"}]}, {"nodeId": ".1.140097419749056"}], "returnType": {"nodeId": ".2.140097419749056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419749408": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461779616"}, "name": "__radd__"}}], "typeVars": [{"nodeId": ".1.140097419749408"}, {"nodeId": ".2.140097419749408"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__radd__"]}}, ".1.140097419749408": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419749408", "variance": "CONTRAVARIANT"}}, ".2.140097419749408": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419749408", "variance": "COVARIANT"}}, "140097461779616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419749408", "args": [{"nodeId": ".1.140097419749408"}, {"nodeId": ".2.140097419749408"}]}, {"nodeId": ".1.140097419749408"}], "returnType": {"nodeId": ".2.140097419749408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407460352": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386899024"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466706048"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466706496"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140097407460352"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407460352"}]}], "isAbstract": false}}, ".1.140097407460352": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407460352", "variance": "COVARIANT"}}, "140097386899024": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097466700672"}, {"nodeId": "140097466701120"}, {"nodeId": "140097466701568"}, {"nodeId": "140097466702016"}, {"nodeId": "140097466702464"}, {"nodeId": "140097466702912"}]}}, "140097466700672": {"type": "Function", "content": {"typeVars": [".-1.140097466700672"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466700672"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097407460352", "args": [{"nodeId": "140097386900256"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}}, ".-1.140097466700672": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466700672", "variance": "INVARIANT"}}, "140097386900256": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140097466700672"}]}}, "140097466701120": {"type": "Function", "content": {"typeVars": [".-1.140097466701120", ".-2.140097466701120"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466701120"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466701120"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097407460352", "args": [{"nodeId": "140097386900480"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}}, ".-1.140097466701120": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466701120", "variance": "INVARIANT"}}, ".-2.140097466701120": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466701120", "variance": "INVARIANT"}}, "140097386900480": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140097466701120"}, {"nodeId": ".-2.140097466701120"}]}}, "140097466701568": {"type": "Function", "content": {"typeVars": [".-1.140097466701568", ".-2.140097466701568", ".-3.140097466701568"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466701568"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466701568"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-3.140097466701568"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097407460352", "args": [{"nodeId": "140097386900704"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}}, ".-1.140097466701568": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466701568", "variance": "INVARIANT"}}, ".-2.140097466701568": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466701568", "variance": "INVARIANT"}}, ".-3.140097466701568": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466701568", "variance": "INVARIANT"}}, "140097386900704": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140097466701568"}, {"nodeId": ".-2.140097466701568"}, {"nodeId": ".-3.140097466701568"}]}}, "140097466702016": {"type": "Function", "content": {"typeVars": [".-1.140097466702016", ".-2.140097466702016", ".-3.140097466702016", ".-4.140097466702016"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466702016"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466702016"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-3.140097466702016"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-4.140097466702016"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097407460352", "args": [{"nodeId": "140097386900928"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}}, ".-1.140097466702016": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702016", "variance": "INVARIANT"}}, ".-2.140097466702016": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702016", "variance": "INVARIANT"}}, ".-3.140097466702016": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702016", "variance": "INVARIANT"}}, ".-4.140097466702016": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702016", "variance": "INVARIANT"}}, "140097386900928": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140097466702016"}, {"nodeId": ".-2.140097466702016"}, {"nodeId": ".-3.140097466702016"}, {"nodeId": ".-4.140097466702016"}]}}, "140097466702464": {"type": "Function", "content": {"typeVars": [".-1.140097466702464", ".-2.140097466702464", ".-3.140097466702464", ".-4.140097466702464", ".-5.140097466702464"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466702464"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466702464"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-3.140097466702464"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-4.140097466702464"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-5.140097466702464"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097407460352", "args": [{"nodeId": "140097386901152"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, "strict"]}}, ".-1.140097466702464": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702464", "variance": "INVARIANT"}}, ".-2.140097466702464": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702464", "variance": "INVARIANT"}}, ".-3.140097466702464": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702464", "variance": "INVARIANT"}}, ".-4.140097466702464": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702464", "variance": "INVARIANT"}}, ".-5.140097466702464": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702464", "variance": "INVARIANT"}}, "140097386901152": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140097466702464"}, {"nodeId": ".-2.140097466702464"}, {"nodeId": ".-3.140097466702464"}, {"nodeId": ".-4.140097466702464"}, {"nodeId": ".-5.140097466702464"}]}}, "140097466702912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097407460352", "args": [{"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, null, "iterables", "strict"]}}, "140097466706048": {"type": "Function", "content": {"typeVars": [".0.140097466706048"], "argTypes": [{"nodeId": ".0.140097466706048"}], "returnType": {"nodeId": ".0.140097466706048"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097466706048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407460352", "args": [{"nodeId": ".1.140097407460352"}]}, "def": "140097466706048", "variance": "INVARIANT"}}, "140097466706496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460352", "args": [{"nodeId": ".1.140097407460352"}]}], "returnType": {"nodeId": ".1.140097407460352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428315072": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097428315776": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428315424"}], "isAbstract": false}}, "140097428316128": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428315424"}], "isAbstract": false}}, "140097428316480": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429048112"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428315424"}], "isAbstract": false}}, "140097429048112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407573952"}}}, "140097407573952": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097428316832": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428315424"}], "isAbstract": false}}, "140097428317184": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428317536": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "content": {"name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428317888": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428318240": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428318592": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466709632"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499811328"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097466709632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428318592"}, {"nodeId": "140097499811328"}, {"nodeId": "140097386903616"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}}, "140097386903616": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097428318944": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428319296": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428319648": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466710080"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097454186208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429045760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097466710080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428319648"}, {"nodeId": "140097499811328"}, {"nodeId": "140097386903728"}, {"nodeId": "140097386903840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}}, "140097386903728": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097386903840": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097454186208": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097429045760": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097428320000": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428320352": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428320704": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428321056": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428321408": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428321760": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428322112": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429056736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429048000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429050240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429047888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429060432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429050800"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097429056736": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097429048000": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097429050240": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097429047888": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097429060432": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097429050800": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097428322464": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428322816": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428323168": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428323520": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317888"}], "isAbstract": false}}, "140097428323872": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317888"}], "isAbstract": false}}, "140097407270976": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317888"}], "isAbstract": false}}, "140097407271328": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428319648"}], "isAbstract": false}}, "140097407271680": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428320000"}], "isAbstract": false}}, "140097407272032": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428320000"}], "isAbstract": false}}, "140097407272384": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428320704"}], "isAbstract": false}}, "140097407272736": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "content": {"name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407273088": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407273440": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407273792": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407273440"}], "isAbstract": false}}, "140097407274144": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407273440"}], "isAbstract": false}}, "140097407274496": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407273440"}], "isAbstract": false}}, "140097407274848": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407273440"}], "isAbstract": false}}, "140097407275200": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407275552": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407275904": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407276256": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407276608": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407276960": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407277312": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407277664": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407278016": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428321408"}], "isAbstract": false}}, "140097407278368": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428321408"}], "isAbstract": false}}, "140097407278720": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428322112"}], "isAbstract": false}}, "140097407279072": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407278720"}], "isAbstract": false}}, "140097407279424": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428323168"}], "isAbstract": false}}, "140097407279776": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428309088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466710528"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097407279424"}], "isAbstract": false}}, "140097466710528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407279776"}, {"nodeId": "140097428308736"}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140097407280128": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466710976"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097407279424"}], "isAbstract": false}}, "140097466710976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407280128"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140097407280480": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466711424"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097407279424"}], "isAbstract": false}}, "140097466711424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407280480"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140097407280832": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097407281184": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407281536": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407281888": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407282240": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407282592": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407282944": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407283296": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407283648": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407284000": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407284352": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407284704": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097402964800": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340372944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461774688"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403589280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424817424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424817312"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097340372944": {"type": "Tuple", "content": {"items": []}}, "140097461774688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402964800"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097403589280": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097424817424": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097424817312": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097402965152": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097402965504": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097402965856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340491920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402965504"}], "isAbstract": false}}, "140097340491920": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402966208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340492928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402965152"}], "isAbstract": false}}, "140097340492928": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402976768": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097402966560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340493936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402965856"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402965152"}], "isAbstract": false}}, "140097340493936": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402967616": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097402966912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340495280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402965152"}], "isAbstract": false}}, "140097340495280": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097402967264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340496176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402965152"}], "isAbstract": false}}, "140097340496176": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097402967968": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340498752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403214080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403586928"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340498752": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403214080": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335875216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403214432"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403214432"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424812608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403214432"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097424812496"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097335875216": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403214432": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335876448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403589056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097335876448": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403589056": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097424812608": {"type": "Union", "content": {"items": [{"nodeId": "140097403214432"}, {"nodeId": "N"}]}}, "140097424812496": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097403588944": {"type": "Union", "content": {"items": [{"nodeId": "140097403214432"}, {"nodeId": "N"}]}}, "140097403586928": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097402968320": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340501328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403214080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403587824"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340501328": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403587824": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097402968672": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340503680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403214784"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340503680": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403214784": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335877344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424810816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097335877344": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424810816": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097402969024": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340504688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403587936"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340504688": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403587936": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097402969376": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340505584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340505584": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097402969728": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340638144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340638144": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402970080": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340639264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403120352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340639264": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403588048": {"type": "Union", "content": {"items": [{"nodeId": "140097403116832"}, {"nodeId": "140097403115424"}, {"nodeId": "140097403116128"}]}}, "140097403116832": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340962880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403117888"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340962880": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403117888": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097403115424": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340957504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403117888"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340957504": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403116128": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340960976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403117888"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340960976": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403120352": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097402970432": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340640608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340640608": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403588160": {"type": "Union", "content": {"items": [{"nodeId": "140097403116832"}, {"nodeId": "140097403115424"}, {"nodeId": "140097403116128"}]}}, "140097403588272": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097402970784": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340642064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340642064": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402971136": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340643408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340643408": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402971488": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340644304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340644304": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402971840": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340645424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340645424": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402972192": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340646544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403215488"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340646544": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403215488": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335879360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424810928"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097335879360": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424810928": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097402972544": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340647664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403215488"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340647664": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402972896": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340648560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340648560": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403588384": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097403588496": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097402973248": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340650016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403213728"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340650016": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403213728": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335873200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424813392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424813168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403213376"}], "isAbstract": false}}, "140097335873200": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424813392": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097424813168": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403213376": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097402973600": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340651360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588720"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340651360": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403588720": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097402973952": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340652144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403215136"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340652144": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403215136": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335878352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424814064"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097335878352": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424814064": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097402974304": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340784704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403215136"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340784704": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403588832": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097402974656": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340785376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340785376": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097402975008": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340786272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340786272": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097402975360": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340787168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340787168": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097402975712": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097402976064": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097402976416": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097402977120": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340788288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403119296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340788288": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403119296": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097402977472": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340789520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403120352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340789520": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402977824": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340790416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403125280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340790416": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403125280": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097403109440": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340791424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403214080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340791424": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403109792": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340792656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340792656": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403110144": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340793552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097424814624"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340793552": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424814624": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097403110496": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340794336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340794336": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403110848": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340795456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403213024"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340795456": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403213024": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335872192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097335872192": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403111200": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340796464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403213024"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340796464": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403111552": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340797696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403213024"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340797696": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403111904": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340798592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403213024"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340798592": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403112256": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340799376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340799376": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403112608": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340800272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403587488"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340800272": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403587488": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097403112960": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340948768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340948768": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403113312": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340950112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403209152"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340950112": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403209152": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097403113664": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340951232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403214784"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340951232": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403114016": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340952352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424814400"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340952352": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424814400": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097403114368": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340953024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340953024": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403114720": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340954704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424816080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424813504"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340954704": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424816080": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424813504": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823648"}]}}, "140097403115072": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340956272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403116832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340956272": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403115776": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340959296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424813840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424813952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424813616"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340959296": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424813840": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097424813952": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097424813616": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097403116480": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340961872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403117888"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340961872": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403117184": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340963888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403117888"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340963888": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403117536": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335869616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403117888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097335869616": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403118240": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403117888"}], "isAbstract": false}}, "140097403118592": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403117888"}], "isAbstract": false}}, "140097403118944": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403117888"}], "isAbstract": false}}, "140097403119648": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403119296"}], "isAbstract": false}}, "140097403120000": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403119296"}], "isAbstract": false}}, "140097403120704": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403121056": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403121408": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403121760": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403122112": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403122464": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403122816": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403123168": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403123520": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403123872": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403124224": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403124576": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403124928": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403207744": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403125280"}], "isAbstract": false}}, "140097403208096": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403125280"}], "isAbstract": false}}, "140097403208448": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403125280"}], "isAbstract": false}}, "140097403208800": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403125280"}], "isAbstract": false}}, "140097403209504": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403209856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403210208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403210560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403210912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403211264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403211616": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403211968": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403212320": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403212672": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403215840": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335880368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403216544"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097335880368": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403216544": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335881040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403216192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424811040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097335881040": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403216192": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097424811040": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097403216896": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335881152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335881152": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403217248": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335881488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424811152"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335881488": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097424811152": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140097403217600": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335881824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403216192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335881824": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403217952": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335882160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424811600"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335882160": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097424811600": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403218304": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335882944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403216192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424811712"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335882944": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424811712": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403218656": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335883728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403216192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403216192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335883728": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403219008": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335883952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424811824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424812048"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335883952": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424811824": {"type": "Union", "content": {"items": [{"nodeId": "140097403216192"}, {"nodeId": "N"}]}}, "140097424812048": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403219360": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335884176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403216192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335884176": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097419746240": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461776032"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, "140097461776032": {"type": "Function", "content": {"typeVars": [".-1.140097461776032"], "argTypes": [{"nodeId": "140097419746240"}, {"nodeId": ".-1.140097461776032"}], "returnType": {"nodeId": ".-1.140097461776032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140097461776032": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097461776032", "variance": "INVARIANT"}}, "140097419746592": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461776480"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140097419746592"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__next__"]}}, ".1.140097419746592": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419746592", "variance": "COVARIANT"}}, "140097461776480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419746592", "args": [{"nodeId": ".1.140097419746592"}]}], "returnType": {"nodeId": ".1.140097419746592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419746944": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461776928"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140097419746944"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__anext__"]}}, ".1.140097419746944": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419746944", "variance": "COVARIANT"}}, "140097461776928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419746944", "args": [{"nodeId": ".1.140097419746944"}]}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".1.140097419746944"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419748000": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461778272"}, "name": "__le__"}}], "typeVars": [{"nodeId": ".1.140097419748000"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__le__"]}}, ".1.140097419748000": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419748000", "variance": "CONTRAVARIANT"}}, "140097461778272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419748000", "args": [{"nodeId": ".1.140097419748000"}]}, {"nodeId": ".1.140097419748000"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419748352": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461778720"}, "name": "__ge__"}}], "typeVars": [{"nodeId": ".1.140097419748352"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__ge__"]}}, ".1.140097419748352": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419748352", "variance": "CONTRAVARIANT"}}, "140097461778720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419748352", "args": [{"nodeId": ".1.140097419748352"}]}, {"nodeId": ".1.140097419748352"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419748704": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "140097419747296", "args": [{"nodeId": "A"}]}, {"nodeId": "140097419747648", "args": [{"nodeId": "A"}]}, {"nodeId": "140097419748000", "args": [{"nodeId": "A"}]}, {"nodeId": "140097419748352", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}}, "140097419749760": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461780064"}, "name": "__sub__"}}], "typeVars": [{"nodeId": ".1.140097419749760"}, {"nodeId": ".2.140097419749760"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__sub__"]}}, ".1.140097419749760": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419749760", "variance": "CONTRAVARIANT"}}, ".2.140097419749760": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419749760", "variance": "COVARIANT"}}, "140097461780064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419749760", "args": [{"nodeId": ".1.140097419749760"}, {"nodeId": ".2.140097419749760"}]}, {"nodeId": ".1.140097419749760"}], "returnType": {"nodeId": ".2.140097419749760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419750112": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492042016"}, "name": "__rsub__"}}], "typeVars": [{"nodeId": ".1.140097419750112"}, {"nodeId": ".2.140097419750112"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__rsub__"]}}, ".1.140097419750112": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419750112", "variance": "CONTRAVARIANT"}}, ".2.140097419750112": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419750112", "variance": "COVARIANT"}}, "140097492042016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419750112", "args": [{"nodeId": ".1.140097419750112"}, {"nodeId": ".2.140097419750112"}]}, {"nodeId": ".1.140097419750112"}], "returnType": {"nodeId": ".2.140097419750112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419750464": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492042464"}, "name": "__divmod__"}}], "typeVars": [{"nodeId": ".1.140097419750464"}, {"nodeId": ".2.140097419750464"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__divmod__"]}}, ".1.140097419750464": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419750464", "variance": "CONTRAVARIANT"}}, ".2.140097419750464": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419750464", "variance": "COVARIANT"}}, "140097492042464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419750464", "args": [{"nodeId": ".1.140097419750464"}, {"nodeId": ".2.140097419750464"}]}, {"nodeId": ".1.140097419750464"}], "returnType": {"nodeId": ".2.140097419750464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419750816": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492042912"}, "name": "__rdivmod__"}}], "typeVars": [{"nodeId": ".1.140097419750816"}, {"nodeId": ".2.140097419750816"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__rdivmod__"]}}, ".1.140097419750816": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419750816", "variance": "CONTRAVARIANT"}}, ".2.140097419750816": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419750816", "variance": "COVARIANT"}}, "140097492042912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419750816", "args": [{"nodeId": ".1.140097419750816"}, {"nodeId": ".2.140097419750816"}]}, {"nodeId": ".1.140097419750816"}], "returnType": {"nodeId": ".2.140097419750816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097419751168": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492043360"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140097419751168"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__iter__"]}}, ".1.140097419751168": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419751168", "variance": "COVARIANT"}}, "140097492043360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419751168", "args": [{"nodeId": ".1.140097419751168"}]}], "returnType": {"nodeId": ".1.140097419751168"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097419751520": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492043808"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140097419751520"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__aiter__"]}}, ".1.140097419751520": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419751520", "variance": "COVARIANT"}}, "140097492043808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419751520", "args": [{"nodeId": ".1.140097419751520"}]}], "returnType": {"nodeId": ".1.140097419751520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419752576": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492045600"}, "name": "items"}}], "typeVars": [{"nodeId": ".1.140097419752576"}, {"nodeId": ".2.140097419752576"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["items"]}}, ".1.140097419752576": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419752576", "variance": "COVARIANT"}}, ".2.140097419752576": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419752576", "variance": "COVARIANT"}}, "140097492045600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419752576", "args": [{"nodeId": ".1.140097419752576"}, {"nodeId": ".2.140097419752576"}]}], "returnType": {"nodeId": "140097499820480", "args": [{"nodeId": "140097390905152"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390905152": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097419752576"}, {"nodeId": ".2.140097419752576"}]}}, "140097419753280": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492046944"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492047392"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140097419753280"}, {"nodeId": ".2.140097419753280"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__contains__", "__getitem__"]}}, ".1.140097419753280": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419753280", "variance": "CONTRAVARIANT"}}, ".2.140097419753280": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419753280", "variance": "COVARIANT"}}, "140097492046944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419753280", "args": [{"nodeId": ".1.140097419753280"}, {"nodeId": ".2.140097419753280"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097492047392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419753280", "args": [{"nodeId": ".1.140097419753280"}, {"nodeId": ".2.140097419753280"}]}, {"nodeId": ".1.140097419753280"}], "returnType": {"nodeId": ".2.140097419753280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419753632": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492047840"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492048288"}, "name": "__delitem__"}}], "typeVars": [{"nodeId": ".1.140097419753632"}, {"nodeId": ".2.140097419753632"}], "bases": [{"nodeId": "140097419753280", "args": [{"nodeId": ".1.140097419753632"}, {"nodeId": ".2.140097419753632"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}}, ".1.140097419753632": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419753632", "variance": "CONTRAVARIANT"}}, ".2.140097419753632": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419753632", "variance": "INVARIANT"}}, "140097492047840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419753632", "args": [{"nodeId": ".1.140097419753632"}, {"nodeId": ".2.140097419753632"}]}, {"nodeId": ".1.140097419753632"}, {"nodeId": ".2.140097419753632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097492048288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419753632", "args": [{"nodeId": ".1.140097419753632"}, {"nodeId": ".2.140097419753632"}]}, {"nodeId": ".1.140097419753632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419753984": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492048736"}, "name": "fileno"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["fileno"]}}, "140097492048736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419753984"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419754336": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492049184"}, "name": "read"}}], "typeVars": [{"nodeId": ".1.140097419754336"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["read"]}}, ".1.140097419754336": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419754336", "variance": "COVARIANT"}}, "140097492049184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419754336", "args": [{"nodeId": ".1.140097419754336"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097419754336"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097419754688": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492049632"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140097419754688"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["readline"]}}, ".1.140097419754688": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419754688", "variance": "COVARIANT"}}, "140097492049632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419754688", "args": [{"nodeId": ".1.140097419754688"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097419754688"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097419755040": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492050080"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140097419755040"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["readline"]}}, ".1.140097419755040": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419755040", "variance": "COVARIANT"}}, "140097492050080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419755040", "args": [{"nodeId": ".1.140097419755040"}]}], "returnType": {"nodeId": ".1.140097419755040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097402962336": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SliceableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492050976"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097407466688"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140097492050976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402962336"}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097499819776", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097402962688": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IndexableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492051424"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097407466688"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140097492051424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402962688"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097402963040": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItemBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492051872"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390632448"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097402962336"}, {"nodeId": "140097402962688"}], "protocolMembers": ["__buffer__", "__contains__", "__getitem__"]}}, "140097492051872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402963040"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097390632448": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097492052320"}, {"nodeId": "140097492052768"}]}}, "140097492052320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402963040"}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097499819776", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097492052768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402963040"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097402963392": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SizedBuffer", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407452960"}, {"nodeId": "140097407466688"}], "protocolMembers": ["__buffer__", "__len__"]}}, "140097402963744": {"type": "Concrete", "content": {"module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "content": {"name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492053664"}, "name": "__new__"}}], "typeVars": [{"nodeId": ".1.140097402963744"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097402963744": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097402963744", "variance": "COVARIANT"}}, "140097492053664": {"type": "Function", "content": {"typeVars": [".-1.140097492053664"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097402963744"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140097492053664"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}}, ".-1.140097492053664": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097492053664", "variance": "INVARIANT"}}, "140097402964096": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "DataclassInstance", "members": [{"kind": "Variable", "content": {"name": "__dataclass_fields__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097428531936", "args": [{"nodeId": "A"}]}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__dataclass_fields__"]}}, "140097428531936": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "Field", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415674816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415675264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415675488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407714048", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415675712"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454206624"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454207520"}, "name": "__set_name__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454207968"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097428531936"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097428531936": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428531936", "variance": "INVARIANT"}}, "140097415674816": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097428531936"}, {"nodeId": "0"}]}}, "140097415675264": {"type": "Union", "content": {"items": [{"nodeId": "140097428531584", "args": [{"nodeId": ".1.140097428531936"}]}, {"nodeId": "0"}]}}, "140097428531584": {"type": "Protocol", "content": {"module": "dataclasses", "simpleName": "_DefaultFactory", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454206176"}, "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140097428531584"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, ".1.140097428531584": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428531584", "variance": "COVARIANT"}}, "140097454206176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428531584", "args": [{"nodeId": ".1.140097428531584"}]}], "returnType": {"nodeId": ".1.140097428531584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097415675488": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097415675712": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "0"}]}}, "140097454206624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428531936", "args": [{"nodeId": ".1.140097428531936"}]}, {"nodeId": ".1.140097428531936"}, {"nodeId": "140097395476512"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097395419936"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499821184", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "default", "default_factory", "init", "repr", "hash", "compare", "metadata", "kw_only"]}}, "140097395476512": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".1.140097428531936"}, "argKinds": [], "argNames": []}}, "140097395419936": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097454207520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428531936", "args": [{"nodeId": ".1.140097428531936"}]}, {"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}}, "140097454207968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140097407721440": {"type": "Protocol", "content": {"module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492055008"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["find_spec"]}}, "140097492055008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407721440"}, {"nodeId": "140097428308736"}, {"nodeId": "140097398929920"}, {"nodeId": "140097398930032"}], "returnType": {"nodeId": "140097398930144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140097398929920": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097398930032": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097407715104": {"type": "Concrete", "content": {"module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428614480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378321792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407571936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407572160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499820128", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407572272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478730784"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478731232"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097428614480": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097378321792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715104"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407571936": {"type": "Union", "content": {"items": [{"nodeId": "140097407714752"}, {"nodeId": "N"}]}}, "140097407714752": {"type": "Protocol", "content": {"module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478729888"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["load_module"]}}, "140097478729888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714752"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097407715104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097407572160": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097407572272": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097462524160": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462456096"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403368864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403369088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415896576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415896688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097357259808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462456992"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097462456096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462524160"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394913376"}, {"nodeId": "140097394913488"}, {"nodeId": "140097394913712"}, {"nodeId": "140097394913824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "loader", "origin", "loader_state", "is_package"]}}, "140097394913376": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097462525216": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445768864"}, "name": "load_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445769312"}, "name": "module_repr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445769760"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445770208"}, "name": "exec_module"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097445768864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525216"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097407715104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097445769312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525216"}, {"nodeId": "140097407715104"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140097445769760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525216"}, {"nodeId": "140097462524160"}], "returnType": {"nodeId": "140097395179584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140097395179584": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097445770208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525216"}, {"nodeId": "140097407715104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140097394913488": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097394913712": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097394913824": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097403368864": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097403369088": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097415896576": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097415896688": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097357259808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462524160"}], "returnType": {"nodeId": "140097394913936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394913936": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097462456992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462524160"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097478730784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715104"}, {"nodeId": "140097428308736"}, {"nodeId": "140097398917264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}}, "140097398917264": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097478731232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715104"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097398930144": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097403222528": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "content": {"name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378739008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378740576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378740800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378741024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378741248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378741472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378741696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378741920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378742144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378742368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378742592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378742816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378743040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378743264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378743488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378744160"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "A"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097378739008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398930368"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398930368": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378740576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398930480"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398930480": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378740800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398930592"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398930592": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378741024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398930704"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398930704": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378741248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398930816"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398930816": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378741472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398930928"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398930928": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378741696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398931040"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398931040": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378741920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398931152"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398931152": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378742144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398931264"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398931264": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378742368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399144512"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399144512": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378742592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399144624"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399144624": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378742816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399144736"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399144736": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378743040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399144848"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399144848": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378743264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399144960"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399144960": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378743488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145072"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145072": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378744160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145184"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145184": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097403222880": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "content": {"name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378737664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378795808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378796032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378796256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378796480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378796704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378796928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378797152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378797376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378797600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378797824"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499823296"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}], "isAbstract": false}}, "140097378737664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145296": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378795808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145408"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145408": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378796032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145520"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145520": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378796256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145632"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145632": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378796480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145744"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145744": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378796704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145856"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145856": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378796928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145968"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145968": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378797152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146080"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146080": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378797376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146192"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146192": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378797600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146304"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146304": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378797824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146416"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146416": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097403223232": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "content": {"name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378799840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378800064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378800288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378800512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378800736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378800960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378801184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378801408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378801632"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097407973216"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}], "isAbstract": false}}, "140097378799840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146528"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146528": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378800064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146640"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146640": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378800288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146752"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146752": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378800512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146864"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146864": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378800736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146976"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146976": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378800960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147088"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147088": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378801184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147200"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147200": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378801408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147312"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147312": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378801632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147424"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147424": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097407973216": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "140097499822944"}]}}, "140097407721792": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407973104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097482930016"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097407973104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403590400"}}}, "140097403590400": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097482930016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407721792"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097403223584": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "content": {"name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378804096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378804320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378804544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378804768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097378804096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147648"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147648": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378804320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147760"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147760": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378804544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147872"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147872": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378804768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147984"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147984": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097403404352": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_thread_info", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378805216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378806560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378806784"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "A"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}], "isAbstract": false}}, "140097378805216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399148208"}], "returnType": {"nodeId": "140097399148320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399148208": {"type": "Tuple", "content": {"items": [{"nodeId": "140097407972320"}, {"nodeId": "140097407968960"}, {"nodeId": "140097399148096"}]}}, "140097407972320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407577424"}}}, "140097407577424": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097407968960": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407576976"}}}, "140097407576976": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140097399148096": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399148320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407577424"}}}, "140097378806560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399148544"}], "returnType": {"nodeId": "140097399148656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399148544": {"type": "Tuple", "content": {"items": [{"nodeId": "140097407972320"}, {"nodeId": "140097407968960"}, {"nodeId": "140097399148432"}]}}, "140097399148432": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399148656": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407576976"}}}, "140097378806784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399148880"}], "returnType": {"nodeId": "140097399148992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399148880": {"type": "Tuple", "content": {"items": [{"nodeId": "140097407972320"}, {"nodeId": "140097407968960"}, {"nodeId": "140097399148768"}]}}, "140097399148768": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399148992": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403404704": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "content": {"name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378806112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378808576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378808800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378809024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378809248"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "A"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}], "isAbstract": false}}, "140097378806112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399149104"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399149104": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097378808576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399149216"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399149216": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097378808800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399149328"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399149328": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097378809024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399149440"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399149440": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097378809248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399149552"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399149552": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097407722144": {"type": "Protocol", "content": {"module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403594544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403357216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403357440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499811328"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["err_msg", "exc_traceback", "exc_type", "exc_value", "object"]}}, "140097403594544": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097403357216": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097403357440": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403405056": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "content": {"name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097373652352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097373652800"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097407968848"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097415901168"}]}], "isAbstract": false}}, "140097373652352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399152016"}], "returnType": {"nodeId": "140097399152128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399152016": {"type": "Tuple", "content": {"items": [{"nodeId": "140097403592640"}, {"nodeId": "140097403357552"}]}}, "140097403592640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579216"}}}, "140097407579216": {"type": "Union", "content": {"items": [{"nodeId": "140097428405408"}, {"nodeId": "N"}]}}, "140097428405408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097499818720": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457605536"}, "name": "__anext__"}}, {"kind": "Variable", "content": {"name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382547040"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403896768"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457607328"}, "name": "aclose"}}, {"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382629440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382630336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382630560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382630784"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}], "bases": [{"nodeId": "140097499818368", "args": [{"nodeId": ".1.140097499818720"}]}], "isAbstract": true}}, ".1.140097499818720": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499818720", "variance": "COVARIANT"}}, ".2.140097499818720": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499818720", "variance": "CONTRAVARIANT"}}, "140097457605536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".1.140097499818720"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382547040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}, {"nodeId": ".2.140097499818720"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".1.140097499818720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097403896768": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457606432"}, {"nodeId": "140097457606880"}]}}, "140097457606432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}, {"nodeId": "0"}, {"nodeId": "140097403898560"}, {"nodeId": "140097403898672"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".1.140097499818720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097403898560": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "140097499811328"}]}}, "140097403898672": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097457606880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}, {"nodeId": "140097428315424"}, {"nodeId": "N"}, {"nodeId": "140097403898784"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".1.140097499818720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097403898784": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097457607328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382629440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382630336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}], "returnType": {"nodeId": "140097407713696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382630560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}], "returnType": {"nodeId": "140097407719328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382630784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499818368": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "content": {"name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382544576"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457605088"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140097499818368"}], "bases": [{"nodeId": "140097499818016", "args": [{"nodeId": ".1.140097499818368"}]}], "protocolMembers": ["__aiter__", "__anext__"]}}, ".1.140097499818368": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499818368", "variance": "COVARIANT"}}, "140097382544576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818368", "args": [{"nodeId": ".1.140097499818368"}]}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".1.140097499818368"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097457605088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818368", "args": [{"nodeId": ".1.140097499818368"}]}], "returnType": {"nodeId": "140097499818368", "args": [{"nodeId": ".1.140097499818368"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499818016": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "content": {"name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382538752"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499818016"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__aiter__"]}}, ".1.140097499818016": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499818016", "variance": "COVARIANT"}}, "140097382538752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818016", "args": [{"nodeId": ".1.140097499818016"}]}], "returnType": {"nodeId": "140097499818368", "args": [{"nodeId": ".1.140097499818016"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403357552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579216"}}}, "140097399152128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579216"}}}, "140097373652800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399152240"}], "returnType": {"nodeId": "140097399152352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399152240": {"type": "Tuple", "content": {"items": [{"nodeId": "140097403592640"}, {"nodeId": "140097403357552"}]}}, "140097399152352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579216"}}}, "140097407968848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579216"}}}, "140097415901168": {"type": "Union", "content": {"items": [{"nodeId": "140097386769408"}, {"nodeId": "N"}]}}, "140097386769408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407713344": {"type": "Concrete", "content": {"module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378103616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407713696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428614704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378104064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378104736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483360736"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483361184"}, "name": "__call__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403908752"}, "items": [{"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378103616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713344"}], "returnType": {"nodeId": "140097403911440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403911440": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097407467040"}]}, {"nodeId": "N"}]}}, "140097428614704": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097378104064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713344"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378104736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713344"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483360736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713344"}, {"nodeId": "140097407713696"}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, {"nodeId": "140097403911888"}, {"nodeId": "140097403912000"}, {"nodeId": "140097398915136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}}, "140097403911888": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403912000": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}, {"nodeId": "N"}]}}, "140097398915136": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097407467040"}]}, {"nodeId": "N"}]}}, "140097483361184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713344"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097403908752": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097483361632"}, {"nodeId": "140097483362080"}]}}, "140097483361632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713344"}, {"nodeId": "N"}, {"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097407713344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097483362080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713344"}, {"nodeId": "140097499811328"}, {"nodeId": "140097398915696"}], "returnType": {"nodeId": "140097407716864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097398915696": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097407716864": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378456896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378457344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378457568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378457792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378458016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378458240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478958368"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478958816"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378456896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}], "returnType": {"nodeId": "140097398921072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398921072": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097407467040"}]}, {"nodeId": "N"}]}}, "140097378457344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}], "returnType": {"nodeId": "140097398921296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398921296": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097378457568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}], "returnType": {"nodeId": "140097407716512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407716512": {"type": "Concrete", "content": {"module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478955232"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097478955232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716512"}, {"nodeId": "140097499811328"}, {"nodeId": "140097398920960"}], "returnType": {"nodeId": "140097407713344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}}, "140097398920960": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097378457792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378458016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378458240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478958368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}, {"nodeId": "140097432648864"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097432648864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097478958816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097407714400": {"type": "Concrete", "content": {"module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478728096"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478728544"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478728992"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478729440"}, "name": "__delattr__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097478728096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714400"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140097478728544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714400"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097478728992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714400"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097478729440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714400"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407715456": {"type": "Concrete", "content": {"module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378322912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478732576"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478733024"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478733472"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403910432"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}], "bases": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}], "isAbstract": false}}, ".1.140097407715456": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407715456", "variance": "COVARIANT"}}, ".2.140097407715456": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407715456", "variance": "CONTRAVARIANT"}}, ".3.140097407715456": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407715456", "variance": "COVARIANT"}}, "140097378322912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}], "returnType": {"nodeId": "140097398917600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398917600": {"type": "Union", "content": {"items": [{"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097478732576": {"type": "Function", "content": {"typeVars": [".0.140097478732576"], "argTypes": [{"nodeId": ".0.140097478732576"}], "returnType": {"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097478732576": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}, "def": "140097478732576", "variance": "INVARIANT"}}, "140097478733024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}], "returnType": {"nodeId": ".1.140097407715456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478733472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}, {"nodeId": ".2.140097407715456"}], "returnType": {"nodeId": ".1.140097407715456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097403910432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097478733920"}, {"nodeId": "140097478734368"}]}}, "140097478733920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}, {"nodeId": "0"}, {"nodeId": "140097398917936"}, {"nodeId": "140097398918048"}], "returnType": {"nodeId": ".1.140097407715456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097398917936": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "140097499811328"}]}}, "140097398918048": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097478734368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}, {"nodeId": "140097428315424"}, {"nodeId": "N"}, {"nodeId": "140097398918160"}], "returnType": {"nodeId": ".1.140097407715456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097398918160": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097407715808": {"type": "Concrete", "content": {"module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378330080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478735712"}, "name": "__aiter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478736160"}, "name": "__anext__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478736608"}, "name": "asend"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097398917712"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478951200"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478951648"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}], "bases": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}], "isAbstract": false}}, ".1.140097407715808": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407715808", "variance": "COVARIANT"}}, ".2.140097407715808": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407715808", "variance": "CONTRAVARIANT"}}, "140097378330080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}], "returnType": {"nodeId": "140097398918384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398918384": {"type": "Union", "content": {"items": [{"nodeId": "140097499817312", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097478735712": {"type": "Function", "content": {"typeVars": [".0.140097478735712"], "argTypes": [{"nodeId": ".0.140097478735712"}], "returnType": {"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097478735712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}, "def": "140097478735712", "variance": "INVARIANT"}}, "140097478736160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140097407715808"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499817664": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382536288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382536512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382536736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382536960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382537184"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403896656"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382537408"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}], "bases": [{"nodeId": "140097499817312", "args": [{"nodeId": ".3.140097499817664"}]}], "isAbstract": true}}, ".1.140097499817664": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499817664", "variance": "COVARIANT"}}, ".2.140097499817664": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499817664", "variance": "CONTRAVARIANT"}}, ".3.140097499817664": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499817664", "variance": "COVARIANT"}}, "140097382536288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}], "returnType": {"nodeId": "140097403897888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403897888": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097382536512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}], "returnType": {"nodeId": "140097407713696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382536736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}], "returnType": {"nodeId": "140097407719328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382536960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382537184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}, {"nodeId": ".2.140097499817664"}], "returnType": {"nodeId": ".1.140097499817664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097403896656": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457602848"}, {"nodeId": "140097457603296"}]}}, "140097457602848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}, {"nodeId": "0"}, {"nodeId": "140097403898112"}, {"nodeId": "140097403898224"}], "returnType": {"nodeId": ".1.140097499817664"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097403898112": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "140097499811328"}]}}, "140097403898224": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097457603296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}, {"nodeId": "140097428315424"}, {"nodeId": "N"}, {"nodeId": "140097403898336"}], "returnType": {"nodeId": ".1.140097499817664"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097403898336": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097382537408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478736608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}, {"nodeId": ".2.140097407715808"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140097407715808"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097398917712": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097432649088"}, {"nodeId": "140097478737056"}]}}, "140097432649088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}, {"nodeId": "0"}, {"nodeId": "140097398919168"}, {"nodeId": "140097398919280"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140097407715808"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097398919168": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "140097499811328"}]}}, "140097398919280": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097478737056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}, {"nodeId": "140097428315424"}, {"nodeId": "N"}, {"nodeId": "140097398919504"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140097407715808"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097398919504": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097478951200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478951648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097407716160": {"type": "Concrete", "content": {"module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378335008"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478952992"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478953440"}, "name": "__await__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478953888"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097398919392"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}], "bases": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}]}], "isAbstract": false}}, ".1.140097407716160": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407716160", "variance": "COVARIANT"}}, ".2.140097407716160": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407716160", "variance": "CONTRAVARIANT"}}, ".3.140097407716160": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407716160", "variance": "COVARIANT"}}, "140097378335008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716160", "args": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}]}], "returnType": {"nodeId": "140097398920288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398920288": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097398920176"}]}, {"nodeId": "N"}]}}, "140097398920176": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097478952992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716160", "args": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478953440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716160", "args": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}]}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.140097407716160"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478953888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716160", "args": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}]}, {"nodeId": ".2.140097407716160"}], "returnType": {"nodeId": ".1.140097407716160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097398919392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097478954336"}, {"nodeId": "140097478954784"}]}}, "140097478954336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716160", "args": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}]}, {"nodeId": "0"}, {"nodeId": "140097398920624"}, {"nodeId": "140097398920736"}], "returnType": {"nodeId": ".1.140097407716160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097398920624": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "140097499811328"}]}}, "140097398920736": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097478954784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716160", "args": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}]}, {"nodeId": "140097428315424"}, {"nodeId": "N"}, {"nodeId": "140097398920848"}], "returnType": {"nodeId": ".1.140097407716160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097398920848": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097407717216": {"type": "Concrete", "content": {"module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378459808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378460032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378460256"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478960608"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378459808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717216"}], "returnType": {"nodeId": "140097398921968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398921968": {"type": "Union", "content": {"items": [{"nodeId": "140097499811328"}, {"nodeId": "140097407715104"}]}}, "140097378460032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717216"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378460256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717216"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478960608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717216"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097407717568": {"type": "Concrete", "content": {"module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378462048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378462496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378462720"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478962400"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478962848"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378462048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717568"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378462496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717568"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378462720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717568"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478962400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717568"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097478962848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717568"}, {"nodeId": "A"}, {"nodeId": "140097398922864"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097398922864": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097407717920": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378464512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378464736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378464960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378465184"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478965088"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478965536"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478965984"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378464512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717920"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378464736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717920"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378464960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717920"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378465184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717920"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478965088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717920"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097478965536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717920"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097478965984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717920"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407718272": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378533664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378533888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378534112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479099104"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479099552"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378533664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718272"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378533888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718272"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378534112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718272"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479099104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718272"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097479099552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718272"}, {"nodeId": "A"}, {"nodeId": "140097398923872"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097398923872": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097407718624": {"type": "Concrete", "content": {"module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378535904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378536128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378536352"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479101344"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479101792"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378535904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718624"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378536128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718624"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378536352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718624"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479101344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718624"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097479101792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718624"}, {"nodeId": "A"}, {"nodeId": "140097398924544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097398924544": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097407719680": {"type": "Concrete", "content": {"module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378543520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378543296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378543744"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479108960"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479109408"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479109856"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378543520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719680"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378543296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719680"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378543744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719680"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479108960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719680"}, {"nodeId": "A"}, {"nodeId": "140097398925664"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097398925664": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097479109408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719680"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097479109856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719680"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097407720032": {"type": "Concrete", "content": {"module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378545536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378545760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378545984"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479111648"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479112096"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479112544"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378545536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378545760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378545984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720032"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479111648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720032"}, {"nodeId": "A"}, {"nodeId": "140097398926336"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097398926336": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097479112096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720032"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097479112544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720032"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097407720736": {"type": "Concrete", "content": {"module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479283360"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097479283360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720736"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407727776": {"type": "Concrete", "content": {"module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}, {"nodeId": "140097428323168"}], "isAbstract": false}}, "140097407728128": {"type": "Concrete", "content": {"module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479289184"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479289632"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479290080"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479290528"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479290976"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479291424"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479291872"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479292320"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479292768"}, "name": "readable"}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415607040"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479293216"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479293664"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479294112"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479294560"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492009248"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492009696"}, "name": "writable"}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415608160"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492010144"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492010592"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492011040"}, "name": "__del__"}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361455232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492011936"}, "name": "_checkClosed"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097479289184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428309088"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097479289632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479290080": {"type": "Function", "content": {"typeVars": [".0.140097479290080"], "argTypes": [{"nodeId": ".0.140097479290080"}], "returnType": {"nodeId": ".0.140097479290080"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097479290080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407728128"}, "def": "140097479290080", "variance": "INVARIANT"}}, "140097479290528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}, {"nodeId": "140097394902848"}, {"nodeId": "140097394902960"}, {"nodeId": "140097394903072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097394902848": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097394902960": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097394903072": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097479290976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479291424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479291872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479292320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479292768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097415607040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097479293216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309088"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097479293664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097479294112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479294560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492009248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}, {"nodeId": "140097394903184"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097394903184": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097492009696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097415608160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097492010144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097407466688"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097492010592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}, {"nodeId": "140097394903296"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097394903296": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097492011040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097361455232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492011936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}, {"nodeId": "140097394903408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "140097394903408": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097407728480": {"type": "Concrete", "content": {"module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492012384"}, "name": "readall"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492012832"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492013280"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492013728"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140097407728128"}], "isAbstract": false}}, "140097492012384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728480"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492012832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728480"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097394903520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097394903520": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097492013280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728480"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097394903632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097394903632": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097492013728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728480"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097394903744"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097394903744": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097407728832": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407728480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492014176"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492014624"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492015072"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492015520"}, "name": "readinto1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492015968"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492016416"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140097407728128"}], "isAbstract": false}}, "140097492014176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728832"}], "returnType": {"nodeId": "140097407728480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492014624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728832"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097492015072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728832"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097492015520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728832"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097492015968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728832"}, {"nodeId": "140097394903856"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097394903856": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097492016416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728832"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097407729184": {"type": "Concrete", "content": {"module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403367632"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492016864"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361450080"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492017760"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492018208"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492018656"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "140097407728480"}, {"nodeId": "140097407455776"}], "isAbstract": false}}, "140097403367632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419824592"}}}, "140097419824592": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097419822800"}]}}, "140097419822800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097420531680": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "140097403405760", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097403405760", "args": [{"nodeId": "140097428309088"}]}]}}, "140097403405760": {"type": "Protocol", "content": {"module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "content": {"name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097365618112"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097403405760"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__fspath__"]}}, ".1.140097403405760": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097403405760", "variance": "COVARIANT"}}, "140097365618112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403405760", "args": [{"nodeId": ".1.140097403405760"}]}], "returnType": {"nodeId": ".1.140097403405760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492016864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407729184"}, {"nodeId": "140097394903968"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}, {"nodeId": "140097394904192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}}, "140097394903968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419824592"}}}, "140097394904192": {"type": "Union", "content": {"items": [{"nodeId": "140097394904080"}, {"nodeId": "N"}]}}, "140097394904080": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097428398464"}}}, "140097428398464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097361450080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407729184"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492017760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407729184"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097492018208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407729184"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097492018656": {"type": "Function", "content": {"typeVars": [".0.140097492018656"], "argTypes": [{"nodeId": ".0.140097492018656"}], "returnType": {"nodeId": ".0.140097492018656"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097492018656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407729184"}, "def": "140097492018656", "variance": "INVARIANT"}}, "140097407455776": {"type": "Concrete", "content": {"module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097383012768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097407455424", "args": [{"nodeId": "140097428309088"}]}], "isAbstract": true}}, "140097383012768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455776"}], "returnType": {"nodeId": "140097407455776"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407455424": {"type": "Concrete", "content": {"module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382879456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382880576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382881472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382882816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382883488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382884160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382884832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382885504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382886400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382887072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382887968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382888864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382889536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382890208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382890880"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403905728"}, "items": [{"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "write"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403906064"}, "items": [{"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "writelines"}}, {"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097383009184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097383009856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097383010752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097383011872"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097407455424"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407455424"}]}], "isAbstract": true}}, ".1.140097407455424": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407455424", "variance": "INVARIANT"}}, "140097382879456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382880576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382881472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382882144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382882816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382883488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382884160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382884832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097407455424"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097382885504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382886400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097407455424"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097382887072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097407455424"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097382887968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097382888864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382889536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382890208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": "140097403906400"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097403906400": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097382890880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403905728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097458035552"}, {"nodeId": "140097420255840"}, {"nodeId": "140097458036448"}]}}, "140097458035552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097420255840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097458036448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": ".1.140097407455424"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097403906064": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097458036896"}, {"nodeId": "140097420254944"}, {"nodeId": "140097458037792"}]}}, "140097458036896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097420254944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097407466688"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097458037792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097383009184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": ".1.140097407455424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097383009856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407455424"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097383010752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097383011872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": "140097403906736"}, {"nodeId": "140097403906848"}, {"nodeId": "140097403906960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097403906736": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097403906848": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097403906960": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097462517824": {"type": "Concrete", "content": {"module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492019104"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492019552"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492020000"}, "name": "getvalue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492020448"}, "name": "getbuffer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492020896"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140097407728832"}, {"nodeId": "140097407455776"}], "isAbstract": false}}, "140097492019104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462517824"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}}, "140097492019552": {"type": "Function", "content": {"typeVars": [".0.140097492019552"], "argTypes": [{"nodeId": ".0.140097492019552"}], "returnType": {"nodeId": ".0.140097492019552"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097492019552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462517824"}, "def": "140097492019552", "variance": "INVARIANT"}}, "140097492020000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462517824"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492020448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462517824"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492020896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462517824"}, {"nodeId": "140097394904528"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097394904528": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097462518176": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492021344"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492021792"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492022240"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140097407728832"}, {"nodeId": "140097407455776"}], "isAbstract": false}}, "140097492021344": {"type": "Function", "content": {"typeVars": [".0.140097492021344"], "argTypes": [{"nodeId": ".0.140097492021344"}], "returnType": {"nodeId": ".0.140097492021344"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097492021344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462518176"}, "def": "140097492021344", "variance": "INVARIANT"}}, "140097492021792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462518176"}, {"nodeId": "140097407728480"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140097492022240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462518176"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097462518528": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492022688"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492023136"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492023584"}, "name": "write"}}], "typeVars": [], "bases": [{"nodeId": "140097407728832"}, {"nodeId": "140097407455776"}], "isAbstract": false}}, "140097492022688": {"type": "Function", "content": {"typeVars": [".0.140097492022688"], "argTypes": [{"nodeId": ".0.140097492022688"}], "returnType": {"nodeId": ".0.140097492022688"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097492022688": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462518528"}, "def": "140097492022688", "variance": "INVARIANT"}}, "140097492023136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462518528"}, {"nodeId": "140097407728480"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140097492023584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462518528"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097462518880": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492024032"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492024480"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140097462518176"}, {"nodeId": "140097462518528"}], "isAbstract": false}}, "140097492024032": {"type": "Function", "content": {"typeVars": [".0.140097492024032"], "argTypes": [{"nodeId": ".0.140097492024032"}], "returnType": {"nodeId": ".0.140097492024032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097492024032": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462518880"}, "def": "140097492024032", "variance": "INVARIANT"}}, "140097492024480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462518880"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097462519232": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492024928"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483686176"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140097407728832"}], "isAbstract": false}}, "140097492024928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519232"}, {"nodeId": "140097407728480"}, {"nodeId": "140097407728480"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}}, "140097483686176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519232"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097462519584": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403600480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403367744"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483686624"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483687072"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483687520"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483687968"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483688416"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483688864"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483689312"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483689760"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140097407728128"}], "isAbstract": false}}, "140097403600480": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403367744": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097483686624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097483687072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483687520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}], "returnType": {"nodeId": "140097407455776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483687968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097483688416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097483688864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097483689312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097483689760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}, {"nodeId": "140097394904976"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097394904976": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097462519936": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483690208"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361892224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361892672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361892896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361893344"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483692448"}, "name": "reconfigure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483692896"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483693344"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483693792"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483694240"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483694688"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483695136"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483695584"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140097462519584"}, {"nodeId": "140097407456128"}], "isAbstract": false}}, "140097483690208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}, {"nodeId": "140097407455424", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097394905088"}, {"nodeId": "140097394905200"}, {"nodeId": "140097394905312"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140097394905088": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097394905200": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097394905312": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097361892224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}], "returnType": {"nodeId": "140097407455776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097361892672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097361892896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097361893344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483692448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}, {"nodeId": "140097394905424"}, {"nodeId": "140097394905536"}, {"nodeId": "140097394905648"}, {"nodeId": "140097394905760"}, {"nodeId": "140097394905872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140097394905424": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097394905536": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097394905648": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097394905760": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097394905872": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097483692896": {"type": "Function", "content": {"typeVars": [".0.140097483692896"], "argTypes": [{"nodeId": ".0.140097483692896"}], "returnType": {"nodeId": ".0.140097483692896"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097483692896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462519936"}, "def": "140097483692896", "variance": "INVARIANT"}}, "140097483693344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097483693792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483694240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097483694688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097483695136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097483695584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097407456128": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097383014336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097383014784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097383015008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097383015232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097383015456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097383015680"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097407455424", "args": [{"nodeId": "140097428308736"}]}], "isAbstract": true}}, "140097383014336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456128"}], "returnType": {"nodeId": "140097407455776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097383014784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456128"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097383015008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456128"}], "returnType": {"nodeId": "140097403907072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403907072": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097383015232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456128"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097383015456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097383015680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456128"}], "returnType": {"nodeId": "140097407456128"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097462520288": {"type": "Concrete", "content": {"module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483696032"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483696480"}, "name": "getvalue"}}], "typeVars": [], "bases": [{"nodeId": "140097462519936"}], "isAbstract": false}}, "140097483696032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520288"}, {"nodeId": "140097394906096"}, {"nodeId": "140097394906208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}}, "140097394906096": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097394906208": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097483696480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520288"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403417024": {"type": "Concrete", "content": {"module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483696928"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483697376"}, "name": "decode"}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097362021504"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483698272"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140097419745536"}], "isAbstract": false}}, "140097483696928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417024"}, {"nodeId": "140097394906320"}, {"nodeId": "140097499812032"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}}, "140097394906320": {"type": "Union", "content": {"items": [{"nodeId": "140097419745536"}, {"nodeId": "N"}]}}, "140097419745536": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449722592"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097344521376"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449723488"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449723936"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449724384"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": true}}, "140097449722592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745536"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140097344521376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745536"}, {"nodeId": "140097407466688"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140097449723488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449723936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745536"}], "returnType": {"nodeId": "140097390637712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390637712": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}]}}, "140097449724384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745536"}, {"nodeId": "140097390637936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140097390637936": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}]}}, "140097483697376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417024"}, {"nodeId": "140097394906432"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140097394906432": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097428308736"}]}}, "140097362021504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417024"}], "returnType": {"nodeId": "140097394906544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394906544": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097483698272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417024"}, {"nodeId": "140097394906768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097394906768": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}]}}, "140097407465632": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382025472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382025920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382026144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382026368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382026592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382026816"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462044256"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382027040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382027264"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097382025472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382025920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097403710464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403710464": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097382026144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382026368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382026592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382026816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097403710688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403710688": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097462044256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}, {"nodeId": "140097428308736"}, {"nodeId": "140097403710912"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097403711136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant", "default"]}}, "140097403710912": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140097428308736"}]}}, "140097403711136": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097382027040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097499813440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499813440": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382216896"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483464416"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097382216896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499813440"}], "returnType": {"nodeId": "140097499814144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499814144": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382368416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382368640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382368864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382369088"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483468448"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382369760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382369312"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483470688"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483471136"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097382368416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382368640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}], "returnType": {"nodeId": "140097403714720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403714720": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097382368864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382369088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483468448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}, {"nodeId": "140097428308736"}, {"nodeId": "140097403714944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}}, "140097403714944": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097382369760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}], "returnType": {"nodeId": "140097499813440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382369312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}], "returnType": {"nodeId": "140097499813792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499813792": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382218016"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483465312"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097382218016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499813792"}], "returnType": {"nodeId": "140097499814144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483465312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499813792"}, {"nodeId": "140097499814144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140097483470688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097499813088": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483459488"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483459936"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483460384"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097483459488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499813088"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097483459936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499813088"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097483460384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499813088"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097483471136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097483464416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499813440"}, {"nodeId": "140097499814144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140097382027264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097499813792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499812736": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382210624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382211072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382211296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382211520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382211744"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483457696"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483458144"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483458592"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097382210624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382211072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}], "returnType": {"nodeId": "140097403713488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403713488": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097382211296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382211520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382211744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483457696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}, {"nodeId": "140097403713936"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant"]}}, "140097403713936": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097483458144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097483458592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097499814496": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483471584"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483472032"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483472480"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462698272"}, "name": "__ror__"}}, {"kind": "Variable", "content": {"name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822240"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097483471584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814496"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}}, "140097483472032": {"type": "Function", "content": {"typeVars": [".-1.140097483472032"], "argTypes": [{"nodeId": "140097499814496"}, {"nodeId": ".-1.140097483472032"}], "returnType": {"nodeId": ".-1.140097483472032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140097483472032": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097483472032", "variance": "INVARIANT"}}, "140097483472480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814496"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097462698272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814496"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097499814848": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462700064"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097462700064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814848"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407286816": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407285056"}], "isAbstract": false}}, "140097407285056": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "content": {"name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407458592", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449156768"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449157216"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449157664"}, "name": "__subclasscheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449158112"}, "name": "_dump_registry"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449158560"}, "name": "register"}}], "typeVars": [], "bases": [{"nodeId": "140097499822240"}], "isAbstract": false}}, "140097449156768": {"type": "Function", "content": {"typeVars": [".-1.140097449156768"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140097449156768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}}, ".-1.140097449156768": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097449156768", "variance": "INVARIANT"}}, "140097449157216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407285056"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}}, "140097449157664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407285056"}, {"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140097449158112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407285056"}, {"nodeId": "140097390904480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}}, "140097390904480": {"type": "Union", "content": {"items": [{"nodeId": "140097402961984", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097449158560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407285056"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140097407452608": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382379840"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__index__"]}}, "140097382379840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407452608"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499815200": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382381856"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499815200"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__abs__"]}}, ".1.140097499815200": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499815200", "variance": "COVARIANT"}}, "140097382381856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499815200", "args": [{"nodeId": ".1.140097499815200"}]}], "returnType": {"nodeId": ".1.140097499815200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097499815552": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403525760"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140097499815552"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__round__"]}}, ".1.140097499815552": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499815552", "variance": "COVARIANT"}}, "140097403525760": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097462703648"}, {"nodeId": "140097462704096"}]}}, "140097462703648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499815552", "args": [{"nodeId": ".1.140097499815552"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462704096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499815552", "args": [{"nodeId": ".1.140097499815552"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097499815552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097407453312": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382454144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__hash__"]}}, "140097382454144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407453312"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407453664": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.140097407453664"}, {"nodeId": ".2.140097407453664"}, {"nodeId": ".3.140097407453664"}, {"nodeId": ".4.140097407453664"}], "bases": [{"nodeId": "140097499817312", "args": [{"nodeId": ".3.140097407453664"}]}, {"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097407453664"}, {"nodeId": ".2.140097407453664"}, {"nodeId": ".3.140097407453664"}]}], "isAbstract": true}}, ".1.140097407453664": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407453664", "variance": "COVARIANT"}}, ".2.140097407453664": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407453664", "variance": "CONTRAVARIANT"}}, ".3.140097407453664": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407453664", "variance": "COVARIANT"}}, ".4.140097407453664": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407453664", "variance": "INVARIANT"}}, "140097407456480": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403908192"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097383018368"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419807424"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419807648"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140097403908192": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097420254496"}, {"nodeId": "140097420254272"}]}}, "140097420254496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456480"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097403909760"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097403909760": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}}, "140097420254272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456480"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140097383018368": {"type": "Function", "content": {"typeVars": [".0.140097383018368"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140097383018368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140097383018368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407456480"}, "def": "140097383018368", "variance": "INVARIANT"}}, "140097419807424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456480"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419807648": {"type": "Function", "content": {"typeVars": [".0.140097419807648"], "argTypes": [{"nodeId": ".0.140097419807648"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097419807648"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140097419807648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407456480"}, "def": "140097419807648", "variance": "INVARIANT"}}, "140097407456832": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407458592", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407458592", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419806976"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419807200"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419806528"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419806080"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419807872"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419806304"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419805632"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419805856"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419804960"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419805408"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}], "isAbstract": true}}, "140097419806976": {"type": "Function", "content": {"typeVars": [".0.140097419806976"], "argTypes": [{"nodeId": ".0.140097419806976"}], "returnType": {"nodeId": ".0.140097419806976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097419806976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407456832"}, "def": "140097419806976", "variance": "INVARIANT"}}, "140097419807200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456832"}, {"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140097419806528": {"type": "Function", "content": {"typeVars": [".-1.140097419806528"], "argTypes": [{"nodeId": "140097407456832"}, {"nodeId": "0"}, {"nodeId": ".-1.140097419806528"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140097419806528": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419806528", "variance": "INVARIANT"}}, "140097419806080": {"type": "Function", "content": {"typeVars": [".-1.140097419806080"], "argTypes": [{"nodeId": ".-1.140097419806080"}, {"nodeId": ".-1.140097419806080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140097419806080": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419806080", "variance": "INVARIANT"}}, "140097419807872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456832"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419806304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456832"}], "returnType": {"nodeId": "140097407457888", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419805632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456832"}], "returnType": {"nodeId": "140097407457184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419805856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456832"}], "returnType": {"nodeId": "140097407457536", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419804960": {"type": "Function", "content": {"typeVars": [".0.140097419804960"], "argTypes": [{"nodeId": ".0.140097419804960"}, {"nodeId": ".0.140097419804960"}], "returnType": {"nodeId": ".0.140097419804960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097419804960": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407456832"}, "def": "140097419804960", "variance": "INVARIANT"}}, "140097419805408": {"type": "Function", "content": {"typeVars": [".0.140097419805408"], "argTypes": [{"nodeId": ".0.140097419805408"}, {"nodeId": ".0.140097419805408"}], "returnType": {"nodeId": ".0.140097419805408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097419805408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407456832"}, "def": "140097419805408", "variance": "INVARIANT"}}, "140097499821888": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "content": {"name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407713696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407569248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429054272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419805184"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419806752"}, "name": "_evaluate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419804736"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097407569248": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097429054272": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097419805184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821888"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}, {"nodeId": "140097403910656"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}}, "140097403910656": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097419806752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821888"}, {"nodeId": "140097403910880"}, {"nodeId": "140097403911104"}, {"nodeId": "140097407458592", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097403911328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}}, "140097403910880": {"type": "Union", "content": {"items": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097403911104": {"type": "Union", "content": {"items": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097403911328": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097419804736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821888"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407463872": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458330912"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458331360"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458331808"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097458330912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463872"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097458331360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463872"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407463872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097458331808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463872"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407463872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407464224": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407458592", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407458592", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458333600"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458334048"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458334496"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458334944"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458335392"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458335840"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458336288"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458336736"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458337184"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458337632"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}], "isAbstract": true}}, "140097458333600": {"type": "Function", "content": {"typeVars": [".0.140097458333600"], "argTypes": [{"nodeId": ".0.140097458333600"}], "returnType": {"nodeId": ".0.140097458333600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097458333600": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407464224"}, "def": "140097458333600", "variance": "INVARIANT"}}, "140097458334048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464224"}, {"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140097458334496": {"type": "Function", "content": {"typeVars": [".-1.140097458334496"], "argTypes": [{"nodeId": "140097407464224"}, {"nodeId": "0"}, {"nodeId": ".-1.140097458334496"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140097458334496": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097458334496", "variance": "INVARIANT"}}, "140097458334944": {"type": "Function", "content": {"typeVars": [".-1.140097458334944"], "argTypes": [{"nodeId": ".-1.140097458334944"}, {"nodeId": ".-1.140097458334944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140097458334944": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097458334944", "variance": "INVARIANT"}}, "140097458335392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464224"}], "returnType": {"nodeId": "140097407457888", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097458335840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464224"}], "returnType": {"nodeId": "140097407457184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097458336288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464224"}], "returnType": {"nodeId": "140097407457536", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097458336736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464224"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097458337184": {"type": "Function", "content": {"typeVars": [".0.140097458337184"], "argTypes": [{"nodeId": ".0.140097458337184"}, {"nodeId": ".0.140097458337184"}], "returnType": {"nodeId": ".0.140097458337184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097458337184": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407464224"}, "def": "140097458337184", "variance": "INVARIANT"}}, "140097458337632": {"type": "Function", "content": {"typeVars": [".0.140097458337632"], "argTypes": [{"nodeId": ".0.140097458337632"}, {"nodeId": ".0.140097458337632"}], "returnType": {"nodeId": ".0.140097458337632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097458337632": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407464224"}, "def": "140097458337632", "variance": "INVARIANT"}}, "140097407464928": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403528672"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097387083168"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458528864"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458529760"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140097403528672": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097458527520"}, {"nodeId": "140097458527968"}]}}, "140097458527520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464928"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097403708000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}}, "140097403708000": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}}, "140097458527968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464928"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}}, "140097387083168": {"type": "Function", "content": {"typeVars": [".0.140097387083168"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140097387083168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140097387083168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407464928"}, "def": "140097387083168", "variance": "INVARIANT"}}, "140097458528864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464928"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097458529760": {"type": "Function", "content": {"typeVars": [".0.140097458529760"], "argTypes": [{"nodeId": ".0.140097458529760"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097458529760"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140097458529760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407464928"}, "def": "140097458529760", "variance": "INVARIANT"}}, "140097407465280": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097387084064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097387084512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097387084736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097387084960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097387085184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097387085408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382023232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458533344"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458533792"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458534240"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097387084064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097387084512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}], "returnType": {"nodeId": "140097403708896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403708896": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097387084736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097387084960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097387085184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097387085408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382023232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}], "returnType": {"nodeId": "140097403709232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403709232": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097458533344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}, {"nodeId": "140097403709568"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097403709792"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant", "default", "infer_variance"]}}, "140097403709568": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097403709792": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097458533792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407463872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097458534240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407463872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407465984": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382028832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382029056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462046496"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462046944"}, "name": "__iter__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097382028832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465984"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382029056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465984"}], "returnType": {"nodeId": "140097403711360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403711360": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097462046496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465984"}, {"nodeId": "140097428308736"}, {"nodeId": "140097403711584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}}, "140097403711584": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097462046944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465984"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407466336": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeAliasType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462048736"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__value__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382030848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__type_params__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382031296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382031520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382031744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382031968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462051424"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462051872"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462052320"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097462048736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097403712368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "type_params"]}}, "140097403712368": {"type": "Union", "content": {"items": [{"nodeId": "140097407465280"}, {"nodeId": "140097407465632"}, {"nodeId": "140097407465984"}]}}, "140097382030848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382031296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097403712592"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403712592": {"type": "Union", "content": {"items": [{"nodeId": "140097407465280"}, {"nodeId": "140097407465632"}, {"nodeId": "140097407465984"}]}}, "140097382031520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382031744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382031968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}], "returnType": {"nodeId": "140097403712816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403712816": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097462051424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097462051872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407463872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097462052320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407463872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407460704": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395563920"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453392384"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453392832"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453393280"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453393728"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453394176"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453394624"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453395072"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453395520"}, "name": "__copy__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395564032"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453396864"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453397312"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395565264"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}], "bases": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}], "isAbstract": false}}, ".1.140097407460704": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407460704", "variance": "INVARIANT"}}, ".2.140097407460704": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407460704", "variance": "INVARIANT"}}, "140097395563920": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097462055680"}, {"nodeId": "140097441061280"}, {"nodeId": "140097462056576"}, {"nodeId": "140097462056128"}, {"nodeId": "140097462057472"}, {"nodeId": "140097462057024"}, {"nodeId": "140097462057920"}, {"nodeId": "140097462058368"}]}}, "140097462055680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097441061280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "N"}, {"nodeId": ".2.140097407460704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097462056576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097462056128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "140097419752928", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": ".2.140097407460704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097462057472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097395564928"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097395564928": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}}, "140097462057024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097395565152"}]}, {"nodeId": ".2.140097407460704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097395565152": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407460704"}]}}, "140097462057920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097462058368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097428309088"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453392384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453392832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": ".1.140097407460704"}], "returnType": {"nodeId": ".2.140097407460704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453393280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097453393728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": ".1.140097407460704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453394176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407460704"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453394624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453395072": {"type": "Function", "content": {"typeVars": [".0.140097453395072"], "argTypes": [{"nodeId": ".0.140097453395072"}], "returnType": {"nodeId": ".0.140097453395072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453395072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, "def": "140097453395072", "variance": "INVARIANT"}}, "140097453395520": {"type": "Function", "content": {"typeVars": [".0.140097453395520"], "argTypes": [{"nodeId": ".0.140097453395520"}], "returnType": {"nodeId": ".0.140097453395520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453395520": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, "def": "140097453395520", "variance": "INVARIANT"}}, "140097395564032": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453395968"}, {"nodeId": "140097453396416"}]}}, "140097453395968": {"type": "Function", "content": {"typeVars": [".-1.140097453395968"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097453395968"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140097407460704", "args": [{"nodeId": ".-1.140097453395968"}, {"nodeId": "140097395565600"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140097453395968": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453395968", "variance": "INVARIANT"}}, "140097395565600": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097453396416": {"type": "Function", "content": {"typeVars": [".-1.140097453396416", ".-2.140097453396416"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097453396416"}]}, {"nodeId": ".-2.140097453396416"}], "returnType": {"nodeId": "140097407460704", "args": [{"nodeId": ".-1.140097453396416"}, {"nodeId": ".-2.140097453396416"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140097453396416": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453396416", "variance": "INVARIANT"}}, ".-2.140097453396416": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453396416", "variance": "INVARIANT"}}, "140097453396864": {"type": "Function", "content": {"typeVars": [".-1.140097453396864", ".-2.140097453396864"], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "140097395565712"}], "returnType": {"nodeId": "140097407460704", "args": [{"nodeId": "140097395565824"}, {"nodeId": "140097395565936"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395565712": {"type": "Union", "content": {"items": [{"nodeId": "140097407460704", "args": [{"nodeId": ".-1.140097453396864"}, {"nodeId": ".-2.140097453396864"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": ".-1.140097453396864"}, {"nodeId": ".-2.140097453396864"}]}]}}, ".-1.140097453396864": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453396864", "variance": "INVARIANT"}}, ".-2.140097453396864": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453396864", "variance": "INVARIANT"}}, "140097395565824": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".-1.140097453396864"}]}}, "140097395565936": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407460704"}, {"nodeId": ".-2.140097453396864"}]}}, "140097453397312": {"type": "Function", "content": {"typeVars": [".-1.140097453397312", ".-2.140097453397312"], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "140097395566048"}], "returnType": {"nodeId": "140097407460704", "args": [{"nodeId": "140097395566160"}, {"nodeId": "140097395566272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395566048": {"type": "Union", "content": {"items": [{"nodeId": "140097407460704", "args": [{"nodeId": ".-1.140097453397312"}, {"nodeId": ".-2.140097453397312"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": ".-1.140097453397312"}, {"nodeId": ".-2.140097453397312"}]}]}}, ".-1.140097453397312": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453397312", "variance": "INVARIANT"}}, ".-2.140097453397312": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453397312", "variance": "INVARIANT"}}, "140097395566160": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".-1.140097453397312"}]}}, "140097395566272": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407460704"}, {"nodeId": ".-2.140097453397312"}]}}, "140097395565264": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453397760"}, {"nodeId": "140097453398208"}]}}, "140097453397760": {"type": "Function", "content": {"typeVars": [".0.140097453397760"], "argTypes": [{"nodeId": ".0.140097453397760"}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}], "returnType": {"nodeId": ".0.140097453397760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453397760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, "def": "140097453397760", "variance": "INVARIANT"}}, "140097453398208": {"type": "Function", "content": {"typeVars": [".0.140097453398208"], "argTypes": [{"nodeId": ".0.140097453398208"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097395566608"}]}], "returnType": {"nodeId": ".0.140097453398208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453398208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, "def": "140097453398208", "variance": "INVARIANT"}}, "140097395566608": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}}, "140097407461056": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097407461056"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395565376"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453399552"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453400000"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453400448"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453400896"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453401344"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453401792"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453402240"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395566384"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395566720"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453404480"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453404928"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453405376"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453405824"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453406272"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453406720"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453407168"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453407616"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453539392"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453539840"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453540288"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453540736"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453541184"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453541632"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453542080"}, "name": "index"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395567392"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453543424"}, "name": "extend"}}], "typeVars": [{"nodeId": ".1.140097407461056"}], "bases": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097407461056"}]}], "isAbstract": false}}, ".1.140097407461056": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407461056", "variance": "INVARIANT"}}, "140097395565376": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453398656"}, {"nodeId": "140097453399104"}]}}, "140097453398656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}}, "140097453399104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}}, "140097453399552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097395566832"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395566832": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}]}}, "140097453400000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097395566944"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395566944": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}]}}, "140097453400448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097395567056"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395567056": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}]}}, "140097453400896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097395567168"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395567168": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}]}}, "140097453401344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453401792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453402240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097395566384": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453402688"}, {"nodeId": "140097453403136"}]}}, "140097453402688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".1.140097407461056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453403136": {"type": "Function", "content": {"typeVars": [".0.140097453403136"], "argTypes": [{"nodeId": ".0.140097453403136"}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": ".0.140097453403136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453403136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453403136", "variance": "INVARIANT"}}, "140097395566720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453403584"}, {"nodeId": "140097453404032"}]}}, "140097453403584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097407464576"}, {"nodeId": ".1.140097407461056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097453404032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097428310144"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097453404480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097395567616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395567616": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "140097428310144"}]}}, "140097453404928": {"type": "Function", "content": {"typeVars": [".0.140097453404928"], "argTypes": [{"nodeId": ".0.140097453404928"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461056"}]}], "returnType": {"nodeId": ".0.140097453404928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453404928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453404928", "variance": "INVARIANT"}}, "140097453405376": {"type": "Function", "content": {"typeVars": [".0.140097453405376"], "argTypes": [{"nodeId": ".0.140097453405376"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461056"}]}], "returnType": {"nodeId": ".0.140097453405376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453405376": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453405376", "variance": "INVARIANT"}}, "140097453405824": {"type": "Function", "content": {"typeVars": [".0.140097453405824"], "argTypes": [{"nodeId": ".0.140097453405824"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461056"}]}], "returnType": {"nodeId": ".0.140097453405824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453405824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453405824", "variance": "INVARIANT"}}, "140097453406272": {"type": "Function", "content": {"typeVars": [".0.140097453406272"], "argTypes": [{"nodeId": ".0.140097453406272"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453406272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453406272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453406272", "variance": "INVARIANT"}}, "140097453406720": {"type": "Function", "content": {"typeVars": [".0.140097453406720"], "argTypes": [{"nodeId": ".0.140097453406720"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453406720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453406720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453406720", "variance": "INVARIANT"}}, "140097453407168": {"type": "Function", "content": {"typeVars": [".0.140097453407168"], "argTypes": [{"nodeId": ".0.140097453407168"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453407168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453407168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453407168", "variance": "INVARIANT"}}, "140097453407616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": ".1.140097407461056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140097453539392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097499822944"}, {"nodeId": ".1.140097407461056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}}, "140097453539840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097407461056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}}, "140097453540288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": ".1.140097407461056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140097453540736": {"type": "Function", "content": {"typeVars": [".0.140097453540736"], "argTypes": [{"nodeId": ".0.140097453540736"}], "returnType": {"nodeId": ".0.140097453540736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453540736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453540736", "variance": "INVARIANT"}}, "140097453541184": {"type": "Function", "content": {"typeVars": [".0.140097453541184"], "argTypes": [{"nodeId": ".0.140097453541184"}], "returnType": {"nodeId": ".0.140097453541184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453541184": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453541184", "variance": "INVARIANT"}}, "140097453541632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": ".1.140097407461056"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140097453542080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": ".1.140097407461056"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}}, "140097395567392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453391936"}, {"nodeId": "140097453542976"}]}}, "140097453391936": {"type": "Function", "content": {"typeVars": [".-1.140097453391936"], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".-1.140097453391936"}]}, {"nodeId": "N"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140097453391936": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140097420531904"}, "def": "140097453391936", "variance": "INVARIANT"}}, "140097453542976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097395480768"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140097395480768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140097407461056"}], "returnType": {"nodeId": "140097395568064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097395568064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531792"}}}, "140097453543424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140097407461408": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453543872"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453544320"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453544768"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453545216"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453545664"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453546112"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453546560"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453547008"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453547456"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453547904"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453548352"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453548800"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453549248"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453549696"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453550144"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453550592"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453551040"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453551488"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453551936"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453552384"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453552832"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453553728"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453554176"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453554624"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453555072"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453654080"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453654976"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453655424"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453655872"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453656320"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453656768"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453657216"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453657664"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453658112"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453658560"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453659008"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453659456"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453659904"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453660352"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453660800"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453661248"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453661696"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453662144"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453662592"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453663040"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453663488"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453663936"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453664384"}, "name": "lstrip"}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097348901392"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453664832"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453665280"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453665728"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453666176"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453666624"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453667072"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453667520"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453667968"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453668416"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453668864"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453669312"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453669760"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453785152"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453785600"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453786048"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453786496"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453786944"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453787392"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453787840"}, "name": "zfill"}}], "typeVars": [], "bases": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097407461408"}]}], "isAbstract": false}}, "140097453543872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140097453544320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453544768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453545216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453545664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097395568176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395568176": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097453546112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395568288"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395568288": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453546560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395568400"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395568400": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453547008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395568512"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395568512": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453547456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395568624"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395568624": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453547904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453548352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453548800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453549248": {"type": "Function", "content": {"typeVars": [".0.140097453549248"], "argTypes": [{"nodeId": ".0.140097453549248"}, {"nodeId": "140097395568848"}], "returnType": {"nodeId": ".0.140097453549248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453549248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453549248", "variance": "INVARIANT"}}, "140097395568848": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "140097428310144"}]}}, "140097453549696": {"type": "Function", "content": {"typeVars": [".0.140097453549696"], "argTypes": [{"nodeId": ".0.140097453549696"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".0.140097453549696"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097453549696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453549696", "variance": "INVARIANT"}}, "140097453550144": {"type": "Function", "content": {"typeVars": [".0.140097453550144"], "argTypes": [{"nodeId": ".0.140097453550144"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".0.140097453550144"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097453550144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453550144", "variance": "INVARIANT"}}, "140097453550592": {"type": "Function", "content": {"typeVars": [".0.140097453550592"], "argTypes": [{"nodeId": ".0.140097453550592"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": ".0.140097453550592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453550592": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453550592", "variance": "INVARIANT"}}, "140097453551040": {"type": "Function", "content": {"typeVars": [".0.140097453551040"], "argTypes": [{"nodeId": ".0.140097453551040"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": ".0.140097453551040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453551040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453551040", "variance": "INVARIANT"}}, "140097453551488": {"type": "Function", "content": {"typeVars": [".0.140097453551488"], "argTypes": [{"nodeId": ".0.140097453551488"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453551488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453551488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453551488", "variance": "INVARIANT"}}, "140097453551936": {"type": "Function", "content": {"typeVars": [".0.140097453551936"], "argTypes": [{"nodeId": ".0.140097453551936"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453551936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453551936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453551936", "variance": "INVARIANT"}}, "140097453552384": {"type": "Function", "content": {"typeVars": [".0.140097453552384"], "argTypes": [{"nodeId": ".0.140097453552384"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097453552384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453552384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453552384", "variance": "INVARIANT"}}, "140097453552832": {"type": "Function", "content": {"typeVars": [".0.140097453552832"], "argTypes": [{"nodeId": ".0.140097453552832"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": ".0.140097453552832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453552832": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453552832", "variance": "INVARIANT"}}, "140097453553728": {"type": "Function", "content": {"typeVars": [".0.140097453553728"], "argTypes": [{"nodeId": ".0.140097453553728"}], "returnType": {"nodeId": ".0.140097453553728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453553728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453553728", "variance": "INVARIANT"}}, "140097453554176": {"type": "Function", "content": {"typeVars": [".0.140097453554176"], "argTypes": [{"nodeId": ".0.140097453554176"}], "returnType": {"nodeId": ".0.140097453554176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453554176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453554176", "variance": "INVARIANT"}}, "140097453554624": {"type": "Function", "content": {"typeVars": [".0.140097453554624"], "argTypes": [{"nodeId": ".0.140097453554624"}, {"nodeId": "140097499822944"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097453554624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140097453554624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453554624", "variance": "INVARIANT"}}, "140097453555072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395569184"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140097395569184": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453654080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395569296"}, {"nodeId": "140097395569408"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140097395569296": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395569408": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097453654976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395569520"}, {"nodeId": "140097395569632"}, {"nodeId": "140097395569744"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "140097395569520": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}]}}, "140097395569632": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097395569744": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097453655424": {"type": "Function", "content": {"typeVars": [".0.140097453655424"], "argTypes": [{"nodeId": ".0.140097453655424"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453655424"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, ".0.140097453655424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453655424", "variance": "INVARIANT"}}, "140097453655872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395569856"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140097395569856": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453656320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140097453656768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140097453657216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140097453657664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453658112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453658560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453659008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453659456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453659904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453660352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453660800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453661248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453661696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453662144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453662592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453663040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140097453663488": {"type": "Function", "content": {"typeVars": [".0.140097453663488"], "argTypes": [{"nodeId": ".0.140097453663488"}, {"nodeId": "140097499822944"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097453663488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140097453663488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453663488", "variance": "INVARIANT"}}, "140097453663936": {"type": "Function", "content": {"typeVars": [".0.140097453663936"], "argTypes": [{"nodeId": ".0.140097453663936"}], "returnType": {"nodeId": ".0.140097453663936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453663936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453663936", "variance": "INVARIANT"}}, "140097453664384": {"type": "Function", "content": {"typeVars": [".0.140097453664384"], "argTypes": [{"nodeId": ".0.140097453664384"}, {"nodeId": "140097395570416"}], "returnType": {"nodeId": ".0.140097453664384"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140097453664384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453664384", "variance": "INVARIANT"}}, "140097395570416": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097348901392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097348978272"}, {"nodeId": "140097348978496"}, {"nodeId": "140097348978720"}]}}, "140097348978272": {"type": "Function", "content": {"typeVars": [".-1.140097348978272"], "argTypes": [{"nodeId": "140097348901056"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": ".-1.140097348978272"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097348901056": {"type": "Union", "content": {"items": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": ".-1.140097348978272"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".-1.140097348978272"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097348900720"}, {"nodeId": ".-1.140097348978272"}]}]}}, ".-1.140097348978272": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097348978272", "variance": "INVARIANT"}}, "140097348900720": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097348978496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097348978720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097348901168"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097348901168": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097453664832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395570640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140097395570640": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097453665280": {"type": "Function", "content": {"typeVars": [".0.140097453665280"], "argTypes": [{"nodeId": ".0.140097453665280"}, {"nodeId": "140097395570752"}], "returnType": {"nodeId": ".0.140097453665280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140097453665280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453665280", "variance": "INVARIANT"}}, "140097395570752": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453665728": {"type": "Function", "content": {"typeVars": [".0.140097453665728"], "argTypes": [{"nodeId": ".0.140097453665728"}, {"nodeId": "140097395570864"}], "returnType": {"nodeId": ".0.140097453665728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140097453665728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453665728", "variance": "INVARIANT"}}, "140097395570864": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453666176": {"type": "Function", "content": {"typeVars": [".0.140097453666176"], "argTypes": [{"nodeId": ".0.140097453666176"}, {"nodeId": "140097395570976"}, {"nodeId": "140097395571088"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453666176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}}, ".0.140097453666176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453666176", "variance": "INVARIANT"}}, "140097395570976": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097395571088": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453666624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395571200"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140097395571200": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453667072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395571312"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140097395571312": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453667520": {"type": "Function", "content": {"typeVars": [".0.140097453667520"], "argTypes": [{"nodeId": ".0.140097453667520"}, {"nodeId": "140097499822944"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097453667520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140097453667520": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453667520", "variance": "INVARIANT"}}, "140097453667968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395571648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140097395571648": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097453668416": {"type": "Function", "content": {"typeVars": [".0.140097453668416"], "argTypes": [{"nodeId": ".0.140097453668416"}, {"nodeId": "140097395571760"}], "returnType": {"nodeId": ".0.140097453668416"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140097453668416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453668416", "variance": "INVARIANT"}}, "140097395571760": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097453668864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395571872"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097395571872": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097453669312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395571984"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097395571984": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097453669760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140097453785152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395572096"}, {"nodeId": "140097395572208"}, {"nodeId": "140097395572320"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "140097395572096": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}]}}, "140097395572208": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097395572320": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097453785600": {"type": "Function", "content": {"typeVars": [".0.140097453785600"], "argTypes": [{"nodeId": ".0.140097453785600"}, {"nodeId": "140097395572432"}], "returnType": {"nodeId": ".0.140097453785600"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140097453785600": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453785600", "variance": "INVARIANT"}}, "140097395572432": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097453786048": {"type": "Function", "content": {"typeVars": [".0.140097453786048"], "argTypes": [{"nodeId": ".0.140097453786048"}], "returnType": {"nodeId": ".0.140097453786048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453786048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453786048", "variance": "INVARIANT"}}, "140097453786496": {"type": "Function", "content": {"typeVars": [".0.140097453786496"], "argTypes": [{"nodeId": ".0.140097453786496"}], "returnType": {"nodeId": ".0.140097453786496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453786496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453786496", "variance": "INVARIANT"}}, "140097453786944": {"type": "Function", "content": {"typeVars": [".0.140097453786944"], "argTypes": [{"nodeId": ".0.140097453786944"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097453786944"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, ".0.140097453786944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453786944", "variance": "INVARIANT"}}, "140097453787392": {"type": "Function", "content": {"typeVars": [".0.140097453787392"], "argTypes": [{"nodeId": ".0.140097453787392"}], "returnType": {"nodeId": ".0.140097453787392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453787392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453787392", "variance": "INVARIANT"}}, "140097453787840": {"type": "Function", "content": {"typeVars": [".0.140097453787840"], "argTypes": [{"nodeId": ".0.140097453787840"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453787840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}}, ".0.140097453787840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453787840", "variance": "INVARIANT"}}, "140097407461760": {"type": "Concrete", "content": {"module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "content": {"name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097348979840"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395567504"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453789632"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453790080"}, "name": "appendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453790528"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453790976"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453791424"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453791872"}, "name": "extendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453792320"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453792768"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453793216"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453793664"}, "name": "popleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453794112"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453794560"}, "name": "rotate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453795008"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453795456"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453795904"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453796352"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453796800"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453797248"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453797696"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453798144"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453798592"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453799040"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453799488"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453799936"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453800384"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453800832"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453883456"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453883904"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407461760"}], "bases": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097407461760"}]}], "isAbstract": false}}, ".1.140097407461760": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407461760", "variance": "INVARIANT"}}, "140097348979840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "140097390624832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390624832": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097395567504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453788736"}, {"nodeId": "140097453789184"}]}}, "140097453788736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097390625056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}}, "140097390625056": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097453789184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097390625168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}}, "140097390625168": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097453789632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": ".1.140097407461760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453790080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": ".1.140097407461760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453790528": {"type": "Function", "content": {"typeVars": [".0.140097453790528"], "argTypes": [{"nodeId": ".0.140097453790528"}], "returnType": {"nodeId": ".0.140097453790528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453790528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, "def": "140097453790528", "variance": "INVARIANT"}}, "140097453790976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": ".1.140097407461760"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453791424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453791872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453792320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097499822944"}, {"nodeId": ".1.140097407461760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097453792768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": ".1.140097407461760"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097453793216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": ".1.140097407461760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453793664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": ".1.140097407461760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453794112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": ".1.140097407461760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453794560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097453795008": {"type": "Function", "content": {"typeVars": [".0.140097453795008"], "argTypes": [{"nodeId": ".0.140097453795008"}], "returnType": {"nodeId": ".0.140097453795008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453795008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, "def": "140097453795008", "variance": "INVARIANT"}}, "140097453795456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453795904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".1.140097407461760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453796352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097407464576"}, {"nodeId": ".1.140097407461760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097453796800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453797248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453797696": {"type": "Function", "content": {"typeVars": [".0.140097453797696"], "argTypes": [{"nodeId": ".0.140097453797696"}], "returnType": {"nodeId": "140097390625728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453797696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, "def": "140097453797696", "variance": "INVARIANT"}}, "140097390625728": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140097390625504"}, {"nodeId": "N"}, {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407461760"}]}]}}, "140097390625504": {"type": "Tuple", "content": {"items": []}}, "140097453798144": {"type": "Function", "content": {"typeVars": [".0.140097453798144"], "argTypes": [{"nodeId": ".0.140097453798144"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": ".0.140097453798144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453798144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, "def": "140097453798144", "variance": "INVARIANT"}}, "140097453798592": {"type": "Function", "content": {"typeVars": [".0.140097453798592"], "argTypes": [{"nodeId": ".0.140097453798592"}, {"nodeId": ".0.140097453798592"}], "returnType": {"nodeId": ".0.140097453798592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453798592": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, "def": "140097453798592", "variance": "INVARIANT"}}, "140097453799040": {"type": "Function", "content": {"typeVars": [".0.140097453799040"], "argTypes": [{"nodeId": ".0.140097453799040"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453799040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453799040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, "def": "140097453799040", "variance": "INVARIANT"}}, "140097453799488": {"type": "Function", "content": {"typeVars": [".0.140097453799488"], "argTypes": [{"nodeId": ".0.140097453799488"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453799488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453799488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, "def": "140097453799488", "variance": "INVARIANT"}}, "140097453799936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453800384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453800832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453883456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453883904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097407286112": {"type": "Concrete", "content": {"module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395568736"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453886144"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453886592"}, "name": "elements"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453887040"}, "name": "most_common"}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097349080384"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390625280"}, "items": [{"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subtract"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390626064"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453890624"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453891072"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453891520"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453891968"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453892416"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453892864"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453893312"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453893760"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453894208"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453894656"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453895104"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453895552"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453896000"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453896448"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453896896"}, "name": "total"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453897344"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453897792"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453898240"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453898688"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140097407286112"}], "bases": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}], "isAbstract": false}}, ".1.140097407286112": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407286112", "variance": "INVARIANT"}}, "140097395568736": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453884352"}, {"nodeId": "140097453884800"}, {"nodeId": "140097453885248"}, {"nodeId": "140097453885696"}]}}, "140097453884352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097453884800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097453885248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453885696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453886144": {"type": "Function", "content": {"typeVars": [".0.140097453886144"], "argTypes": [{"nodeId": ".0.140097453886144"}], "returnType": {"nodeId": ".0.140097453886144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453886144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "def": "140097453886144", "variance": "INVARIANT"}}, "140097453886592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407286112"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453887040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097390626176"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097390626400"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "140097390626176": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097390626400": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}}, "140097349080384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "140097390626624"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}}, "140097390626624": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097390625280": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453887936"}, {"nodeId": "140097453888384"}, {"nodeId": "140097453888832"}]}}, "140097453887936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097453888384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453888832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097390626064": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453889280"}, {"nodeId": "140097453889728"}, {"nodeId": "140097453890176"}]}}, "140097453889280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097453889728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097453890176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "N"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097453890624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": ".1.140097407286112"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140097453891072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453891520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453891968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453892416": {"type": "Function", "content": {"typeVars": [".-1.140097453892416"], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": ".-1.140097453892416"}]}], "returnType": {"nodeId": "140097407286112", "args": [{"nodeId": "140097390626960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097453892416": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453892416", "variance": "INVARIANT"}}, "140097390626960": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407286112"}, {"nodeId": ".-1.140097453892416"}]}}, "140097453892864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453893312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453893760": {"type": "Function", "content": {"typeVars": [".-1.140097453893760"], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": ".-1.140097453893760"}]}], "returnType": {"nodeId": "140097407286112", "args": [{"nodeId": "140097390627072"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097453893760": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453893760", "variance": "INVARIANT"}}, "140097390627072": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407286112"}, {"nodeId": ".-1.140097453893760"}]}}, "140097453894208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453894656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453895104": {"type": "Function", "content": {"typeVars": [".0.140097453895104"], "argTypes": [{"nodeId": ".0.140097453895104"}, {"nodeId": "140097419752576", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}], "returnType": {"nodeId": ".0.140097453895104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453895104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "def": "140097453895104", "variance": "INVARIANT"}}, "140097453895552": {"type": "Function", "content": {"typeVars": [".0.140097453895552"], "argTypes": [{"nodeId": ".0.140097453895552"}, {"nodeId": "140097419752576", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}], "returnType": {"nodeId": ".0.140097453895552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453895552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "def": "140097453895552", "variance": "INVARIANT"}}, "140097453896000": {"type": "Function", "content": {"typeVars": [".0.140097453896000"], "argTypes": [{"nodeId": ".0.140097453896000"}, {"nodeId": "140097419752576", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}], "returnType": {"nodeId": ".0.140097453896000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453896000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "def": "140097453896000", "variance": "INVARIANT"}}, "140097453896448": {"type": "Function", "content": {"typeVars": [".0.140097453896448"], "argTypes": [{"nodeId": ".0.140097453896448"}, {"nodeId": "140097419752576", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}], "returnType": {"nodeId": ".0.140097453896448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453896448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "def": "140097453896448", "variance": "INVARIANT"}}, "140097453896896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453897344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453897792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453898240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453898688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419740960": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453899136"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097419740960"}], "bases": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097419740960"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": ".1.140097419740960"}]}], "isAbstract": false}}, ".1.140097419740960": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419740960", "variance": "COVARIANT"}}, "140097453899136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740960", "args": [{"nodeId": ".1.140097419740960"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097419740960"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097419741312": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454014528"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097419741312"}, {"nodeId": ".2.140097419741312"}], "bases": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097419741312"}, {"nodeId": ".2.140097419741312"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": "140097429059200"}]}], "isAbstract": false}}, ".1.140097419741312": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419741312", "variance": "COVARIANT"}}, ".2.140097419741312": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419741312", "variance": "COVARIANT"}}, "140097454014528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419741312", "args": [{"nodeId": ".1.140097419741312"}, {"nodeId": ".2.140097419741312"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097390627744"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097390627744": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097419741312"}, {"nodeId": ".2.140097419741312"}]}}, "140097429059200": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097419741312"}, {"nodeId": ".2.140097419741312"}]}}, "140097419741664": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454014976"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097419741664"}], "bases": [{"nodeId": "140097407455072", "args": [{"nodeId": ".1.140097419741664"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": ".1.140097419741664"}]}], "isAbstract": false}}, ".1.140097419741664": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419741664", "variance": "COVARIANT"}}, "140097454014976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419741664", "args": [{"nodeId": ".1.140097419741664"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097419741664"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407462112": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454015424"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097407462112"}, {"nodeId": ".2.140097407462112"}], "bases": [{"nodeId": "140097407457184", "args": [{"nodeId": ".1.140097407462112"}, {"nodeId": ".2.140097407462112"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": ".1.140097407462112"}]}], "isAbstract": false}}, ".1.140097407462112": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407462112", "variance": "COVARIANT"}}, ".2.140097407462112": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407462112", "variance": "COVARIANT"}}, "140097454015424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407462112", "args": [{"nodeId": ".1.140097407462112"}, {"nodeId": ".2.140097407462112"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407462112"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407462464": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454015872"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097407462464"}, {"nodeId": ".2.140097407462464"}], "bases": [{"nodeId": "140097407457888", "args": [{"nodeId": ".1.140097407462464"}, {"nodeId": ".2.140097407462464"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": "140097407566896"}]}], "isAbstract": false}}, ".1.140097407462464": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407462464", "variance": "COVARIANT"}}, ".2.140097407462464": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407462464", "variance": "COVARIANT"}}, "140097454015872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407462464", "args": [{"nodeId": ".1.140097407462464"}, {"nodeId": ".2.140097407462464"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097390627968"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097390627968": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407462464"}, {"nodeId": ".2.140097407462464"}]}}, "140097407566896": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407462464"}, {"nodeId": ".2.140097407462464"}]}}, "140097407462816": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454016320"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097407462816"}, {"nodeId": ".2.140097407462816"}], "bases": [{"nodeId": "140097407457536", "args": [{"nodeId": ".1.140097407462816"}, {"nodeId": ".2.140097407462816"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": ".2.140097407462816"}]}], "isAbstract": false}}, ".1.140097407462816": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407462816", "variance": "COVARIANT"}}, ".2.140097407462816": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407462816", "variance": "COVARIANT"}}, "140097454016320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407462816", "args": [{"nodeId": ".1.140097407462816"}, {"nodeId": ".2.140097407462816"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".2.140097407462816"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407463168": {"type": "Concrete", "content": {"module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454016768"}, "name": "popitem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454017216"}, "name": "move_to_end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454017664"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454018112"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454018560"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454019008"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454019456"}, "name": "values"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390626736"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390628304"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}], "typeVars": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}], "bases": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": ".1.140097407463168"}]}], "isAbstract": false}}, ".1.140097407463168": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407463168", "variance": "INVARIANT"}}, ".2.140097407463168": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407463168", "variance": "INVARIANT"}}, "140097454016768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097390628192"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}}, "140097390628192": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}}, "140097454017216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, {"nodeId": ".1.140097407463168"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}}, "140097454017664": {"type": "Function", "content": {"typeVars": [".0.140097454017664"], "argTypes": [{"nodeId": ".0.140097454017664"}], "returnType": {"nodeId": ".0.140097454017664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097454017664": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, "def": "140097454017664", "variance": "INVARIANT"}}, "140097454018112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407463168"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097454018560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}], "returnType": {"nodeId": "140097407462112", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097454019008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}], "returnType": {"nodeId": "140097407462464", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097454019456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}], "returnType": {"nodeId": "140097407462816", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390626736": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454019904"}, {"nodeId": "140097454020352"}]}}, "140097454019904": {"type": "Function", "content": {"typeVars": [".-1.140097454019904"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097454019904"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140097407463168", "args": [{"nodeId": ".-1.140097454019904"}, {"nodeId": "140097390628640"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140097454019904": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454019904", "variance": "INVARIANT"}}, "140097390628640": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097454020352": {"type": "Function", "content": {"typeVars": [".-1.140097454020352", ".-2.140097454020352"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097454020352"}]}, {"nodeId": ".-2.140097454020352"}], "returnType": {"nodeId": "140097407463168", "args": [{"nodeId": ".-1.140097454020352"}, {"nodeId": ".-2.140097454020352"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140097454020352": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454020352", "variance": "INVARIANT"}}, ".-2.140097454020352": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454020352", "variance": "INVARIANT"}}, "140097390628304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454020800"}, {"nodeId": "140097454021248"}]}}, "140097454020800": {"type": "Function", "content": {"typeVars": [".-1.140097454020800"], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": "140097390628864"}]}, {"nodeId": ".1.140097407463168"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097390628976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140097390628864": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140097454020800"}, {"nodeId": "N"}]}}, ".-1.140097454020800": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454020800", "variance": "INVARIANT"}}, "140097390628976": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140097454020800"}, {"nodeId": "N"}]}}, "140097454021248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, {"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}], "returnType": {"nodeId": ".2.140097407463168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140097407286464": {"type": "Concrete", "content": {"module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407567120"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390628416"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454025280"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454025728"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454026176"}, "name": "copy"}}], "typeVars": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}], "bases": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}], "isAbstract": false}}, ".1.140097407286464": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407286464", "variance": "INVARIANT"}}, ".2.140097407286464": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407286464", "variance": "INVARIANT"}}, "140097407567120": {"type": "Union", "content": {"items": [{"nodeId": "140097415605248"}, {"nodeId": "N"}]}}, "140097415605248": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": [], "argNames": []}}, "140097390628416": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454021696"}, {"nodeId": "140097454022144"}, {"nodeId": "140097454022592"}, {"nodeId": "140097454023040"}, {"nodeId": "140097454023488"}, {"nodeId": "140097454023936"}, {"nodeId": "140097454024384"}, {"nodeId": "140097454024832"}]}}, "140097454021696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097454022144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": ".2.140097407286464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140097454022592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": "140097390629200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097390629200": {"type": "Union", "content": {"items": [{"nodeId": "140097395481440"}, {"nodeId": "N"}]}}, "140097395481440": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": [], "argNames": []}}, "140097454023040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": "140097390629312"}, {"nodeId": ".2.140097407286464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097390629312": {"type": "Union", "content": {"items": [{"nodeId": "140097395481664"}, {"nodeId": "N"}]}}, "140097395481664": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": [], "argNames": []}}, "140097454023488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": "140097390629424"}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097390629424": {"type": "Union", "content": {"items": [{"nodeId": "140097395480992"}, {"nodeId": "N"}]}}, "140097395480992": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": [], "argNames": []}}, "140097454023936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": "140097390629536"}, {"nodeId": "140097419752928", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": ".2.140097407286464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140097390629536": {"type": "Union", "content": {"items": [{"nodeId": "140097395481888"}, {"nodeId": "N"}]}}, "140097395481888": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": [], "argNames": []}}, "140097454024384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": "140097390629648"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097390629872"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097390629648": {"type": "Union", "content": {"items": [{"nodeId": "140097395482112"}, {"nodeId": "N"}]}}, "140097395482112": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": [], "argNames": []}}, "140097390629872": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}}, "140097454024832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": "140097390629984"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097390630208"}]}, {"nodeId": ".2.140097407286464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140097390629984": {"type": "Union", "content": {"items": [{"nodeId": "140097395482336"}, {"nodeId": "N"}]}}, "140097395482336": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": [], "argNames": []}}, "140097390630208": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407286464"}]}}, "140097454025280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": ".1.140097407286464"}], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097454025728": {"type": "Function", "content": {"typeVars": [".0.140097454025728"], "argTypes": [{"nodeId": ".0.140097454025728"}], "returnType": {"nodeId": ".0.140097454025728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097454025728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407286464", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}, "def": "140097454025728", "variance": "INVARIANT"}}, "140097454026176": {"type": "Function", "content": {"typeVars": [".0.140097454026176"], "argTypes": [{"nodeId": ".0.140097454026176"}], "returnType": {"nodeId": ".0.140097454026176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097454026176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407286464", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}, "def": "140097454026176", "variance": "INVARIANT"}}, "140097407463520": {"type": "Concrete", "content": {"module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454026624"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454027072"}, "name": "new_child"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097349471360"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454027968"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454028416"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454028864"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454029312"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454029760"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454030208"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454194752"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454195200"}, "name": "__bool__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390628752"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390630432"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454197440"}, "name": "copy"}}, {"kind": "Variable", "content": {"name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097349474048"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390630656"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454198784"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454199232"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390630992"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}], "bases": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}], "isAbstract": false}}, ".1.140097407463520": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407463520", "variance": "INVARIANT"}}, ".2.140097407463520": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407463520", "variance": "INVARIANT"}}, "140097454026624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}}, "140097454027072": {"type": "Function", "content": {"typeVars": [".0.140097454027072"], "argTypes": [{"nodeId": ".0.140097454027072"}, {"nodeId": "140097390630544"}], "returnType": {"nodeId": ".0.140097454027072"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, ".0.140097454027072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, "def": "140097454027072", "variance": "INVARIANT"}}, "140097390630544": {"type": "Union", "content": {"items": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": "N"}]}}, "140097349471360": {"type": "Function", "content": {"typeVars": [".0.140097349471360"], "argTypes": [{"nodeId": ".0.140097349471360"}], "returnType": {"nodeId": ".0.140097349471360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097349471360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, "def": "140097349471360", "variance": "INVARIANT"}}, "140097454027968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097454028416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": ".1.140097407463520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097454028864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": ".1.140097407463520"}], "returnType": {"nodeId": ".2.140097407463520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097454029312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407463520"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097454029760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097454030208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097454194752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": ".1.140097407463520"}], "returnType": {"nodeId": ".2.140097407463520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140097454195200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390628752": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454195648"}, {"nodeId": "140097454196096"}]}}, "140097454195648": {"type": "Function", "content": {"typeVars": [".-1.140097454195648"], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": "140097390630768"}]}, {"nodeId": ".1.140097407463520"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097390630880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140097390630768": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140097454195648"}, {"nodeId": "N"}]}}, ".-1.140097454195648": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454195648", "variance": "INVARIANT"}}, "140097390630880": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140097454195648"}, {"nodeId": "N"}]}}, "140097454196096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}], "returnType": {"nodeId": ".2.140097407463520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140097390630432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454196544"}, {"nodeId": "140097454196992"}]}}, "140097454196544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": ".1.140097407463520"}], "returnType": {"nodeId": ".2.140097407463520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140097454196992": {"type": "Function", "content": {"typeVars": [".-1.140097454196992"], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": ".1.140097407463520"}, {"nodeId": "140097390631104"}], "returnType": {"nodeId": "140097390631216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140097390631104": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407463520"}, {"nodeId": ".-1.140097454196992"}]}}, ".-1.140097454196992": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454196992", "variance": "INVARIANT"}}, "140097390631216": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407463520"}, {"nodeId": ".-1.140097454196992"}]}}, "140097454197440": {"type": "Function", "content": {"typeVars": [".0.140097454197440"], "argTypes": [{"nodeId": ".0.140097454197440"}], "returnType": {"nodeId": ".0.140097454197440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097454197440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, "def": "140097454197440", "variance": "INVARIANT"}}, "140097349474048": {"type": "Function", "content": {"typeVars": [".0.140097349474048"], "argTypes": [{"nodeId": ".0.140097349474048"}], "returnType": {"nodeId": ".0.140097349474048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097349474048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, "def": "140097349474048", "variance": "INVARIANT"}}, "140097390630656": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454197888"}, {"nodeId": "140097454198336"}]}}, "140097454197888": {"type": "Function", "content": {"typeVars": [".-1.140097454197888"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097454197888"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140097407463520", "args": [{"nodeId": ".-1.140097454197888"}, {"nodeId": "140097390631552"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}}, ".-1.140097454197888": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454197888", "variance": "INVARIANT"}}, "140097390631552": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097454198336": {"type": "Function", "content": {"typeVars": [".-1.140097454198336", ".-2.140097454198336"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097454198336"}]}, {"nodeId": ".-2.140097454198336"}], "returnType": {"nodeId": "140097407463520", "args": [{"nodeId": ".-1.140097454198336"}, {"nodeId": ".-2.140097454198336"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140097454198336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454198336", "variance": "INVARIANT"}}, ".-2.140097454198336": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454198336", "variance": "INVARIANT"}}, "140097454198784": {"type": "Function", "content": {"typeVars": [".-1.140097454198784", ".-2.140097454198784"], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097454198784"}, {"nodeId": ".-2.140097454198784"}]}], "returnType": {"nodeId": "140097407463520", "args": [{"nodeId": "140097390631664"}, {"nodeId": "140097390631776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097454198784": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454198784", "variance": "INVARIANT"}}, ".-2.140097454198784": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454198784", "variance": "INVARIANT"}}, "140097390631664": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".-1.140097454198784"}]}}, "140097390631776": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407463520"}, {"nodeId": ".-2.140097454198784"}]}}, "140097454199232": {"type": "Function", "content": {"typeVars": [".-1.140097454199232", ".-2.140097454199232"], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097454199232"}, {"nodeId": ".-2.140097454199232"}]}], "returnType": {"nodeId": "140097407463520", "args": [{"nodeId": "140097390631888"}, {"nodeId": "140097390632000"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097454199232": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454199232", "variance": "INVARIANT"}}, ".-2.140097454199232": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454199232", "variance": "INVARIANT"}}, "140097390631888": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".-1.140097454199232"}]}}, "140097390632000": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407463520"}, {"nodeId": ".-2.140097454199232"}]}}, "140097390630992": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454199680"}, {"nodeId": "140097454200128"}]}}, "140097454199680": {"type": "Function", "content": {"typeVars": [".0.140097454199680"], "argTypes": [{"nodeId": ".0.140097454199680"}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}], "returnType": {"nodeId": ".0.140097454199680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097454199680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, "def": "140097454199680", "variance": "INVARIANT"}}, "140097454200128": {"type": "Function", "content": {"typeVars": [".0.140097454200128"], "argTypes": [{"nodeId": ".0.140097454200128"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097390632336"}]}], "returnType": {"nodeId": ".0.140097454200128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097454200128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, "def": "140097454200128", "variance": "INVARIANT"}}, "140097390632336": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}}, "140097428530880": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "_MISSING_TYPE", "members": [{"kind": "Variable", "content": {"name": "MISSING", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097462531200"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462529792"}], "isAbstract": false}}, "140097462531200": {"type": "Concrete", "content": {"module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097352645792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432169248"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140097462530848"}], "isAbstract": false}}, "140097352645792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432169248": {"type": "Function", "content": {"typeVars": [".0.140097432169248"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140097432169248"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140097432169248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462531200"}, "def": "140097432169248", "variance": "INVARIANT"}}, "140097462530848": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432167008"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432167456"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432167904"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432168352"}, "name": "__xor__"}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352640416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352643104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352644224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499822944"}, {"nodeId": "140097462530496"}], "isAbstract": false}}, "140097432167008": {"type": "Function", "content": {"typeVars": [".0.140097432167008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097432167008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140097432167008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530848"}, "def": "140097432167008", "variance": "INVARIANT"}}, "140097432167456": {"type": "Function", "content": {"typeVars": [".0.140097432167456"], "argTypes": [{"nodeId": ".0.140097432167456"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097432167456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432167456": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530848"}, "def": "140097432167456", "variance": "INVARIANT"}}, "140097432167904": {"type": "Function", "content": {"typeVars": [".0.140097432167904"], "argTypes": [{"nodeId": ".0.140097432167904"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097432167904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432167904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530848"}, "def": "140097432167904", "variance": "INVARIANT"}}, "140097432168352": {"type": "Function", "content": {"typeVars": [".0.140097432168352"], "argTypes": [{"nodeId": ".0.140097432168352"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097432168352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432168352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530848"}, "def": "140097432168352", "variance": "INVARIANT"}}, "140097352640416": {"type": "Function", "content": {"typeVars": [".0.140097352640416"], "argTypes": [{"nodeId": ".0.140097352640416"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097352640416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097352640416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530848"}, "def": "140097352640416", "variance": "INVARIANT"}}, "140097352643104": {"type": "Function", "content": {"typeVars": [".0.140097352643104"], "argTypes": [{"nodeId": ".0.140097352643104"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097352643104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097352643104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530848"}, "def": "140097352643104", "variance": "INVARIANT"}}, "140097352644224": {"type": "Function", "content": {"typeVars": [".0.140097352644224"], "argTypes": [{"nodeId": ".0.140097352644224"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097352644224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097352644224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530848"}, "def": "140097352644224", "variance": "INVARIANT"}}, "140097462530496": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415892096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097352632352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097352633696"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441709216"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441709664"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432158496"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432158944"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432159392"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432159840"}, "name": "__invert__"}}], "typeVars": [], "bases": [{"nodeId": "140097462529792"}], "isAbstract": false}}, "140097415892096": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097352632352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462530496"}], "returnType": {"nodeId": "140097395189440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395189440": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097352633696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462530496"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441709216": {"type": "Function", "content": {"typeVars": [".0.140097441709216"], "argTypes": [{"nodeId": ".0.140097441709216"}, {"nodeId": ".0.140097441709216"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097441709216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530496"}, "def": "140097441709216", "variance": "INVARIANT"}}, "140097441709664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462530496"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432158496": {"type": "Function", "content": {"typeVars": [".0.140097432158496"], "argTypes": [{"nodeId": ".0.140097432158496"}, {"nodeId": ".0.140097432158496"}], "returnType": {"nodeId": ".0.140097432158496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432158496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530496"}, "def": "140097432158496", "variance": "INVARIANT"}}, "140097432158944": {"type": "Function", "content": {"typeVars": [".0.140097432158944"], "argTypes": [{"nodeId": ".0.140097432158944"}, {"nodeId": ".0.140097432158944"}], "returnType": {"nodeId": ".0.140097432158944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432158944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530496"}, "def": "140097432158944", "variance": "INVARIANT"}}, "140097432159392": {"type": "Function", "content": {"typeVars": [".0.140097432159392"], "argTypes": [{"nodeId": ".0.140097432159392"}, {"nodeId": ".0.140097432159392"}], "returnType": {"nodeId": ".0.140097432159392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432159392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530496"}, "def": "140097432159392", "variance": "INVARIANT"}}, "140097432159840": {"type": "Function", "content": {"typeVars": [".0.140097432159840"], "argTypes": [{"nodeId": ".0.140097432159840"}], "returnType": {"nodeId": ".0.140097432159840"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097432159840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530496"}, "def": "140097432159840", "variance": "INVARIANT"}}, "140097462529792": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097357755808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097357756480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415891872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357756704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357756928"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441705184"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441705632"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441706080"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441706528"}, "name": "__reduce_ex__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097357755808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529792"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097357756480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097415891872": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}]}}, "140097357756704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, "140097357756928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}}, "140097441705184": {"type": "Function", "content": {"typeVars": [".0.140097441705184"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": ".0.140097441705184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140097441705184": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462529792"}, "def": "140097441705184", "variance": "INVARIANT"}}, "140097441705632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529792"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441706080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529792"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}}, "140097441706528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529792"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}}, "140097428531232": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "KW_ONLY", "members": [], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097428532288": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "FrozenInstanceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428318592"}], "isAbstract": false}}, "140097428532640": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "InitVar", "members": [{"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453296096"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395420496"}, "items": [{"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097428532640"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097428532640": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428532640", "variance": "INVARIANT"}}, "140097453296096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428532640", "args": [{"nodeId": ".1.140097428532640"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}}, "140097395420496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453296544"}, {"nodeId": "140097453296992"}]}}, "140097453296544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140097428532640", "args": [{"nodeId": ".1.140097428532640"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140097453296992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097428532640", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140097407727072": {"type": "Concrete", "content": {"module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453300576"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453301472"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453301920"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453302368"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453302816"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453303264"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453303712"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453304160"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453304608"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453305056"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399628048"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140097407727072"}], "bases": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".1.140097407727072"}]}], "isAbstract": false}}, ".1.140097407727072": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407727072", "variance": "INVARIANT"}}, "140097453300576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, {"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".1.140097407727072"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "data", "encodekey", "decodekey", "encodevalue", "decodevalue"]}}, "140097453301472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, {"nodeId": ".1.140097407727072"}, {"nodeId": ".1.140097407727072"}], "returnType": {"nodeId": ".1.140097407727072"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}}, "140097453301920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".1.140097407727072"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453302368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, {"nodeId": ".1.140097407727072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453302816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, {"nodeId": ".1.140097407727072"}], "returnType": {"nodeId": ".1.140097407727072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453303264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, {"nodeId": ".1.140097407727072"}, {"nodeId": ".1.140097407727072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097453303712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407727072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453304160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453304608": {"type": "Function", "content": {"typeVars": [".-1.140097453304608", ".-2.140097453304608"], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097453304608"}, {"nodeId": ".-2.140097453304608"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097399633312"}, {"nodeId": "140097399633424"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097453304608": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453304608", "variance": "INVARIANT"}}, ".-2.140097453304608": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453304608", "variance": "INVARIANT"}}, "140097399633312": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".-1.140097453304608"}]}}, "140097399633424": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".-2.140097453304608"}]}}, "140097453305056": {"type": "Function", "content": {"typeVars": [".-1.140097453305056", ".-2.140097453305056"], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097453305056"}, {"nodeId": ".-2.140097453305056"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097399633536"}, {"nodeId": "140097399633648"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097453305056": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453305056", "variance": "INVARIANT"}}, ".-2.140097453305056": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453305056", "variance": "INVARIANT"}}, "140097399633536": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".-1.140097453305056"}]}}, "140097399633648": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".-2.140097453305056"}]}}, "140097399628048": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453305504"}, {"nodeId": "140097453305952"}]}}, "140097453305504": {"type": "Function", "content": {"typeVars": [".0.140097453305504"], "argTypes": [{"nodeId": ".0.140097453305504"}, {"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".1.140097407727072"}]}], "returnType": {"nodeId": ".0.140097453305504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453305504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, "def": "140097453305504", "variance": "INVARIANT"}}, "140097453305952": {"type": "Function", "content": {"typeVars": [".0.140097453305952"], "argTypes": [{"nodeId": ".0.140097453305952"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097399634096"}]}], "returnType": {"nodeId": ".0.140097453305952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453305952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, "def": "140097453305952", "variance": "INVARIANT"}}, "140097399634096": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".1.140097407727072"}]}}, "140097403221472": {"type": "Concrete", "content": {"module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097365858944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365641024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365639904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365639680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365639232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365639456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365621024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365622144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365622368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365621696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365621920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365621248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365621472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365620576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365619904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365619680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365620128"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499823296"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}], "isAbstract": false}}, "140097365858944": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365641024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399634320"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399634320": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365639904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399634432"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399634432": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365639680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399634544"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399634544": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365639232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399634656"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399634656": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365639456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399634768"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399634768": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365621024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399634880"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399634880": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365622144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399634992"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399634992": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365622368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399635104"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399635104": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365621696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399635216"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399635216": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365621920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399635328"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399635328": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365621248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399635440"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399635440": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365621472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399635552"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399635552": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365620576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399635664"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399635664": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365619904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399635776"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399635776": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365619680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394622528"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394622528": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365620128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394622640"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394622640": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097407727424": {"type": "Concrete", "content": {"module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365614528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365612736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449992800"}, "name": "inode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449993248"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449993696"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449994144"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449994592"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449995040"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449995488"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407727424"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097407727424": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407727424", "variance": "INVARIANT"}}, "140097365614528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}], "returnType": {"nodeId": ".1.140097407727424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365612736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}], "returnType": {"nodeId": ".1.140097407727424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449992800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449993248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140097449993696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140097449994144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449994592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097394623088"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140097394623088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403598464"}}}, "140097403598464": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097449995040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}], "returnType": {"nodeId": ".1.140097407727424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449995488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140097403406112": {"type": "Concrete", "content": {"module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097365867232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365605312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365604640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365603968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365603744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365603072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365602848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365601504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365600832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365600160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365599488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365597696"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097365867232": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365605312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394623424"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394623424": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365604640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394623536"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394623536": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365603968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394623648"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394623648": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365603744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394623760"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394623760": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365603072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394623872"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394623872": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365602848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394623984"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394623984": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365601504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394624096"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394624096": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365600832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394624208"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394624208": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365600160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394624320"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394624320": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365599488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394624432"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394624432": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365597696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394624544"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394624544": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097403406464": {"type": "Concrete", "content": {"module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097366098432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365596576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365595904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365595008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365595456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365594336"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}], "isAbstract": false}}, "140097366098432": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365596576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394625104"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394625104": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365595904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394625216"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394625216": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365595008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394625328"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394625328": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365595456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394625440"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394625440": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365594336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394625552"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394625552": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403406816": {"type": "Concrete", "content": {"module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097366104816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365540224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365538880"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097366104816": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365540224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394633280"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394633280": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365538880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394633392"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394633392": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097403407168": {"type": "Concrete", "content": {"module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445310112"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445310560"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445311008"}, "name": "close"}}], "typeVars": [{"nodeId": ".1.140097403407168"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097403407168"}]}]}, {"nodeId": "140097428532992", "args": [{"nodeId": "140097403407168", "args": [{"nodeId": ".1.140097403407168"}]}]}], "isAbstract": false}}, ".1.140097403407168": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097403407168", "variance": "INVARIANT"}}, "140097445310112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403407168", "args": [{"nodeId": ".1.140097403407168"}]}], "returnType": {"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097403407168"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097445310560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403407168", "args": [{"nodeId": ".1.140097403407168"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140097445311008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403407168", "args": [{"nodeId": ".1.140097403407168"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428532992": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440941664"}, "name": "__enter__"}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097353446592"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097428532992"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__enter__", "__exit__"]}}, ".1.140097428532992": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428532992", "variance": "COVARIANT"}}, "140097440941664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428532992", "args": [{"nodeId": ".1.140097428532992"}]}], "returnType": {"nodeId": ".1.140097428532992"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097353446592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428532992", "args": [{"nodeId": ".1.140097428532992"}]}, {"nodeId": "140097395424416"}, {"nodeId": "140097395424528"}, {"nodeId": "140097395424640"}], "returnType": {"nodeId": "140097395424752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097395424416": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395424528": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395424640": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097395424752": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097403407520": {"type": "Concrete", "content": {"module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445473952"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445474400"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140097462519936"}], "isAbstract": false}}, "140097445473952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403407520"}, {"nodeId": "140097462519936"}, {"nodeId": "140097407723904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}}, "140097407723904": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403591184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403597680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403360352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407581232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407581344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399153136"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416134720"}, "name": "poll"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416135168"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416135616"}, "name": "communicate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416136064"}, "name": "send_signal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416136512"}, "name": "terminate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416136960"}, "name": "kill"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416137408"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416137856"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416138304"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407723904"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097407723904": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407723904", "variance": "INVARIANT"}}, "140097403591184": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097403359792": {"type": "Union", "content": {"items": [{"nodeId": "140097403359344"}, {"nodeId": "140097499819776", "args": [{"nodeId": "140097403359008"}]}]}}, "140097403359344": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097403359008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097403597680": {"type": "Union", "content": {"items": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407723904"}]}, {"nodeId": "N"}]}}, "140097403360352": {"type": "Union", "content": {"items": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407723904"}]}, {"nodeId": "N"}]}}, "140097407581232": {"type": "Union", "content": {"items": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407723904"}]}, {"nodeId": "N"}]}}, "140097407581344": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "A"}]}}, "140097399153136": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097432638784"}, {"nodeId": "140097415602560"}, {"nodeId": "140097415603008"}, {"nodeId": "140097415603456"}, {"nodeId": "140097415603904"}, {"nodeId": "140097415604352"}]}}, "140097432638784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097399355120"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399355344"}, {"nodeId": "140097399355568"}, {"nodeId": "140097399355792"}, {"nodeId": "140097399356016"}, {"nodeId": "140097399356128"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097399356464"}, {"nodeId": "140097399356688"}, {"nodeId": "140097399356800"}, {"nodeId": "140097399357024"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499819424", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097399357136"}, {"nodeId": "140097428308736"}, {"nodeId": "140097399357248"}, {"nodeId": "140097399390272"}, {"nodeId": "140097399390384"}, {"nodeId": "140097399390608"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140097399355120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399355344": {"type": "Union", "content": {"items": [{"nodeId": "140097399355232"}, {"nodeId": "N"}]}}, "140097399355232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399355568": {"type": "Union", "content": {"items": [{"nodeId": "140097399355456"}, {"nodeId": "N"}]}}, "140097399355456": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097407579776": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140097499822944"}, {"nodeId": "140097407455424", "args": [{"nodeId": "A"}]}]}}, "140097399355792": {"type": "Union", "content": {"items": [{"nodeId": "140097399355680"}, {"nodeId": "N"}]}}, "140097399355680": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399356016": {"type": "Union", "content": {"items": [{"nodeId": "140097399355904"}, {"nodeId": "N"}]}}, "140097399355904": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399356128": {"type": "Union", "content": {"items": [{"nodeId": "140097432641248"}, {"nodeId": "N"}]}}, "140097432641248": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140097399356464": {"type": "Union", "content": {"items": [{"nodeId": "140097399356352"}, {"nodeId": "N"}]}}, "140097399356352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399356688": {"type": "Union", "content": {"items": [{"nodeId": "140097399356576"}, {"nodeId": "N"}]}}, "140097399356576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403360576"}}}, "140097403360576": {"type": "Union", "content": {"items": [{"nodeId": "140097499821184", "args": [{"nodeId": "140097428309088"}, {"nodeId": "140097403360128"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097403359680"}]}]}}, "140097403360128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097403359680": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399356800": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399357024": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097399357136": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399357248": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399390272": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399390384": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399390608": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097399390496"}]}, {"nodeId": "N"}]}}, "140097399390496": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097415602560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097399390720"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399390944"}, {"nodeId": "140097399391168"}, {"nodeId": "140097399391392"}, {"nodeId": "140097399391616"}, {"nodeId": "140097399391728"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097399392064"}, {"nodeId": "140097399392288"}, {"nodeId": "140097399392400"}, {"nodeId": "140097399392624"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499819424", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097399392736"}, {"nodeId": "140097399392848"}, {"nodeId": "140097428308736"}, {"nodeId": "140097399392960"}, {"nodeId": "140097399393072"}, {"nodeId": "140097399393296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140097399390720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399390944": {"type": "Union", "content": {"items": [{"nodeId": "140097399390832"}, {"nodeId": "N"}]}}, "140097399390832": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399391168": {"type": "Union", "content": {"items": [{"nodeId": "140097399391056"}, {"nodeId": "N"}]}}, "140097399391056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399391392": {"type": "Union", "content": {"items": [{"nodeId": "140097399391280"}, {"nodeId": "N"}]}}, "140097399391280": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399391616": {"type": "Union", "content": {"items": [{"nodeId": "140097399391504"}, {"nodeId": "N"}]}}, "140097399391504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399391728": {"type": "Union", "content": {"items": [{"nodeId": "140097432642144"}, {"nodeId": "N"}]}}, "140097432642144": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140097399392064": {"type": "Union", "content": {"items": [{"nodeId": "140097399391952"}, {"nodeId": "N"}]}}, "140097399391952": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399392288": {"type": "Union", "content": {"items": [{"nodeId": "140097399392176"}, {"nodeId": "N"}]}}, "140097399392176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403360576"}}}, "140097399392400": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399392624": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097399392736": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399392848": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399392960": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399393072": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399393296": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097399393184"}]}, {"nodeId": "N"}]}}, "140097399393184": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097415603008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097399393408"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399393632"}, {"nodeId": "140097399393856"}, {"nodeId": "140097399394080"}, {"nodeId": "140097399394304"}, {"nodeId": "140097399394416"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097399394752"}, {"nodeId": "140097399394976"}, {"nodeId": "0"}, {"nodeId": "140097399395312"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499819424", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097399395424"}, {"nodeId": "140097399395536"}, {"nodeId": "140097399395648"}, {"nodeId": "140097399395760"}, {"nodeId": "140097399395872"}, {"nodeId": "140097399396096"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140097399393408": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399393632": {"type": "Union", "content": {"items": [{"nodeId": "140097399393520"}, {"nodeId": "N"}]}}, "140097399393520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399393856": {"type": "Union", "content": {"items": [{"nodeId": "140097399393744"}, {"nodeId": "N"}]}}, "140097399393744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399394080": {"type": "Union", "content": {"items": [{"nodeId": "140097399393968"}, {"nodeId": "N"}]}}, "140097399393968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399394304": {"type": "Union", "content": {"items": [{"nodeId": "140097399394192"}, {"nodeId": "N"}]}}, "140097399394192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399394416": {"type": "Union", "content": {"items": [{"nodeId": "140097432639008"}, {"nodeId": "N"}]}}, "140097432639008": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140097399394752": {"type": "Union", "content": {"items": [{"nodeId": "140097399394640"}, {"nodeId": "N"}]}}, "140097399394640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399394976": {"type": "Union", "content": {"items": [{"nodeId": "140097399394864"}, {"nodeId": "N"}]}}, "140097399394864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403360576"}}}, "140097399395312": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097399395424": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399395536": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399395648": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399395760": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399395872": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399396096": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097399395984"}]}, {"nodeId": "N"}]}}, "140097399395984": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097415603456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097399396208"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399396432"}, {"nodeId": "140097399396656"}, {"nodeId": "140097399396880"}, {"nodeId": "140097399397104"}, {"nodeId": "140097399397216"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097399397552"}, {"nodeId": "140097399397776"}, {"nodeId": "140097399397888"}, {"nodeId": "140097399398112"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499819424", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "0"}, {"nodeId": "140097399398336"}, {"nodeId": "140097399398448"}, {"nodeId": "140097399398560"}, {"nodeId": "140097399398672"}, {"nodeId": "140097399398896"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140097399396208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399396432": {"type": "Union", "content": {"items": [{"nodeId": "140097399396320"}, {"nodeId": "N"}]}}, "140097399396320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399396656": {"type": "Union", "content": {"items": [{"nodeId": "140097399396544"}, {"nodeId": "N"}]}}, "140097399396544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399396880": {"type": "Union", "content": {"items": [{"nodeId": "140097399396768"}, {"nodeId": "N"}]}}, "140097399396768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399397104": {"type": "Union", "content": {"items": [{"nodeId": "140097399396992"}, {"nodeId": "N"}]}}, "140097399396992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399397216": {"type": "Union", "content": {"items": [{"nodeId": "140097432638560"}, {"nodeId": "N"}]}}, "140097432638560": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140097399397552": {"type": "Union", "content": {"items": [{"nodeId": "140097399397440"}, {"nodeId": "N"}]}}, "140097399397440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399397776": {"type": "Union", "content": {"items": [{"nodeId": "140097399397664"}, {"nodeId": "N"}]}}, "140097399397664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403360576"}}}, "140097399397888": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399398112": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097399398336": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399398448": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399398560": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399398672": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399398896": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097399398784"}]}, {"nodeId": "N"}]}}, "140097399398784": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097415603904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097399399008"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399399232"}, {"nodeId": "140097399399456"}, {"nodeId": "140097399399680"}, {"nodeId": "140097399399904"}, {"nodeId": "140097399400016"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097399400352"}, {"nodeId": "140097399400576"}, {"nodeId": "140097399400912"}, {"nodeId": "140097399401024"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499819424", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097399401360"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "140097399401248"}, {"nodeId": "140097399401472"}, {"nodeId": "140097399401696"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140097399399008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399399232": {"type": "Union", "content": {"items": [{"nodeId": "140097399399120"}, {"nodeId": "N"}]}}, "140097399399120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399399456": {"type": "Union", "content": {"items": [{"nodeId": "140097399399344"}, {"nodeId": "N"}]}}, "140097399399344": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399399680": {"type": "Union", "content": {"items": [{"nodeId": "140097399399568"}, {"nodeId": "N"}]}}, "140097399399568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399399904": {"type": "Union", "content": {"items": [{"nodeId": "140097399399792"}, {"nodeId": "N"}]}}, "140097399399792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399400016": {"type": "Union", "content": {"items": [{"nodeId": "140097432639680"}, {"nodeId": "N"}]}}, "140097432639680": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140097399400352": {"type": "Union", "content": {"items": [{"nodeId": "140097399400240"}, {"nodeId": "N"}]}}, "140097399400240": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399400576": {"type": "Union", "content": {"items": [{"nodeId": "140097399400464"}, {"nodeId": "N"}]}}, "140097399400464": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403360576"}}}, "140097399400912": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097399401024": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097399401360": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097399401248": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399401472": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399401696": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097399401584"}]}, {"nodeId": "N"}]}}, "140097399401584": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097415604352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097399401920"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399402144"}, {"nodeId": "140097399402368"}, {"nodeId": "140097399402592"}, {"nodeId": "140097399402816"}, {"nodeId": "140097399402928"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097399403264"}, {"nodeId": "140097399403488"}, {"nodeId": "140097399403600"}, {"nodeId": "140097399403824"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499819424", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097399403936"}, {"nodeId": "140097399404048"}, {"nodeId": "140097399404160"}, {"nodeId": "140097399404272"}, {"nodeId": "140097399404384"}, {"nodeId": "140097399404608"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140097399401920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399402144": {"type": "Union", "content": {"items": [{"nodeId": "140097399402032"}, {"nodeId": "N"}]}}, "140097399402032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399402368": {"type": "Union", "content": {"items": [{"nodeId": "140097399402256"}, {"nodeId": "N"}]}}, "140097399402256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399402592": {"type": "Union", "content": {"items": [{"nodeId": "140097399402480"}, {"nodeId": "N"}]}}, "140097399402480": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399402816": {"type": "Union", "content": {"items": [{"nodeId": "140097399402704"}, {"nodeId": "N"}]}}, "140097399402704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399402928": {"type": "Union", "content": {"items": [{"nodeId": "140097432640128"}, {"nodeId": "N"}]}}, "140097432640128": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140097399403264": {"type": "Union", "content": {"items": [{"nodeId": "140097399403152"}, {"nodeId": "N"}]}}, "140097399403152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399403488": {"type": "Union", "content": {"items": [{"nodeId": "140097399403376"}, {"nodeId": "N"}]}}, "140097399403376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403360576"}}}, "140097399403600": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399403824": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097399403936": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399404048": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399404160": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399404272": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399404384": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399404608": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097399404496"}]}, {"nodeId": "N"}]}}, "140097399404496": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097416134720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}], "returnType": {"nodeId": "140097399404720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399404720": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097416135168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}, {"nodeId": "140097399404832"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "140097399404832": {"type": "Union", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "N"}]}}, "140097416135616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}, {"nodeId": "140097399404944"}, {"nodeId": "140097399405056"}], "returnType": {"nodeId": "140097399405280"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}}, "140097399404944": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407723904"}, {"nodeId": "N"}]}}, "140097399405056": {"type": "Union", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "N"}]}}, "140097399405280": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407723904"}, {"nodeId": ".1.140097407723904"}]}}, "140097416136064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}}, "140097416136512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097416136960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097416137408": {"type": "Function", "content": {"typeVars": [".0.140097416137408"], "argTypes": [{"nodeId": ".0.140097416137408"}], "returnType": {"nodeId": ".0.140097416137408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097416137408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}, "def": "140097416137408", "variance": "INVARIANT"}}, "140097416137856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}, {"nodeId": "140097399405504"}, {"nodeId": "140097399405616"}, {"nodeId": "140097399405728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097399405504": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097399405616": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097399405728": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097416138304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140097445474400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403407520"}], "returnType": {"nodeId": "140097394793536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394793536": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097403407872": {"type": "Concrete", "content": {"module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097361022528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365752992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361068320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361068544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361068768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361068992"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499823296"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499823296"}]}], "isAbstract": false}}, "140097361022528": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365752992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394795328"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394795328": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097361068320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394795216"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394795216": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097361068544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394795552"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394795552": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097361068768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394795888"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394795888": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097361068992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394796000"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394796000": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097403408224": {"type": "Concrete", "content": {"module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097361024992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361069440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361071680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361071904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361072128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361072352"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097361024992": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097361069440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394797456"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394797456": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097361071680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394797792"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394797792": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097361071904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394798128"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394798128": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097361072128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394798240"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394798240": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097361072352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394798352"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394798352": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097403408576": {"type": "Concrete", "content": {"module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097361026896"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445640480"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361074144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097361026896": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097445640480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097394800816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}}, "140097394800816": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}]}}, "140097361074144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394801824"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394801824": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}]}}, "140097462524864": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097462525568": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "content": {"name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357496384"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462525216"}], "isAbstract": true}}, "140097357496384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525568"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097462525920": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445771104"}, "name": "is_package"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445771552"}, "name": "get_code"}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357315008"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445772448"}, "name": "exec_module"}}, {"kind": "Variable", "content": {"name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357314560"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462525216"}], "isAbstract": true}}, "140097445771104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525920"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097445771552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525920"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395179696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097395179696": {"type": "Union", "content": {"items": [{"nodeId": "140097407713696"}, {"nodeId": "N"}]}}, "140097357315008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525920"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395179808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097395179808": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097445772448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525920"}, {"nodeId": "140097407715104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140097357314560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097395179920"}, {"nodeId": "140097395180144"}], "returnType": {"nodeId": "140097407713696"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}}, "140097395179920": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097428308736"}, {"nodeId": "140097402966560"}, {"nodeId": "140097402967264"}, {"nodeId": "140097402966912"}]}}, "140097395180144": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097395180032"}]}}, "140097395180032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097429060544": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097403405760", "args": [{"nodeId": "140097428308736"}]}]}}, "140097462526272": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357313216"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462525920"}], "isAbstract": true}}, "140097357313216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526272"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097462526624": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462371040"}, "name": "path_mtime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462371488"}, "name": "set_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462371936"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462372384"}, "name": "path_stats"}}], "typeVars": [], "bases": [{"nodeId": "140097462525568"}, {"nodeId": "140097462526272"}], "isAbstract": true}}, "140097462371040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526624"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097462371488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526624"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}}, "140097462371936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526624"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395180256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097395180256": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097462372384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526624"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097462526976": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462372832"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462373280"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462373728"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140097462524864"}], "isAbstract": false}}, "140097462372832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526976"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395180480"}], "returnType": {"nodeId": "140097395180592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140097395180480": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097395180592": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097462373280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462373728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526976"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395180704"}, {"nodeId": "140097395180816"}], "returnType": {"nodeId": "140097395180928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140097395180704": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097395180816": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097395180928": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097462527328": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462374176"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462374624"}, "name": "find_loader"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462375072"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462375520"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140097462524864"}], "isAbstract": false}}, "140097462374176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527328"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395181040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097395181040": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097462374624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527328"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395181376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097395181376": {"type": "Tuple", "content": {"items": [{"nodeId": "140097395181152"}, {"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}]}}, "140097395181152": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097462375072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462375520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527328"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395181488"}], "returnType": {"nodeId": "140097395181600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}}, "140097395181488": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097395181600": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097462527680": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462375968"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462376416"}, "name": "get_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462376864"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462377312"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140097462525568"}, {"nodeId": "140097462526272"}], "isAbstract": true}}, "140097462375968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527680"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140097462376416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527680"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097462376864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527680"}, {"nodeId": "140097395181712"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140097395181712": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097462377312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527680"}, {"nodeId": "140097395181824"}], "returnType": {"nodeId": "140097407715104"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140097395181824": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097462528032": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "content": {"name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357308288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357307616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357308064"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": true}}, "140097357308736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528032"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097407455424", "args": [{"nodeId": "140097428309088"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140097357308288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528032"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140097357307616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528032"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097357308064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528032"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462528384": {"type": "Protocol", "content": {"module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "content": {"name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357306720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357306272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357306048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357305376"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097394917072"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097357305824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357305152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357304928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357304704"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}}, "140097357306720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097357306272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097357306048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097462528384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097357305376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097462528384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}}, "140097394917072": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097462382240"}, {"nodeId": "140097462382688"}, {"nodeId": "140097462383136"}, {"nodeId": "140097462383584"}, {"nodeId": "140097462384032"}, {"nodeId": "140097462384480"}, {"nodeId": "140097462384928"}]}}, "140097462382240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097395182048"}, {"nodeId": "140097499822944"}, {"nodeId": "140097395182160"}, {"nodeId": "140097395182272"}, {"nodeId": "140097395182384"}], "returnType": {"nodeId": "140097462519936"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097395182048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420295888"}}}, "140097420295888": {"type": "Union", "content": {"items": [{"nodeId": "140097420293424"}, {"nodeId": "140097420294992"}, {"nodeId": "140097420295776"}]}}, "140097420293424": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420295328"}}}, "140097420295328": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097420294992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420294768"}}}, "140097420294768": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097420295776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420292752"}}}, "140097420292752": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097395182160": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395182272": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395182384": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097462382688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097395182496"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097407729184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097395182496": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419823472"}}}, "140097419823472": {"type": "Union", "content": {"items": [{"nodeId": "140097419823808"}, {"nodeId": "140097419823920"}, {"nodeId": "140097419824816"}]}}, "140097419823808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419826720"}}}, "140097419826720": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097419823920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419822352"}}}, "140097419822352": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097419824816": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419823360"}}}, "140097419823360": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097462383136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097395182720"}, {"nodeId": "140097395183056"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097462518880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097395182720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419826720"}}}, "140097395183056": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140097462383584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097395183168"}, {"nodeId": "140097395183504"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097462518528"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097395183168": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419823360"}}}, "140097395183504": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140097462384032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097395183616"}, {"nodeId": "140097395183952"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097462518176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097395183616": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419822352"}}}, "140097395183952": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140097462384480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097395184064"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097407455776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097395184064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419823472"}}}, "140097462384928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097395184176"}, {"nodeId": "140097395184288"}, {"nodeId": "140097395184400"}], "returnType": {"nodeId": "140097407455424", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097395184176": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395184288": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395184400": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097357305824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097357305152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097462528384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097357304928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097357304704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097395184624"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140097395184624": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097462528736": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "content": {"name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357303136"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462453408"}, "name": "open_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462453856"}, "name": "resource_path"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462454304"}, "name": "is_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462454752"}, "name": "contents"}}], "typeVars": [], "bases": [{"nodeId": "140097462528032"}], "isAbstract": true}}, "140097357303136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528736"}], "returnType": {"nodeId": "140097462528384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462453408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097462518176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140097462453856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528736"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140097462454304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097462454752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528736"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403409984": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357258016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357257120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357256672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357256224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357255776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357255552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357255104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357252192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357253536"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462526976"}, {"nodeId": "140097462525920"}], "isAbstract": false}}, "140097357258016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394914048"}], "returnType": {"nodeId": "140097394914160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140097394914048": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394914160": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097357257120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394914272"}, {"nodeId": "140097394914384"}], "returnType": {"nodeId": "140097394914496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140097394914272": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394914384": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097394914496": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097357256672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357256224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097407715104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357255776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357255552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357255104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715104"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140097357252192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462524160"}], "returnType": {"nodeId": "140097394914608"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140097394914608": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097357253536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140097403410336": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357251520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357251968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357251072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357250624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357233536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357233088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357232640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357231520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357231296"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462526976"}, {"nodeId": "140097462525920"}], "isAbstract": false}}, "140097357251520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394914720"}], "returnType": {"nodeId": "140097394914832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140097394914720": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394914832": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097357251968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394914944"}, {"nodeId": "140097394915056"}], "returnType": {"nodeId": "140097394915168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140097394914944": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394915056": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097394915168": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097357251072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357250624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097407715104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357233536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357233088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357232640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715104"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}}, "140097357231520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462524160"}], "returnType": {"nodeId": "140097394915280"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140097394915280": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097357231296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140097403410688": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357230176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357229728"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462526976"}], "isAbstract": false}}, "140097357230176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394915392"}], "returnType": {"nodeId": "140097394915504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140097394915392": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394915504": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097357229728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394915616"}, {"nodeId": "140097394915728"}], "returnType": {"nodeId": "140097394915840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140097394915616": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394915728": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097394915840": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097462524512": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "content": {"name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357228160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357227712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357228608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357227264"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097357228160": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}}, "140097357227712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403409280"}], "returnType": {"nodeId": "140097499815904", "args": [{"nodeId": "140097462523808"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}}, "140097403409280": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403700048"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441147456"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356896672"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097403700048": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097441147456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403409280"}, {"nodeId": "140097394910912"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}}, "140097394910912": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097356896672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403409280"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462523808": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441149696"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441150144"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441150592"}, "name": "locate_file"}}], "typeVars": [], "bases": [{"nodeId": "140097462523456"}], "isAbstract": false}}, "140097441149696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523808"}, {"nodeId": "140097403415968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097403415968": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432984192"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432984640"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432985088"}, "name": "__exit__"}}, {"kind": "Variable", "content": {"name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097365329056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432985984"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432986432"}, "name": "chmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432989120"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432989568"}, "name": "glob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432990016"}, "name": "rglob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432990464"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432990912"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432991360"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432991808"}, "name": "is_socket"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432992256"}, "name": "is_fifo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432992704"}, "name": "is_block_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432993152"}, "name": "is_char_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433027072"}, "name": "iterdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433027520"}, "name": "lchmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433027968"}, "name": "lstat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433028416"}, "name": "mkdir"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399625584"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433032000"}, "name": "owner"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433032448"}, "name": "group"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433032896"}, "name": "is_mount"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433033344"}, "name": "readlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433033792"}, "name": "rename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433034240"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433035584"}, "name": "resolve"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433036032"}, "name": "rmdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433036480"}, "name": "symlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433036928"}, "name": "hardlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433037376"}, "name": "touch"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433037824"}, "name": "unlink"}}, {"kind": "Variable", "content": {"name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097365333984"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433039168"}, "name": "absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433039616"}, "name": "expanduser"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433040064"}, "name": "read_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433040512"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433040960"}, "name": "samefile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433041408"}, "name": "write_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433041856"}, "name": "write_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432485952"}, "name": "link_to"}}], "typeVars": [], "bases": [{"nodeId": "140097403414912"}], "isAbstract": false}}, "140097432984192": {"type": "Function", "content": {"typeVars": [".0.140097432984192"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097399628160"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097432984192"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, "140097399628160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, ".0.140097432984192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097432984192", "variance": "INVARIANT"}}, "140097432984640": {"type": "Function", "content": {"typeVars": [".0.140097432984640"], "argTypes": [{"nodeId": ".0.140097432984640"}], "returnType": {"nodeId": ".0.140097432984640"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097432984640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097432984640", "variance": "INVARIANT"}}, "140097432985088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399628384"}, {"nodeId": "140097399628496"}, {"nodeId": "140097399628608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097399628384": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097399628496": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097399628608": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097365329056": {"type": "Function", "content": {"typeVars": [".0.140097365329056"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140097365329056"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140097365329056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097365329056", "variance": "INVARIANT"}}, "140097432985984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097399628720"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140097399628720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403598464"}}}, "140097432986432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}}, "140097432989120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432989568": {"type": "Function", "content": {"typeVars": [".0.140097432989568"], "argTypes": [{"nodeId": ".0.140097432989568"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": ".0.140097432989568"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140097432989568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097432989568", "variance": "INVARIANT"}}, "140097432990016": {"type": "Function", "content": {"typeVars": [".0.140097432990016"], "argTypes": [{"nodeId": ".0.140097432990016"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": ".0.140097432990016"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140097432990016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097432990016", "variance": "INVARIANT"}}, "140097432990464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432990912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432991360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432991808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432992256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432992704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432993152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097433027072": {"type": "Function", "content": {"typeVars": [".0.140097433027072"], "argTypes": [{"nodeId": ".0.140097433027072"}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": ".0.140097433027072"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097433027072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097433027072", "variance": "INVARIANT"}}, "140097433027520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}}, "140097433027968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097399628832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399628832": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403598464"}}}, "140097433028416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}}, "140097399625584": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097433028864"}, {"nodeId": "140097433029312"}, {"nodeId": "140097433029760"}, {"nodeId": "140097433030208"}, {"nodeId": "140097433030656"}, {"nodeId": "140097433031104"}, {"nodeId": "140097433031552"}]}}, "140097433028864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399629056"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399629168"}, {"nodeId": "140097399629280"}, {"nodeId": "140097399629392"}], "returnType": {"nodeId": "140097462519936"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097399629056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420295888"}}}, "140097399629168": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399629280": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399629392": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097433029312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399629504"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097407729184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097399629504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419823472"}}}, "140097433029760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399629728"}, {"nodeId": "140097399630064"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097462518880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097399629728": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419826720"}}}, "140097399630064": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140097433030208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399630176"}, {"nodeId": "140097399630512"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097462518528"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097399630176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419823360"}}}, "140097399630512": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140097433030656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399630624"}, {"nodeId": "140097399630960"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097462518176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097399630624": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419822352"}}}, "140097399630960": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140097433031104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399631072"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097407455776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097399631072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419823472"}}}, "140097433031552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399631184"}, {"nodeId": "140097399631296"}, {"nodeId": "140097399631408"}], "returnType": {"nodeId": "140097407455424", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097399631184": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399631296": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399631408": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097433032000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097433032448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097433032896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097433033344": {"type": "Function", "content": {"typeVars": [".0.140097433033344"], "argTypes": [{"nodeId": ".0.140097433033344"}], "returnType": {"nodeId": ".0.140097433033344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097433033344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097433033344", "variance": "INVARIANT"}}, "140097433033792": {"type": "Function", "content": {"typeVars": [".0.140097433033792"], "argTypes": [{"nodeId": ".0.140097433033792"}, {"nodeId": "140097399631632"}], "returnType": {"nodeId": ".0.140097433033792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140097433033792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097433033792", "variance": "INVARIANT"}}, "140097399631632": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097403414912"}]}}, "140097403414912": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "content": {"name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365237248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365236800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365236576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365236352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365236128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365235904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365235680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365235456"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432415232"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432415680"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432416128"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432416576"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432417024"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432417472"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432417920"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432418368"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432418816"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432419264"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432419712"}, "name": "as_posix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432977472"}, "name": "as_uri"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432977920"}, "name": "is_absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432978368"}, "name": "is_reserved"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432978816"}, "name": "is_relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432979712"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432980160"}, "name": "relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432980608"}, "name": "with_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432981056"}, "name": "with_stem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432981504"}, "name": "with_suffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432981952"}, "name": "joinpath"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365244416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365230752"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432983296"}, "name": "__class_getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097403405760", "args": [{"nodeId": "140097428308736"}]}], "isAbstract": false}}, "140097365237248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365236800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365236576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365236352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365236128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365235904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365235680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365235456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432415232": {"type": "Function", "content": {"typeVars": [".0.140097432415232"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097399627264"}], "returnType": {"nodeId": ".0.140097432415232"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "140097399627264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, ".0.140097432415232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432415232", "variance": "INVARIANT"}}, "140097432415680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097432416128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432416576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}, {"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097432417024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}, {"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097432417472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}, {"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097432417920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}, {"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097432418368": {"type": "Function", "content": {"typeVars": [".0.140097432418368"], "argTypes": [{"nodeId": ".0.140097432418368"}, {"nodeId": "140097399627376"}], "returnType": {"nodeId": ".0.140097432418368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432418368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432418368", "variance": "INVARIANT"}}, "140097399627376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097432418816": {"type": "Function", "content": {"typeVars": [".0.140097432418816"], "argTypes": [{"nodeId": ".0.140097432418816"}, {"nodeId": "140097399627488"}], "returnType": {"nodeId": ".0.140097432418816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432418816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432418816", "variance": "INVARIANT"}}, "140097399627488": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097432419264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432419712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432977472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432977920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432978368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432978816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}, {"nodeId": "140097399627600"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, "140097399627600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097432979712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}}, "140097432980160": {"type": "Function", "content": {"typeVars": [".0.140097432980160"], "argTypes": [{"nodeId": ".0.140097432980160"}, {"nodeId": "140097399627712"}], "returnType": {"nodeId": ".0.140097432980160"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140097432980160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432980160", "variance": "INVARIANT"}}, "140097399627712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097432980608": {"type": "Function", "content": {"typeVars": [".0.140097432980608"], "argTypes": [{"nodeId": ".0.140097432980608"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097432980608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, ".0.140097432980608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432980608", "variance": "INVARIANT"}}, "140097432981056": {"type": "Function", "content": {"typeVars": [".0.140097432981056"], "argTypes": [{"nodeId": ".0.140097432981056"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097432981056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}}, ".0.140097432981056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432981056", "variance": "INVARIANT"}}, "140097432981504": {"type": "Function", "content": {"typeVars": [".0.140097432981504"], "argTypes": [{"nodeId": ".0.140097432981504"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097432981504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}}, ".0.140097432981504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432981504", "variance": "INVARIANT"}}, "140097432981952": {"type": "Function", "content": {"typeVars": [".0.140097432981952"], "argTypes": [{"nodeId": ".0.140097432981952"}, {"nodeId": "140097399627824"}], "returnType": {"nodeId": ".0.140097432981952"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140097432981952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432981952", "variance": "INVARIANT"}}, "140097399627824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097365244416": {"type": "Function", "content": {"typeVars": [".0.140097365244416"], "argTypes": [{"nodeId": ".0.140097365244416"}], "returnType": {"nodeId": "140097499819776", "args": [{"nodeId": ".0.140097365244416"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097365244416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097365244416", "variance": "INVARIANT"}}, "140097365230752": {"type": "Function", "content": {"typeVars": [".0.140097365230752"], "argTypes": [{"nodeId": ".0.140097365230752"}], "returnType": {"nodeId": ".0.140097365230752"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097365230752": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097365230752", "variance": "INVARIANT"}}, "140097432983296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140097433034240": {"type": "Function", "content": {"typeVars": [".0.140097433034240"], "argTypes": [{"nodeId": ".0.140097433034240"}, {"nodeId": "140097399631744"}], "returnType": {"nodeId": ".0.140097433034240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140097433034240": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097433034240", "variance": "INVARIANT"}}, "140097399631744": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097403414912"}]}}, "140097433035584": {"type": "Function", "content": {"typeVars": [".0.140097433035584"], "argTypes": [{"nodeId": ".0.140097433035584"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": ".0.140097433035584"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}}, ".0.140097433035584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097433035584", "variance": "INVARIANT"}}, "140097433036032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097433036480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399631856"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}}, "140097399631856": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097433036928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399631968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140097399631968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097433037376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}}, "140097433037824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}}, "140097365333984": {"type": "Function", "content": {"typeVars": [".0.140097365333984"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140097365333984"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140097365333984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097365333984", "variance": "INVARIANT"}}, "140097433039168": {"type": "Function", "content": {"typeVars": [".0.140097433039168"], "argTypes": [{"nodeId": ".0.140097433039168"}], "returnType": {"nodeId": ".0.140097433039168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097433039168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097433039168", "variance": "INVARIANT"}}, "140097433039616": {"type": "Function", "content": {"typeVars": [".0.140097433039616"], "argTypes": [{"nodeId": ".0.140097433039616"}], "returnType": {"nodeId": ".0.140097433039616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097433039616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097433039616", "variance": "INVARIANT"}}, "140097433040064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097433040512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399632080"}, {"nodeId": "140097399632192"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140097399632080": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399632192": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097433040960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399632304"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}}, "140097399632304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097433041408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140097433041856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097428308736"}, {"nodeId": "140097399632416"}, {"nodeId": "140097399632528"}, {"nodeId": "140097399632640"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}}, "140097399632416": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399632528": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399632640": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097432485952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399632752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140097399632752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097441150144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523808"}, {"nodeId": "140097394911136"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140097394911136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097441150592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523808"}, {"nodeId": "140097394911248"}], "returnType": {"nodeId": "140097403405760", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097394911248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097462523456": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097356900032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097356899136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097356898912"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097394909680"}, "items": [{"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "discover"}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097356898688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356898016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356898464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356897792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356897568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356897344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356896224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": true}}, "140097356900032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097394910016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140097394910016": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097356899136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}, {"nodeId": "140097394910128"}], "returnType": {"nodeId": "140097403405760", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097394910128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097356898912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097462523456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}}, "140097394909680": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441142528"}, {"nodeId": "140097441142976"}]}}, "140097441142528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097403409280"}], "returnType": {"nodeId": "140097499815904", "args": [{"nodeId": "140097462523456"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}}, "140097441142976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "140097394910352"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499815904", "args": [{"nodeId": "140097462523456"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}}, "140097394910352": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097356898688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394910576"}], "returnType": {"nodeId": "140097462523808"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}}, "140097394910576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097356898016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}], "returnType": {"nodeId": "140097462520640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462520640": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424592000"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424592448"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424592896"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424593344"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424593792"}, "name": "get_all"}}, {"kind": "Variable", "content": {"name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356973216"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}}, "140097424592000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520640"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097424592448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520640"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097424592896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520640"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097424593344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520640"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097424593792": {"type": "Function", "content": {"typeVars": [".-1.140097424593792"], "argTypes": [{"nodeId": "140097462520640"}, {"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424593792"}], "returnType": {"nodeId": "140097394907552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, ".-1.140097424593792": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424593792", "variance": "INVARIANT"}}, "140097394907552": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.140097424593792"}]}}, "140097356973216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520640"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097394907664"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394907664": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}]}}, "140097356898464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}], "returnType": {"nodeId": "140097462522400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462522400": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416149504"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416149952"}, "name": "select"}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356924512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356926528"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097415895792"}]}], "isAbstract": false}}, "140097416149504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462522400"}, {"nodeId": "140097394908784"}], "returnType": {"nodeId": "140097394909568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097394908784": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097394909568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403367296"}}}, "140097403367296": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097416149952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462522400"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097462522400"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140097356924512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462522400"}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097356926528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462522400"}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097415895792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403367296"}}}, "140097356897792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097356897568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}], "returnType": {"nodeId": "140097394910688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394910688": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097403417376"}]}, {"nodeId": "N"}]}}, "140097403417376": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441139392"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441139840"}, "name": "read_binary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441140288"}, "name": "locate"}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403367520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403365728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097462523456"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403415264"}], "isAbstract": false}}, "140097441139392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417376"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140097441139840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417376"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441140288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417376"}], "returnType": {"nodeId": "140097403405760", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403367520": {"type": "Union", "content": {"items": [{"nodeId": "140097462523104"}, {"nodeId": "N"}]}}, "140097462523104": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441140736"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097441140736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523104"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140097403365728": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097403415264": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403414912"}], "isAbstract": false}}, "140097356897344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}], "returnType": {"nodeId": "140097394910800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394910800": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097356896224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097357228608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394915952"}, {"nodeId": "140097394916064"}], "returnType": {"nodeId": "140097394916176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140097394915952": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394916064": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097394916176": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097357227264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394916288"}], "returnType": {"nodeId": "140097394916400"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140097394916288": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394916400": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097403411040": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449150944"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357226592"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462527328"}], "isAbstract": false}}, "140097449150944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403411040"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394916624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}}, "140097394916624": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}]}}, "140097357226592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097394916848"}], "returnType": {"nodeId": "140097394835520"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}}, "140097394916848": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}]}}, "140097394835520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097462527328"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097403411392": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449151840"}, "name": "set_data"}}], "typeVars": [], "bases": [{"nodeId": "140097462527680"}, {"nodeId": "140097462526624"}], "isAbstract": false}}, "140097449151840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403411392"}, {"nodeId": "140097428308736"}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}}, "140097403411744": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "140097462527680"}, {"nodeId": "140097462526624"}], "isAbstract": false}}, "140097403412096": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449152288"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449152736"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449153184"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449153632"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449154080"}, "name": "exec_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449154528"}, "name": "get_code"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449154976"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140097462526272"}], "isAbstract": false}}, "140097449152288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403412096"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}}, "140097449152736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403412096"}, {"nodeId": "140097394916960"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140097394916960": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097449153184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403412096"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097449153632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403412096"}, {"nodeId": "140097462524160"}], "returnType": {"nodeId": "140097407715104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140097449154080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403412096"}, {"nodeId": "140097407715104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140097449154528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403412096"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097449154976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403412096"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407285408": {"type": "Concrete", "content": {"module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428311904"}], "isAbstract": false}}, "140097407285760": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097419742016": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449162144"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449162592"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449163040"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["close", "seek", "write"]}}, "140097449162144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419742016"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097449162592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419742016"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097449163040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419742016"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419742368": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449163488"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449163936"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449164384"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["close", "read", "seek"]}}, "140097449163488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419742368"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097449163936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419742368"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097449164384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419742368"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403412448": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "140097419742016"}, {"nodeId": "140097419742368"}], "protocolMembers": ["close", "read", "seek", "write"]}}, "140097419742720": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449558304"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, "140097449558304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419742720"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097390632784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140097390632784": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}]}}, "140097419743072": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449558752"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, "140097449558752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419743072"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097390633008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140097390633008": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097419743424": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449559200"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, "140097449559200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419743424"}, {"nodeId": "140097419742368"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097403414208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140097403414208": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097419742368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449730656"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449731104"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449731552"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449732000"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449732448"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449732896"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449733344"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449733792"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449734240"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449734688"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140097419744832"}], "isAbstract": false}}, "140097449730656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}, {"nodeId": "140097419742368"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140097449731104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}}, "140097449731552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}, {"nodeId": "140097390639168"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}}, "140097390639168": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097449732000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}, {"nodeId": "140097390639280"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}}, "140097390639280": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097449732448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449732896": {"type": "Function", "content": {"typeVars": [".0.140097449732896"], "argTypes": [{"nodeId": ".0.140097449732896"}], "returnType": {"nodeId": ".0.140097449732896"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097449732896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414208"}, "def": "140097449732896", "variance": "INVARIANT"}}, "140097449733344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}, {"nodeId": "140097390639504"}, {"nodeId": "140097390639616"}, {"nodeId": "140097390639728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097390639504": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097390639616": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097390639728": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097449733792": {"type": "Function", "content": {"typeVars": [".0.140097449733792"], "argTypes": [{"nodeId": ".0.140097449733792"}], "returnType": {"nodeId": ".0.140097449733792"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097449733792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414208"}, "def": "140097449733792", "variance": "INVARIANT"}}, "140097449734240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449734688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395483232"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097395483232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097419744832": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449571744"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449572192"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097449571744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419744832"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097390637040"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140097390637040": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}]}}, "140097449572192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419744832"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097390637264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140097390637264": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097419743776": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449559648"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, "140097449559648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419743776"}, {"nodeId": "140097419742016"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097403413856"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140097403413856": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097419742016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449727520"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449727968"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449728416"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449728864"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449729312"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449729760"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449730208"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140097419744832"}], "isAbstract": false}}, "140097449727520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413856"}, {"nodeId": "140097419742016"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140097449727968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413856"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}}, "140097449728416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413856"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140097449728864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449729312": {"type": "Function", "content": {"typeVars": [".0.140097449729312"], "argTypes": [{"nodeId": ".0.140097449729312"}], "returnType": {"nodeId": ".0.140097449729312"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097449729312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403413856"}, "def": "140097449729312", "variance": "INVARIANT"}}, "140097449729760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413856"}, {"nodeId": "140097390638608"}, {"nodeId": "140097390638720"}, {"nodeId": "140097390638832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097390638608": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097390638720": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097390638832": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097449730208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413856"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395482784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097395482784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097419744128": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449560096"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, "140097449560096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419744128"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097419745184"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140097419745184": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449572640"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097344522272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449573536"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449573984"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449722144"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": true}}, "140097449572640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745184"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140097344522272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745184"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140097449573536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449573984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745184"}], "returnType": {"nodeId": "140097390637376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390637376": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097449722144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745184"}, {"nodeId": "140097390637488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140097390637488": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097419744480": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449560544"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, "140097449560544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419744480"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097419745536"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140097403412800": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097344598560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097344595424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097344595200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097344594304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097344594752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097344592960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449563680"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}], "isAbstract": false}}, "140097344598560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097390633232"}], "returnType": {"nodeId": "140097419742720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390633232": {"type": "Tuple", "content": {"items": [{"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}]}}, "140097344595424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097390633344"}], "returnType": {"nodeId": "140097419743072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390633344": {"type": "Tuple", "content": {"items": [{"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}]}}, "140097344595200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097390633456"}], "returnType": {"nodeId": "140097419743424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390633456": {"type": "Tuple", "content": {"items": [{"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}]}}, "140097344594304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097390633568"}], "returnType": {"nodeId": "140097419743776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390633568": {"type": "Tuple", "content": {"items": [{"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}]}}, "140097344594752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097390633680"}], "returnType": {"nodeId": "140097419744128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390633680": {"type": "Tuple", "content": {"items": [{"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}]}}, "140097344592960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097390633792"}], "returnType": {"nodeId": "140097419744480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390633792": {"type": "Tuple", "content": {"items": [{"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}]}}, "140097449563680": {"type": "Function", "content": {"typeVars": [".0.140097449563680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097390634016"}, {"nodeId": "140097390634128"}, {"nodeId": "140097390634240"}, {"nodeId": "140097390634352"}, {"nodeId": "140097390634464"}, {"nodeId": "140097390634576"}], "returnType": {"nodeId": ".0.140097449563680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name", "_is_text_encoding"]}}, "140097390634016": {"type": "Union", "content": {"items": [{"nodeId": "140097419743424"}, {"nodeId": "N"}]}}, "140097390634128": {"type": "Union", "content": {"items": [{"nodeId": "140097419743776"}, {"nodeId": "N"}]}}, "140097390634240": {"type": "Union", "content": {"items": [{"nodeId": "140097419744128"}, {"nodeId": "N"}]}}, "140097390634352": {"type": "Union", "content": {"items": [{"nodeId": "140097419744480"}, {"nodeId": "N"}]}}, "140097390634464": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097390634576": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, ".0.140097449563680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097390632560"}, "def": "140097449563680", "variance": "INVARIANT"}}, "140097390632560": {"type": "Tuple", "content": {"items": [{"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}]}}, "140097403413152": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449724832"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097344520480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449725728"}, "name": "encode"}}], "typeVars": [], "bases": [{"nodeId": "140097419745184"}], "isAbstract": true}}, "140097449724832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413152"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140097344520480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413152"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097390638160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140097390638160": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}]}}, "140097449725728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413152"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140097403413504": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428309088"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449726176"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097344502720"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449727072"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140097419745536"}], "isAbstract": true}}, "140097449726176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413504"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140097344502720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413504"}, {"nodeId": "140097407466688"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097390638384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140097390638384": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097449727072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413504"}, {"nodeId": "140097407466688"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140097403414560": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403412448"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449735136"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449735584"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449736032"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449736480"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449736928"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449737376"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449737824"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440792864"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440793312"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440793760"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440794208"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440794656"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440795104"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440795552"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440796000"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440796448"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440796896"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440797344"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440797792"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440798240"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440798688"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440799136"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140097407456128"}], "isAbstract": false}}, "140097449735136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097403412448"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}}, "140097449735584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140097449736032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097390640064"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140097390640064": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097449736480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097390640176"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140097390640176": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097449736928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449737376": {"type": "Function", "content": {"typeVars": [".0.140097449737376"], "argTypes": [{"nodeId": ".0.140097449737376"}], "returnType": {"nodeId": ".0.140097449737376"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097449737376": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414560"}, "def": "140097449737376", "variance": "INVARIANT"}}, "140097449737824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140097440792864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140097440793312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440793760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140097440794208": {"type": "Function", "content": {"typeVars": [".0.140097440794208"], "argTypes": [{"nodeId": ".0.140097440794208"}], "returnType": {"nodeId": ".0.140097440794208"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097440794208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414560"}, "def": "140097440794208", "variance": "INVARIANT"}}, "140097440794656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097390640400"}, {"nodeId": "140097390640512"}, {"nodeId": "140097390640624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097390640400": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097390640512": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097390640624": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097440795104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097440795552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440796000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440796448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440796896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440797344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440797792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097390640848"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140097390640848": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097440798240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440798688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440799136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419745888": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440799584"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440800032"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440800480"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440800928"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440801376"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440801824"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440802272"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440802720"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440803168"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440803616"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440804064"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440804512"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440804960"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440805408"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440805856"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440806304"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440806752"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440807200"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440807648"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440808096"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440808544"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440940320"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140097407455776"}], "isAbstract": false}}, "140097440799584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097403412448"}, {"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"]}}, "140097440800032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140097440800480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097390640960"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140097390640960": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097440800928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097390903360"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309088"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140097390903360": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097440801376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440801824": {"type": "Function", "content": {"typeVars": [".0.140097440801824"], "argTypes": [{"nodeId": ".0.140097440801824"}], "returnType": {"nodeId": ".0.140097440801824"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097440801824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097419745888"}, "def": "140097440801824", "variance": "INVARIANT"}}, "140097440802272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140097440802720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428309088"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140097440803168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440803616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097440804064": {"type": "Function", "content": {"typeVars": [".0.140097440804064"], "argTypes": [{"nodeId": ".0.140097440804064"}], "returnType": {"nodeId": ".0.140097440804064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097440804064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097419745888"}, "def": "140097440804064", "variance": "INVARIANT"}}, "140097440804512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097390903696"}, {"nodeId": "140097390903808"}, {"nodeId": "140097390903920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097390903696": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097390903808": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097390903920": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097440804960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140097440805408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440805856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440806304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440806752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440807200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440807648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097390904032"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140097390904032": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097440808096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440808544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440940320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428533344": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097394840224"}, "name": "__aenter__"}}, {"kind": "Variable", "content": {"name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097353454912"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097428533344"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__aenter__", "__aexit__"]}}, ".1.140097428533344": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428533344", "variance": "COVARIANT"}}, "140097394840224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428533344", "args": [{"nodeId": ".1.140097428533344"}]}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140097428533344"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097353454912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428533344", "args": [{"nodeId": ".1.140097428533344"}]}, {"nodeId": "140097395424976"}, {"nodeId": "140097395425088"}, {"nodeId": "140097395556416"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140097395556528"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140097395424976": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395425088": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395556416": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097395556528": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097428533696": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440943456"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097440943456": {"type": "Function", "content": {"typeVars": [".-1.140097440943456"], "argTypes": [{"nodeId": "140097428533696"}, {"nodeId": ".-1.140097440943456"}], "returnType": {"nodeId": ".-1.140097440943456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140097440943456": {"type": "TypeVar", "content": {"varName": "_F", "values": [], "upperBound": {"nodeId": "140097415606592"}, "def": "140097440943456", "variance": "INVARIANT"}}, "140097415606592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097428534048": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440943904"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097428534048"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415605920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440944352"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140097428534048"}], "bases": [{"nodeId": "140097428532992", "args": [{"nodeId": ".1.140097428534048"}]}, {"nodeId": "140097428533696"}], "isAbstract": false}}, ".1.140097428534048": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428534048", "variance": "COVARIANT"}}, "140097440943904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428534048", "args": [{"nodeId": ".1.140097428534048"}]}, {"nodeId": "140097395476736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140097395476736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097428534048"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097415605920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097428534048"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097440944352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428534048", "args": [{"nodeId": ".1.140097428534048"}]}, {"nodeId": "140097395557088"}, {"nodeId": "140097395557200"}, {"nodeId": "140097395557312"}], "returnType": {"nodeId": "140097395557424"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097395557088": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395557200": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395557312": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097395557424": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097428534400": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440945696"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097440945696": {"type": "Function", "content": {"typeVars": [".-1.140097440945696"], "argTypes": [{"nodeId": "140097428534400"}, {"nodeId": ".-1.140097440945696"}], "returnType": {"nodeId": ".-1.140097440945696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140097440945696": {"type": "TypeVar", "content": {"varName": "_AF", "values": [], "upperBound": {"nodeId": "140097428400704"}, "def": "140097440945696", "variance": "INVARIANT"}}, "140097428400704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097428534752": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440946144"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097428534752"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428404512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440943008"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140097428534752"}], "bases": [{"nodeId": "140097428533344", "args": [{"nodeId": ".1.140097428534752"}]}, {"nodeId": "140097428534400"}], "isAbstract": false}}, ".1.140097428534752": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428534752", "variance": "COVARIANT"}}, "140097440946144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428534752", "args": [{"nodeId": ".1.140097428534752"}]}, {"nodeId": "140097395478080"}, {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140097395478080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499818368", "args": [{"nodeId": ".1.140097428534752"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097428404512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097428534752"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097440943008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428534752", "args": [{"nodeId": ".1.140097428534752"}]}, {"nodeId": "140097395558320"}, {"nodeId": "140097395558432"}, {"nodeId": "140097395558544"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140097395558656"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}}, "140097395558320": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395558432": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395558544": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097395558656": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097428535104": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440948384"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["close"]}}, "140097440948384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428535104"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428535456": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440948832"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440949280"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140097428535456"}], "bases": [{"nodeId": "140097428532992", "args": [{"nodeId": ".1.140097428535456"}]}], "isAbstract": false}}, ".1.140097428535456": {"type": "TypeVar", "content": {"varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "140097428535104"}, "def": "140097428535456", "variance": "INVARIANT"}}, "140097440948832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428535456", "args": [{"nodeId": ".1.140097428535456"}]}, {"nodeId": ".1.140097428535456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140097440949280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428535456", "args": [{"nodeId": ".1.140097428535456"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140097428535808": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440949728"}, "name": "aclose"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["aclose"]}}, "140097440949728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428535808"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428536160": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440950176"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097395479424"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140097428536160"}], "bases": [{"nodeId": "140097428533344", "args": [{"nodeId": ".1.140097428536160"}]}], "isAbstract": false}}, ".1.140097428536160": {"type": "TypeVar", "content": {"varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "140097428535808"}, "def": "140097428536160", "variance": "INVARIANT"}}, "140097440950176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428536160", "args": [{"nodeId": ".1.140097428536160"}]}, {"nodeId": ".1.140097428536160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140097395479424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428536160", "args": [{"nodeId": ".1.140097428536160"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}}, "140097428536512": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440951072"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440951520"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140097428532992", "args": [{"nodeId": "N"}]}], "isAbstract": false}}, "140097440951072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428536512"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}}, "140097440951520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428536512"}, {"nodeId": "140097395559440"}, {"nodeId": "140097395559552"}, {"nodeId": "140097395559664"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097395559440": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395559552": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395559664": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097428536864": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440951968"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440952416"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140097428536864"}], "bases": [{"nodeId": "140097428532992", "args": [{"nodeId": ".1.140097428536864"}]}], "isAbstract": false}}, ".1.140097428536864": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140097403519600"}, "def": "140097428536864", "variance": "INVARIANT"}}, "140097403519600": {"type": "Union", "content": {"items": [{"nodeId": "140097407455424", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097440951968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428536864", "args": [{"nodeId": ".1.140097428536864"}]}, {"nodeId": ".1.140097428536864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}}, "140097440952416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428536864", "args": [{"nodeId": ".1.140097428536864"}]}, {"nodeId": "140097395559776"}, {"nodeId": "140097395559888"}, {"nodeId": "140097395560000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097395559776": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395559888": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395560000": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097419739200": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.140097419739200"}], "bases": [{"nodeId": "140097428536864", "args": [{"nodeId": ".1.140097419739200"}]}], "isAbstract": false}}, ".1.140097419739200": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140097403519600"}, "def": "140097419739200", "variance": "INVARIANT"}}, "140097419739552": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.140097419739552"}], "bases": [{"nodeId": "140097428536864", "args": [{"nodeId": ".1.140097419739552"}]}], "isAbstract": false}}, ".1.140097419739552": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140097403519600"}, "def": "140097419739552", "variance": "INVARIANT"}}, "140097419739904": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440952864"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440953312"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440953760"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440954208"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440954656"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440955104"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440955552"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097440952864": {"type": "Function", "content": {"typeVars": [".-1.140097440952864"], "argTypes": [{"nodeId": "140097419739904"}, {"nodeId": "140097428532992", "args": [{"nodeId": ".-1.140097440952864"}]}], "returnType": {"nodeId": ".-1.140097440952864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140097440952864": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097440952864", "variance": "INVARIANT"}}, "140097440953312": {"type": "Function", "content": {"typeVars": [".-1.140097440953312"], "argTypes": [{"nodeId": "140097419739904"}, {"nodeId": ".-1.140097440953312"}], "returnType": {"nodeId": ".-1.140097440953312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140097440953312": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140097403520720"}, "def": "140097440953312", "variance": "INVARIANT"}}, "140097403520720": {"type": "Union", "content": {"items": [{"nodeId": "140097428532992", "args": [{"nodeId": "A"}]}, {"nodeId": "140097403520160"}]}}, "140097403520160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097428401824"}}}, "140097428401824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097415673920"}, {"nodeId": "140097415673360"}, {"nodeId": "140097415673472"}], "returnType": {"nodeId": "140097415673696"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097415673920": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097415673360": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097415673472": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097415673696": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097440953760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419739904"}, {"nodeId": "140097395478752"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140097395479648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140097395478752": {"type": "Function", "content": {"typeVars": [".-2.140097395478752"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140097395478752"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140097395478752": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395478752", "variance": "INVARIANT"}}, "140097395479648": {"type": "Function", "content": {"typeVars": [".-2.140097395479648"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140097395479648"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140097395479648": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395479648", "variance": "INVARIANT"}}, "140097440954208": {"type": "Function", "content": {"typeVars": [".0.140097440954208"], "argTypes": [{"nodeId": ".0.140097440954208"}], "returnType": {"nodeId": ".0.140097440954208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097440954208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097419739904"}, "def": "140097440954208", "variance": "INVARIANT"}}, "140097440954656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419739904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440955104": {"type": "Function", "content": {"typeVars": [".0.140097440955104"], "argTypes": [{"nodeId": ".0.140097440955104"}], "returnType": {"nodeId": ".0.140097440955104"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097440955104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097419739904"}, "def": "140097440955104", "variance": "INVARIANT"}}, "140097440955552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419739904"}, {"nodeId": "140097395561008"}, {"nodeId": "140097395561120"}, {"nodeId": "140097395561232"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097395561008": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395561120": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395561232": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097419740256": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440956000"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440950624"}, "name": "enter_async_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441055456"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441055904"}, "name": "push_async_exit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441056352"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441056800"}, "name": "push_async_callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441057248"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441055008"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441057696"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441058144"}, "name": "__aexit__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097440956000": {"type": "Function", "content": {"typeVars": [".-1.140097440956000"], "argTypes": [{"nodeId": "140097419740256"}, {"nodeId": "140097428532992", "args": [{"nodeId": ".-1.140097440956000"}]}], "returnType": {"nodeId": ".-1.140097440956000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140097440956000": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097440956000", "variance": "INVARIANT"}}, "140097440950624": {"type": "Function", "content": {"typeVars": [".-1.140097440950624"], "argTypes": [{"nodeId": "140097419740256"}, {"nodeId": "140097428533344", "args": [{"nodeId": ".-1.140097440950624"}]}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.140097440950624"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140097440950624": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097440950624", "variance": "INVARIANT"}}, "140097441055456": {"type": "Function", "content": {"typeVars": [".-1.140097441055456"], "argTypes": [{"nodeId": "140097419740256"}, {"nodeId": ".-1.140097441055456"}], "returnType": {"nodeId": ".-1.140097441055456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140097441055456": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140097403520720"}, "def": "140097441055456", "variance": "INVARIANT"}}, "140097441055904": {"type": "Function", "content": {"typeVars": [".-1.140097441055904"], "argTypes": [{"nodeId": "140097419740256"}, {"nodeId": ".-1.140097441055904"}], "returnType": {"nodeId": ".-1.140097441055904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140097441055904": {"type": "TypeVar", "content": {"varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "140097403521280"}, "def": "140097441055904", "variance": "INVARIANT"}}, "140097403521280": {"type": "Union", "content": {"items": [{"nodeId": "140097428533344", "args": [{"nodeId": "A"}]}, {"nodeId": "140097403521504"}]}}, "140097403521504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097428396448"}}}, "140097428396448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097420535824"}, {"nodeId": "140097420537280"}, {"nodeId": "140097420537056"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": "140097420536496"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097420535824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097420537280": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097420537056": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097420536496": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097441056352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740256"}, {"nodeId": "140097395479200"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140097395480096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140097395479200": {"type": "Function", "content": {"typeVars": [".-2.140097395479200"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140097395479200"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140097395479200": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395479200", "variance": "INVARIANT"}}, "140097395480096": {"type": "Function", "content": {"typeVars": [".-2.140097395480096"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140097395480096"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140097395480096": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395480096", "variance": "INVARIANT"}}, "140097441056800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740256"}, {"nodeId": "140097395479872"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140097395480544"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140097395479872": {"type": "Function", "content": {"typeVars": [".-2.140097395479872"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".-2.140097395479872"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140097395479872": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395479872", "variance": "INVARIANT"}}, "140097395480544": {"type": "Function", "content": {"typeVars": [".-2.140097395480544"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".-2.140097395480544"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140097395480544": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395480544", "variance": "INVARIANT"}}, "140097441057248": {"type": "Function", "content": {"typeVars": [".0.140097441057248"], "argTypes": [{"nodeId": ".0.140097441057248"}], "returnType": {"nodeId": ".0.140097441057248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097441057248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097419740256"}, "def": "140097441057248", "variance": "INVARIANT"}}, "140097441055008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740256"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441057696": {"type": "Function", "content": {"typeVars": [".0.140097441057696"], "argTypes": [{"nodeId": ".0.140097441057696"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".0.140097441057696"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097441057696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097419740256"}, "def": "140097441057696", "variance": "INVARIANT"}}, "140097441058144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740256"}, {"nodeId": "140097395563360"}, {"nodeId": "140097395563472"}, {"nodeId": "140097395563584"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140097499812032"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140097395563360": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395563472": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395563584": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097419740608": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140097419740608"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395563248"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441059936"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441060384"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097395480320"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097395481216"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140097419740608"}], "bases": [{"nodeId": "140097428532992", "args": [{"nodeId": ".1.140097419740608"}]}, {"nodeId": "140097428533344", "args": [{"nodeId": ".1.140097419740608"}]}], "isAbstract": false}}, ".1.140097419740608": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419740608", "variance": "INVARIANT"}}, "140097395563248": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441058592"}, {"nodeId": "140097441059040"}]}}, "140097441058592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740608", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}}, "140097441059040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740608", "args": [{"nodeId": ".1.140097419740608"}]}, {"nodeId": ".1.140097419740608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}}, "140097441059936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740608", "args": [{"nodeId": ".1.140097419740608"}]}], "returnType": {"nodeId": ".1.140097419740608"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097441060384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740608", "args": [{"nodeId": ".1.140097419740608"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140097395480320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740608", "args": [{"nodeId": ".1.140097419740608"}]}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140097419740608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395481216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740608", "args": [{"nodeId": ".1.140097419740608"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}}, "140097407726368": {"type": "Concrete", "content": {"module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097374569184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097374570304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097374570752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097374572320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097374566912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097369446816"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399405392"}, "items": [{"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "expand"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399458720"}, "items": [{"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "group"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399459392"}, "items": [{"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groups"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399459504"}, "items": [{"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groupdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441335328"}, "name": "start"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441335776"}, "name": "end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441336224"}, "name": "span"}}, {"kind": "Variable", "content": {"name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097369453312"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399460624"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441338016"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441338464"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441338912"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407726368"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097407726368": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407726368", "variance": "INVARIANT"}}, "140097374569184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097374570304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097374570752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097399459168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399459168": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097374572320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097399459280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399459280": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097374566912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": ".1.140097407726368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097369446816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726368"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407726720": {"type": "Concrete", "content": {"module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097369637376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097369639616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097369640512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097369641184"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399461072"}, "items": [{"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "search"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399462304"}, "items": [{"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "match"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399463088"}, "items": [{"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fullmatch"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399463536"}, "items": [{"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "split"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399463984"}, "items": [{"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "findall"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399464432"}, "items": [{"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "finditer"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399465216"}, "items": [{"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sub"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399465552"}, "items": [{"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441483232"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441483680"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441484128"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407726720"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097407726720": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407726720", "variance": "INVARIANT"}}, "140097369637376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097369639616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}], "returnType": {"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097369640512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097369641184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}], "returnType": {"nodeId": ".1.140097407726720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399461072": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441341152"}, {"nodeId": "140097454205728"}, {"nodeId": "140097441342048"}]}}, "140097441341152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399463200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399463200": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097454205728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399463312"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399463312": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "N"}]}}, "140097441342048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399463424"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399463424": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": "N"}]}}, "140097399462304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441342496"}, {"nodeId": "140097454204608"}, {"nodeId": "140097441343392"}]}}, "140097441342496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399463648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399463648": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097454204608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399463760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399463760": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "N"}]}}, "140097441343392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399463872"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399463872": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": "N"}]}}, "140097399463088": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454204160"}, {"nodeId": "140097441343840"}, {"nodeId": "140097441344736"}]}}, "140097454204160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399464096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399464096": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097441343840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399464208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399464208": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "N"}]}}, "140097441344736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399464320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399464320": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": "N"}]}}, "140097399463536": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454203936"}, {"nodeId": "140097441345184"}, {"nodeId": "140097441346080"}]}}, "140097454203936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097399464656"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140097399464656": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}}, "140097441345184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097399464880"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140097399464880": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "A"}]}}, "140097441346080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097399465104"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140097399465104": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726720"}, {"nodeId": "A"}]}}, "140097399463984": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441346528"}, {"nodeId": "140097458174688"}, {"nodeId": "140097441347424"}]}}, "140097441346528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097458174688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097441347424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097407726720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399464432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441347872"}, {"nodeId": "140097458172896"}, {"nodeId": "140097441348768"}]}}, "140097441347872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428308736"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097458172896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428309088"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097441348768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726720"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399465216": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441349216"}, {"nodeId": "140097458171552"}, {"nodeId": "140097441481440"}]}}, "140097441349216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097399465776"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140097399465776": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097458172448"}]}}, "140097458172448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097458171552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097399465888"}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140097399465888": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097458172000"}]}}, "140097458172000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428309088"}]}], "returnType": {"nodeId": "140097407466688"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097441481440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": "140097399466000"}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097407726720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140097399466000": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726720"}, {"nodeId": "140097458173792"}]}}, "140097458173792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726720"}]}], "returnType": {"nodeId": ".1.140097407726720"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097399465552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441481888"}, {"nodeId": "140097458169760"}, {"nodeId": "140097441482784"}]}}, "140097441481888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097399466224"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399466448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140097399466224": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097458171104"}]}}, "140097458171104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097399466448": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097458169760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097399466560"}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399466784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140097399466560": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097458170656"}]}}, "140097458170656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428309088"}]}], "returnType": {"nodeId": "140097407466688"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097399466784": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}]}}, "140097441482784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": "140097399466896"}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399467120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140097399466896": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726720"}, {"nodeId": "140097458170208"}]}}, "140097458170208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726720"}]}], "returnType": {"nodeId": ".1.140097407726720"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097399467120": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}]}}, "140097441483232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}], "returnType": {"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441483680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097441484128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140097399405392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441068448"}, {"nodeId": "140097454205056"}, {"nodeId": "140097441069344"}]}}, "140097441068448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140097454205056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140097441069344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": ".1.140097407726368"}], "returnType": {"nodeId": ".1.140097407726368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140097399458720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441069792"}, {"nodeId": "140097441070240"}, {"nodeId": "140097441070688"}]}}, "140097441069792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140097407726368"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097441070240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "140097399459728"}], "returnType": {"nodeId": "140097399459952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097399459728": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097399459952": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726368"}, {"nodeId": "A"}]}}, "140097441070688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "140097399460064"}, {"nodeId": "140097399460176"}, {"nodeId": "140097399460288"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097399460512"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}}, "140097399460064": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097399460176": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097399460288": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097399460512": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726368"}, {"nodeId": "A"}]}}, "140097399459392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441333536"}, {"nodeId": "140097441333984"}]}}, "140097441333536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097399460848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399460848": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726368"}, {"nodeId": "A"}]}}, "140097441333984": {"type": "Function", "content": {"typeVars": [".-1.140097441333984"], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": ".-1.140097441333984"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097399460960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140097441333984": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097441333984", "variance": "INVARIANT"}}, "140097399460960": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726368"}, {"nodeId": ".-1.140097441333984"}]}}, "140097399459504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441334432"}, {"nodeId": "140097441334880"}]}}, "140097441334432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097399461296"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399461296": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726368"}, {"nodeId": "A"}]}}, "140097441334880": {"type": "Function", "content": {"typeVars": [".-1.140097441334880"], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": ".-1.140097441334880"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097399461408"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140097441334880": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097441334880", "variance": "INVARIANT"}}, "140097399461408": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726368"}, {"nodeId": ".-1.140097441334880"}]}}, "140097441335328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "140097399461520"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097399461520": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097441335776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "140097399461632"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097399461632": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097441336224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "140097399461744"}], "returnType": {"nodeId": "140097399461968"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097399461744": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097399461968": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097369453312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097399462192"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399462192": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097399460624": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441337120"}, {"nodeId": "140097441337568"}]}}, "140097441337120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140097407726368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097441337568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "140097399462528"}], "returnType": {"nodeId": "140097399462752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097399462528": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097399462752": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726368"}, {"nodeId": "A"}]}}, "140097441338016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441338464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097441338912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140097403405408": {"type": "Concrete", "content": {"module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "content": {"name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462530848"}], "isAbstract": false}}, "140097462529088": {"type": "Concrete", "content": {"module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441495776"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441496224"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}], "isAbstract": false}}, "140097441495776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441496224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529088"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097462529440": {"type": "Concrete", "content": {"module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441694880"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357750208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441696672"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441697120"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441698464"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441699360"}, "name": "__getitem__"}}, {"kind": "Variable", "content": {"name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097357754464"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441700256"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441700704"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441701152"}, "name": "__dir__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395181936"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "Variable", "content": {"name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097462529792"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "A"}, {"nodeId": "140097462529792"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097407285056"}], "isAbstract": false}}, "140097441694880": {"type": "Function", "content": {"typeVars": [".-1.140097441694880"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, {"nodeId": "140097462529088"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140097441694880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}}, ".-1.140097441694880": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097441694880", "variance": "INVARIANT"}}, "140097357750208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097462529088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}}, "140097441696672": {"type": "Function", "content": {"typeVars": [".-1.140097441696672"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".-1.140097441696672"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140097441696672": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097441696672", "variance": "INVARIANT"}}, "140097441697120": {"type": "Function", "content": {"typeVars": [".-1.140097441697120"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".-1.140097441697120"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140097441697120": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097441697120", "variance": "INVARIANT"}}, "140097441698464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097441699360": {"type": "Function", "content": {"typeVars": [".-1.140097441699360"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".-1.140097441699360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097441699360": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097441699360", "variance": "INVARIANT"}}, "140097357754464": {"type": "Function", "content": {"typeVars": [".-1.140097357754464"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140097407714048", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".-1.140097357754464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140097357754464": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097357754464", "variance": "INVARIANT"}}, "140097441700256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529440"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097441700704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529440"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441701152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529440"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395181936": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441701600"}, {"nodeId": "140097441702496"}]}}, "140097441701600": {"type": "Function", "content": {"typeVars": [".-1.140097441701600"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140097441701600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}}, ".-1.140097441701600": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097441701600", "variance": "INVARIANT"}}, "140097441702496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529440"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395188208"}, {"nodeId": "140097395188320"}, {"nodeId": "140097395188432"}, {"nodeId": "140097395188544"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "value", "names", "module", "qualname", "type", "start"]}}, "140097395188208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097415891760"}}}, "140097415891760": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097415894000"}]}]}, {"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}]}}, "140097415894000": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}}, "140097395188320": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395188432": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395188544": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097462530144": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097352631232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441707424"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140097499822944"}, {"nodeId": "140097462529792"}], "isAbstract": false}}, "140097352631232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462530144"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441707424": {"type": "Function", "content": {"typeVars": [".0.140097441707424"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097441707424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140097441707424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530144"}, "def": "140097441707424", "variance": "INVARIANT"}}, "140097407722496": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140097407722496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140097407722496"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432172608"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432173056"}, "name": "check_returncode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432173504"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407722496"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097407722496": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407722496", "variance": "INVARIANT"}}, "140097432172608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407722496", "args": [{"nodeId": ".1.140097407722496"}]}, {"nodeId": "140097399152688"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399152800"}, {"nodeId": "140097399152912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}}, "140097399152688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399152800": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407722496"}, {"nodeId": "N"}]}}, "140097399152912": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407722496"}, {"nodeId": "N"}]}}, "140097432173056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407722496", "args": [{"nodeId": ".1.140097407722496"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432173504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140097407722848": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097407723200": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097420258304"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499823296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403591856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403360688"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097407722848"}], "isAbstract": false}}, "140097420258304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723200"}, {"nodeId": "140097399354336"}, {"nodeId": "140097499823296"}, {"nodeId": "140097399354448"}, {"nodeId": "140097399354560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}}, "140097399354336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399354448": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097399354560": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097403591856": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097403360688": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097407723552": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097420258752"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097407722848"}], "isAbstract": false}}, "140097420258752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723552"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399354672"}, {"nodeId": "140097399354784"}, {"nodeId": "140097399354896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}}, "140097399354672": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399354784": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097399354896": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097462521344": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356938848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097407271328"}], "isAbstract": false}}, "140097356938848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462521344"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462522048": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416147264"}, "name": "load"}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356929888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356929216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356929664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415895680"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416149056"}, "name": "matches"}}], "typeVars": [], "bases": [{"nodeId": "140097462521696"}], "isAbstract": false}}, "140097416147264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394908896"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394908896": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097356929888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394909120"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394909120": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097356929216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394909232"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394909232": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097356929664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394909344"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394909344": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097415895680": {"type": "Union", "content": {"items": [{"nodeId": "140097462523456"}, {"nodeId": "N"}]}}, "140097416149056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394909456"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140097394909456": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097462521696": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415898256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415899152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428399360"}, "name": "_replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428398688"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428400256"}, "name": "_asdict"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428400032"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}], "isAbstract": false}}, "140097415898256": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097415899152": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097428399360": {"type": "Function", "content": {"typeVars": [".-1.140097428399360"], "argTypes": [{"nodeId": ".-1.140097428399360"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".-1.140097428399360"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}}, ".-1.140097428399360": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140097415898032"}, "def": "140097428399360", "variance": "INVARIANT"}}, "140097415898032": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097428398688": {"type": "Function", "content": {"typeVars": [".-1.140097428398688"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".-1.140097428398688"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}}, ".-1.140097428398688": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140097415898032"}, "def": "140097428398688", "variance": "INVARIANT"}}, "140097428400256": {"type": "Function", "content": {"typeVars": [".-1.140097428400256"], "argTypes": [{"nodeId": ".-1.140097428400256"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}}, ".-1.140097428400256": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140097415898032"}, "def": "140097428400256", "variance": "INVARIANT"}}, "140097428400032": {"type": "Function", "content": {"typeVars": [".-1.140097428400032"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140097428400032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["_cls", "iterable"]}}, ".-1.140097428400032": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140097415898032"}, "def": "140097428400032", "variance": "INVARIANT"}}, "140097462522752": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "content": {"name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097356902720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356902272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356902048"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097394908224"}, "items": [{"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "select"}}], "typeVars": [], "bases": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097462522400"}]}], "isAbstract": false}}, "140097356902720": {"type": "Function", "content": {"typeVars": [".0.140097356902720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097394909792"}]}], "returnType": {"nodeId": ".0.140097356902720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}}, "140097394909792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403367296"}}}, ".0.140097356902720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462522752"}, "def": "140097356902720", "variance": "INVARIANT"}}, "140097356902272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462522752"}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097356902048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462522752"}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394908224": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441138496"}, {"nodeId": "140097441138944"}]}}, "140097441138496": {"type": "Function", "content": {"typeVars": [".0.140097441138496"], "argTypes": [{"nodeId": ".0.140097441138496"}], "returnType": {"nodeId": ".0.140097441138496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097441138496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462522752"}, "def": "140097441138496", "variance": "INVARIANT"}}, "140097441138944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462522752"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097462522400"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140097403408928": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "content": {"type": {"nodeId": "140097403409280"}}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097356896448"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462526976"}], "isAbstract": true}}, "140097356896448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403408928"}, {"nodeId": "140097403409280"}], "returnType": {"nodeId": "140097499815904", "args": [{"nodeId": "140097462523456"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}}, "140097403409632": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097356894656"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441149248"}, "name": "invalidate_caches"}}], "typeVars": [], "bases": [{"nodeId": "140097403408928"}], "isAbstract": false}}, "140097356894656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097403409280"}], "returnType": {"nodeId": "140097499815904", "args": [{"nodeId": "140097462523808"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}}, "140097441149248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403409632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140097402964448": {"type": "Concrete", "content": {"module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416286208"}, "name": "size"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097416286208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402964448"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407725664": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407961792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407961904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424064576"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097407961792": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097407961904": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097424064576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725664"}, {"nodeId": "140097428308736"}, {"nodeId": "140097399458608"}, {"nodeId": "140097399458272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}}, "140097399458608": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097399458272": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097407726016": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424065024"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140097499822944"}], "isAbstract": false}}, "140097424065024": {"type": "Function", "content": {"typeVars": [".0.140097424065024"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097424065024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}}, ".0.140097424065024": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407726016"}, "def": "140097424065024", "variance": "INVARIANT"}}, "140097462520992": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424594688"}, "name": "joinpath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424595136"}, "name": "parent"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424595584"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424596032"}, "name": "__truediv__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}}, "140097424594688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520992"}], "returnType": {"nodeId": "140097462520992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424595136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520992"}], "returnType": {"nodeId": "140097462520992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424595584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520992"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424596032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520992"}], "returnType": {"nodeId": "140097462520992"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097462532608": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097462531552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403699936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403519376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428523136"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424597376"}, "name": "is_multipart"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424597824"}, "name": "set_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424598272"}, "name": "get_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424598720"}, "name": "attach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424599168"}, "name": "get_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424599616"}, "name": "set_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424600064"}, "name": "set_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424600512"}, "name": "get_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424600960"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424601408"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424601856"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424602304"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424602752"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424603200"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424603648"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424604096"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424604544"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395185408"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395190224"}, "items": [{"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424213824"}, "name": "add_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424214272"}, "name": "replace_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424214720"}, "name": "get_content_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424215168"}, "name": "get_content_maintype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424215616"}, "name": "get_content_subtype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424216064"}, "name": "get_default_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424216512"}, "name": "set_default_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395193696"}, "items": [{"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_params"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395194256"}, "items": [{"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424218752"}, "name": "del_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424219200"}, "name": "set_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395195040"}, "items": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_filename"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395409744"}, "items": [{"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_boundary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424221440"}, "name": "set_boundary"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395409632"}, "items": [{"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_content_charset"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395409856"}, "items": [{"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_charsets"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424223680"}, "name": "walk"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424224128"}, "name": "get_content_disposition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424224576"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424225024"}, "name": "as_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424225472"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424225920"}, "name": "set_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424226368"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424226816"}, "name": "set_raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424227264"}, "name": "raw_items"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097462531552": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415892320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415892768"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428969664"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428970112"}, "name": "clone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428970560"}, "name": "handle_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428971008"}, "name": "register_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428971456"}, "name": "header_max_count"}}, {"kind": "Variable", "content": {"name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352790560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352790112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352789888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352789664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352789440"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": true}}, "140097415892320": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097415892768": {"type": "Union", "content": {"items": [{"nodeId": "140097415605696"}, {"nodeId": "N"}]}}, "140097415605696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}], "returnType": {"nodeId": "140097462532608"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097428969664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097395190000"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097395190112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory"]}}, "140097395190000": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097395190112": {"type": "Union", "content": {"items": [{"nodeId": "140097394843360"}, {"nodeId": "N"}]}}, "140097394843360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}], "returnType": {"nodeId": "140097462532608"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097428970112": {"type": "Function", "content": {"typeVars": [".0.140097428970112"], "argTypes": [{"nodeId": ".0.140097428970112"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097428970112"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}}, ".0.140097428970112": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462531552"}, "def": "140097428970112", "variance": "INVARIANT"}}, "140097428970560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097462532608"}, {"nodeId": "140097428523136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140097428523136": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428968096"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097428323168"}], "isAbstract": false}}, "140097428968096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428523136"}, {"nodeId": "140097395416576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}}, "140097395416576": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097428971008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097462532608"}, {"nodeId": "140097428523136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140097428971456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395190448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "140097395190448": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097352790560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097395190672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140097395190672": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097352790112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395190896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097395190896": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097352789888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097352789664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097352789440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097403699936": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403519376": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424597376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424597824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}}, "140097424598272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097395192240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395192240": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424598720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097462532608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}}, "140097424599168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097395192352"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}}, "140097395192352": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097424599616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097395192576"}, {"nodeId": "140097395192800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}}, "140097395192576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097415893552"}}}, "140097415893552": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097462532608"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}]}}, "140097395192800": {"type": "Union", "content": {"items": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097428530528": {"type": "Concrete", "content": {"module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415890192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415890416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415890528"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429090176"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429090624"}, "name": "get_body_encoding"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429091072"}, "name": "get_output_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429091520"}, "name": "header_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429091968"}, "name": "header_encode_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429092416"}, "name": "body_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429092864"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429093312"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097415890192": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097415890416": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097415890528": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097429090176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}}, "140097429090624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097429091072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}], "returnType": {"nodeId": "140097395418144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395418144": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097429091520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140097429091968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499816256", "args": [{"nodeId": "140097499822944"}]}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}}, "140097429092416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140097429092864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097429093312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097424600064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097395192688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}}, "140097395192688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097415892544"}}}, "140097415892544": {"type": "Union", "content": {"items": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424600512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097395192912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395192912": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097415892544"}}}, "140097424600960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097424601408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097424601856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097424602304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395193024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395193024": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424602752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395193136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097395193136": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424603200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097424603648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424604096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097395193248"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395193248": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424604544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097395193584"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395193584": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097395193360"}]}}, "140097395193360": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097395185408": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424212032"}, {"nodeId": "140097424212480"}]}}, "140097424212032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097395193920"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140097395193920": {"type": "Union", "content": {"items": [{"nodeId": "140097395193808"}, {"nodeId": "N"}]}}, "140097395193808": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424212480": {"type": "Function", "content": {"typeVars": [".-1.140097424212480"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424212480"}], "returnType": {"nodeId": "140097395194144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140097424212480": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424212480", "variance": "INVARIANT"}}, "140097395194144": {"type": "Union", "content": {"items": [{"nodeId": "140097395194032"}, {"nodeId": ".-1.140097424212480"}]}}, "140097395194032": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097395190224": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424212928"}, {"nodeId": "140097424213376"}]}}, "140097424212928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097395194480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140097395194480": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097395194368"}]}, {"nodeId": "N"}]}}, "140097395194368": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424213376": {"type": "Function", "content": {"typeVars": [".-1.140097424213376"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424213376"}], "returnType": {"nodeId": "140097395194704"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140097424213376": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424213376", "variance": "INVARIANT"}}, "140097395194704": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097395194592"}]}, {"nodeId": ".-1.140097424213376"}]}}, "140097395194592": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424213824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395194816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}}, "140097395194816": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097415889296"}}}, "140097415889296": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}, {"nodeId": "140097415889072"}]}}, "140097415889072": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097415889408"}, {"nodeId": "140097428308736"}]}}, "140097415889408": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424214272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395194928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}}, "140097395194928": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424214720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424215168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424215616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424216064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424216512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}}, "140097395193696": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424216960"}, {"nodeId": "140097424217408"}]}}, "140097424216960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "N"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097395195376"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, "140097395195376": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097395195264"}]}, {"nodeId": "N"}]}}, "140097395195264": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424217408": {"type": "Function", "content": {"typeVars": [".-1.140097424217408"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": ".-1.140097424217408"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097395195712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, ".-1.140097424217408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424217408", "variance": "INVARIANT"}}, "140097395195712": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097395195600"}]}, {"nodeId": ".-1.140097424217408"}]}}, "140097395195600": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097395194256": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424217856"}, {"nodeId": "140097424218304"}]}}, "140097424217856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097395409184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, "140097395409184": {"type": "Union", "content": {"items": [{"nodeId": "140097395409072"}, {"nodeId": "N"}]}}, "140097395409072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097415891088"}}}, "140097415891088": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097415889856"}]}}, "140097415889856": {"type": "Tuple", "content": {"items": [{"nodeId": "140097415890864"}, {"nodeId": "140097415891200"}, {"nodeId": "140097428308736"}]}}, "140097415890864": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097415891200": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424218304": {"type": "Function", "content": {"typeVars": [".-1.140097424218304"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424218304"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097395409520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, ".-1.140097424218304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424218304", "variance": "INVARIANT"}}, "140097395409520": {"type": "Union", "content": {"items": [{"nodeId": "140097395408960"}, {"nodeId": ".-1.140097424218304"}]}}, "140097395408960": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097415891088"}}}, "140097424218752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}}, "140097424219200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}}, "140097395195040": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424219648"}, {"nodeId": "140097424220096"}]}}, "140097424219648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097395409296"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140097395409296": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424220096": {"type": "Function", "content": {"typeVars": [".-1.140097424220096"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": ".-1.140097424220096"}], "returnType": {"nodeId": "140097395409408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140097424220096": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424220096", "variance": "INVARIANT"}}, "140097395409408": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424220096"}]}}, "140097395409744": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424220544"}, {"nodeId": "140097424220992"}]}}, "140097424220544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097395409968"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140097395409968": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424220992": {"type": "Function", "content": {"typeVars": [".-1.140097424220992"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": ".-1.140097424220992"}], "returnType": {"nodeId": "140097395410080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140097424220992": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424220992", "variance": "INVARIANT"}}, "140097395410080": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424220992"}]}}, "140097424221440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}}, "140097395409632": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424221888"}, {"nodeId": "140097424222336"}]}}, "140097424221888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097395410304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395410304": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424222336": {"type": "Function", "content": {"typeVars": [".-1.140097424222336"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": ".-1.140097424222336"}], "returnType": {"nodeId": "140097395410416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140097424222336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424222336", "variance": "INVARIANT"}}, "140097395410416": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424222336"}]}}, "140097395409856": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424222784"}, {"nodeId": "140097424223232"}]}}, "140097424222784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097395410640"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140097395410640": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424223232": {"type": "Function", "content": {"typeVars": [".-1.140097424223232"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": ".-1.140097424223232"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097395410752"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140097424223232": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424223232", "variance": "INVARIANT"}}, "140097395410752": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424223232"}]}}, "140097424223680": {"type": "Function", "content": {"typeVars": [".0.140097424223680"], "argTypes": [{"nodeId": ".0.140097424223680"}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": ".0.140097424223680"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097424223680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462532608"}, "def": "140097424223680", "variance": "INVARIANT"}}, "140097424224128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097395410976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395410976": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424224576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097395411088"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140097395411088": {"type": "Union", "content": {"items": [{"nodeId": "140097462531552"}, {"nodeId": "N"}]}}, "140097424225024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097499812032"}, {"nodeId": "140097395411200"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}}, "140097395411200": {"type": "Union", "content": {"items": [{"nodeId": "140097462531552"}, {"nodeId": "N"}]}}, "140097424225472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424225920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}, {"nodeId": "140097395411312"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "value", "header", "requote", "charset", "language", "replace"]}}, "140097395411312": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424226368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097462531552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140097424226816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395411424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097395411424": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424227264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097395411760"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395411760": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097395411536"}]}}, "140097395411536": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097462532960": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424227712"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432404032"}, "name": "get_body"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432404480"}, "name": "iter_attachments"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432404928"}, "name": "iter_parts"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432405376"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432405824"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432406272"}, "name": "make_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432406720"}, "name": "make_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432407168"}, "name": "make_mixed"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432407616"}, "name": "add_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432408064"}, "name": "add_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432408512"}, "name": "add_attachment"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432408960"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432409408"}, "name": "clear_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432409856"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432410304"}, "name": "is_attachment"}}], "typeVars": [], "bases": [{"nodeId": "140097462532608"}], "isAbstract": false}}, "140097424227712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "140097395411872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140097395411872": {"type": "Union", "content": {"items": [{"nodeId": "140097462531552"}, {"nodeId": "N"}]}}, "140097432404032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097395411984"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}}, "140097395411984": {"type": "Union", "content": {"items": [{"nodeId": "140097462532608"}, {"nodeId": "N"}]}}, "140097432404480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097462532608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432404928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097462532608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432405376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "A"}, {"nodeId": "140097395412208"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140097395412208": {"type": "Union", "content": {"items": [{"nodeId": "140097428530176"}, {"nodeId": "N"}]}}, "140097428530176": {"type": "Concrete", "content": {"module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428965184"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428965632"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428966080"}, "name": "add_get_handler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428966528"}, "name": "add_set_handler"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097428965184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530176"}, {"nodeId": "140097462532608"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}}, "140097428965632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530176"}, {"nodeId": "140097462532608"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "obj", "args", "kw"]}}, "140097428966080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530176"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395474496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}}, "140097395474496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097428966528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530176"}, {"nodeId": "140097499822240"}, {"nodeId": "140097395474720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}}, "140097395474720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097432405824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "A"}, {"nodeId": "140097395412656"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140097395412656": {"type": "Union", "content": {"items": [{"nodeId": "140097428530176"}, {"nodeId": "N"}]}}, "140097432406272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "140097395412880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140097395412880": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097432406720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "140097395412992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140097395412992": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097432407168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "140097395413104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140097395413104": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097432407616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "A"}, {"nodeId": "140097395413328"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140097395413328": {"type": "Union", "content": {"items": [{"nodeId": "140097428530176"}, {"nodeId": "N"}]}}, "140097432408064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "A"}, {"nodeId": "140097395413664"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140097395413664": {"type": "Union", "content": {"items": [{"nodeId": "140097428530176"}, {"nodeId": "N"}]}}, "140097432408512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "A"}, {"nodeId": "140097395414000"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140097395414000": {"type": "Union", "content": {"items": [{"nodeId": "140097428530176"}, {"nodeId": "N"}]}}, "140097432408960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432409408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432409856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "140097499812032"}, {"nodeId": "140097395414224"}, {"nodeId": "140097395414336"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140097395414224": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097395414336": {"type": "Union", "content": {"items": [{"nodeId": "140097462531552"}, {"nodeId": "N"}]}}, "140097432410304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462533312": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "140097462532960"}], "isAbstract": false}}, "140097403415616": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403414912"}], "isAbstract": false}}, "140097403416320": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403415968"}, {"nodeId": "140097403415264"}], "isAbstract": false}}, "140097403416672": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403415968"}, {"nodeId": "140097403415616"}], "isAbstract": false}}, "140097407724256": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097407724608": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097407581904"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403592976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097374402848"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432488192"}, "name": "opengroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432488640"}, "name": "closegroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432489088"}, "name": "checkgroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432489536"}, "name": "checklookbehindgroup"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097407581904": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097403592976": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097374402848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724608"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432488192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724608"}, {"nodeId": "140097399455808"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140097399455808": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097432488640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724608"}, {"nodeId": "140097499822944"}, {"nodeId": "140097407724960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}}, "140097407724960": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403595664"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403533264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407724608"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432489984"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432490880"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432491328"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432491776"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432492224"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432492672"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432493120"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432493568"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432494016"}, "name": "getwidth"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097403595664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403596896"}}}, "140097403596896": {"type": "Tuple", "content": {"items": [{"nodeId": "140097407726016"}, {"nodeId": "140097403595776"}]}}, "140097403595776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403596672"}}}, "140097403596672": {"type": "Union", "content": {"items": [{"nodeId": "140097403594880"}, {"nodeId": "140097403595440"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097407724960"}]}, {"nodeId": "140097403596336"}, {"nodeId": "140097403596560"}]}}, "140097403594880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097428310848", "args": [{"nodeId": "140097407581792"}]}}}, "140097407581792": {"type": "Tuple", "content": {"items": [{"nodeId": "140097407726016"}, {"nodeId": "140097499822944"}]}}, "140097403595440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403361808"}}}, "140097403361808": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097407724960"}]}]}}, "140097403596336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403361696"}}}, "140097403361696": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097407724960"}, {"nodeId": "140097407724960"}]}}, "140097403596560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403591744"}}}, "140097403591744": {"type": "Tuple", "content": {"items": [{"nodeId": "140097407580560"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097407724960"}]}}, "140097407580560": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097403533264": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097432489984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}, {"nodeId": "140097407724608"}, {"nodeId": "140097399456032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}}, "140097399456032": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097399455920"}]}, {"nodeId": "N"}]}}, "140097399455920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403596896"}}}, "140097432490880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}}, "140097432491328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097432491776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}, {"nodeId": "140097399456256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097399456256": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428310144"}]}}, "140097432492224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}, {"nodeId": "140097399456144"}], "returnType": {"nodeId": "140097399456480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097399456144": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428310144"}]}}, "140097399456480": {"type": "Union", "content": {"items": [{"nodeId": "140097407724960"}, {"nodeId": "140097399456592"}]}}, "140097399456592": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403596896"}}}, "140097432492672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}, {"nodeId": "140097399456704"}, {"nodeId": "140097399456368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097399456704": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428310144"}]}}, "140097399456368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403596896"}}}, "140097432493120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399456928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}}, "140097399456928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403596896"}}}, "140097432493568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}, {"nodeId": "140097399457264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}}, "140097399457264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403596896"}}}, "140097432494016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}], "returnType": {"nodeId": "140097399457040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399457040": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097432489088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724608"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}}, "140097432489536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724608"}, {"nodeId": "140097499822944"}, {"nodeId": "140097407725312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}}, "140097407725312": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "content": {"name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403596784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432494464"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432494912"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432495360"}, "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432495808"}, "name": "getwhile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432496256"}, "name": "getuntil"}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097374397248"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432497600"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432498048"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432498496"}, "name": "error"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097403596784": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097432494464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140097432494912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}}, "140097432495360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}], "returnType": {"nodeId": "140097399457152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399457152": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097432495808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}}, "140097432496256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}}, "140097374397248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432497600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432498048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}}, "140097432498496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097407725664"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}}, "140097428521024": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428521376": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428521024"}], "isAbstract": false}}, "140097428521728": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428521376"}], "isAbstract": false}}, "140097428522080": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428521376"}], "isAbstract": false}}, "140097428522432": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428521024"}, {"nodeId": "140097428322816"}], "isAbstract": false}}, "140097428522784": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428521024"}], "isAbstract": false}}, "140097428523488": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428523840": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428524192": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428524544": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428524896": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428525248": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428525600": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428525952": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428526304": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428526656": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428527008": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428527360": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428527712": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428528064": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428527712"}], "isAbstract": false}}, "140097428528416": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428527712"}], "isAbstract": false}}, "140097428528768": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428968544"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097428527712"}], "isAbstract": false}}, "140097428968544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428528768"}, {"nodeId": "140097395416688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}}, "140097395416688": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097428529120": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428527712"}], "isAbstract": false}}, "140097428529472": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428527712"}], "isAbstract": false}}, "140097428529824": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428527712"}], "isAbstract": false}}, "140097462531904": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428974144"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428974592"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428975040"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428975488"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428975936"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140097462531552"}], "isAbstract": false}}, "140097428974144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531904"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097395191120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140097395191120": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097428974592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531904"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395191344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097395191344": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097428975040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531904"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395191456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097395191456": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097462533664"}]}}, "140097462533664": {"type": "Concrete", "content": {"module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428390400"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428390848"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428391296"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428391744"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428392192"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097428390400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462533664"}, {"nodeId": "140097395414448"}, {"nodeId": "140097395414560"}, {"nodeId": "140097395414672"}, {"nodeId": "140097395414784"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "maxlinelen", "header_name", "continuation_ws", "errors"]}}, "140097395414448": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395414560": {"type": "Union", "content": {"items": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395414672": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097395414784": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097428390848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462533664"}, {"nodeId": "140097395414896"}, {"nodeId": "140097395415008"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}}, "140097395414896": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}, {"nodeId": "140097428308736"}]}}, "140097395415008": {"type": "Union", "content": {"items": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097428391296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462533664"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395415120"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}}, "140097395415120": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097428391744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462533664"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097428392192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462533664"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097428975488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531904"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097428975936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531904"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097462532256": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415606144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428530176"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428976384"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428976832"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428977280"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428977728"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428978176"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428978624"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140097462531552"}], "isAbstract": false}}, "140097415606144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097428976384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532256"}, {"nodeId": "140097395191568"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097395191680"}, {"nodeId": "140097499812032"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394848288"}, {"nodeId": "140097428530176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory", "utf8", "refold_source", "header_factory", "content_manager"]}}, "140097395191568": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097395191680": {"type": "Union", "content": {"items": [{"nodeId": "140097394848064"}, {"nodeId": "N"}]}}, "140097394848064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}], "returnType": {"nodeId": "140097462532608"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097394848288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097428976832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532256"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097395191904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140097395191904": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097428977280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532256"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395192128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097395192128": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097428977728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532256"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097428978176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532256"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097428978624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532256"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097332518848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097332519520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}}, "140097332517728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}}, "140097332515264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}}, "140097332511008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}}, "140097332443872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}}, "140097332392480": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097332438048"}, {"nodeId": "140097332438496"}]}}, "140097332438048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428311552"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097332438496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428311552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097332385648": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097332436928"}, {"nodeId": "140097332436704"}, {"nodeId": "140097332436256"}]}}, "140097332436928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419752928", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": [null, "kwargs"]}}, "140097332436704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097332385312"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": [null, "kwargs"]}}, "140097332385312": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097332436256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR_2"], "argNames": ["kwargs"]}}, "140097332437824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386759552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097386624192"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386624192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097428617840"}}}, "140097428617840": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "140097407721088"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428613472"}]}]}}, "140097428613472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097428617840"}}}, "140097332199232": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097332329856"}, {"nodeId": "140097332328960"}]}}, "140097332329856": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": [], "argNames": []}}, "140097332328960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097332328736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["component_size", "u_node", "v_node"]}}, "140097386890064": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097466331008"}, {"nodeId": "140097466331456"}]}}, "140097466331008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097386895664"}, {"nodeId": "140097386895776"}, {"nodeId": "140097386895888"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["values", "sep", "end", "file", "flush"]}}, "140097386895664": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097386895776": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097386895888": {"type": "Union", "content": {"items": [{"nodeId": "140097402961984", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097466331456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097386896112"}, {"nodeId": "140097386896224"}, {"nodeId": "140097386896336"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED"], "argNames": ["values", "sep", "end", "file", "flush"]}}, "140097386896112": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097386896224": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097386896336": {"type": "Union", "content": {"items": [{"nodeId": "140097403220768", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}}, "exprTypes": {"boruvka": [{"startOffset": 440, "endOffset": 451, "line": 13, "type": {"nodeId": "140097499822944"}}, {"startOffset": 418, "endOffset": 436, "line": 13, "type": {"nodeId": "140097499822944"}}, {"startOffset": 418, "endOffset": 421, "line": 13, "type": {"nodeId": "140097403417728"}}, {"startOffset": 461, "endOffset": 472, "line": 14, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}]}}, {"startOffset": 461, "endOffset": 464, "line": 14, "type": {"nodeId": "140097403417728"}}, {"startOffset": 504, "endOffset": 519, "line": 15, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 504, "endOffset": 507, "line": 15, "type": {"nodeId": "140097403417728"}}, {"startOffset": 703, "endOffset": 721, "line": 20, "type": {"nodeId": "140097332518848"}}, {"startOffset": 703, "endOffset": 714, "line": 20, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}]}}, {"startOffset": 703, "endOffset": 706, "line": 20, "type": {"nodeId": "140097403417728"}}, {"startOffset": 724, "endOffset": 729, "line": 20, "type": {"nodeId": "140097499822944"}}, {"startOffset": 732, "endOffset": 737, "line": 20, "type": {"nodeId": "140097499822944"}}, {"startOffset": 740, "endOffset": 745, "line": 20, "type": {"nodeId": "140097499822944"}}, {"startOffset": 883, "endOffset": 898, "line": 25, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 883, "endOffset": 886, "line": 25, "type": {"nodeId": "140097403417728"}}, {"startOffset": 900, "endOffset": 905, "line": 25, "type": {"nodeId": "140097499822944"}}, {"startOffset": 911, "endOffset": 916, "line": 25, "type": {"nodeId": "140097499822944"}}, {"startOffset": 938, "endOffset": 943, "line": 26, "type": {"nodeId": "140097499822944"}}, {"startOffset": 960, "endOffset": 978, "line": 27, "type": {"nodeId": "140097332519520"}}, {"startOffset": 960, "endOffset": 963, "line": 27, "type": {"nodeId": "140097403417728"}}, {"startOffset": 980, "endOffset": 995, "line": 27, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 980, "endOffset": 983, "line": 27, "type": {"nodeId": "140097403417728"}}, {"startOffset": 997, "endOffset": 1002, "line": 27, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1125, "endOffset": 1140, "line": 32, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 1125, "endOffset": 1128, "line": 32, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1142, "endOffset": 1147, "line": 32, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1153, "endOffset": 1158, "line": 32, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1177, "endOffset": 1177, "line": 33, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1182, "endOffset": 1197, "line": 33, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 1182, "endOffset": 1185, "line": 33, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1238, "endOffset": 1256, "line": 34, "type": {"nodeId": "140097332517728"}}, {"startOffset": 1238, "endOffset": 1241, "line": 34, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1258, "endOffset": 1258, "line": 34, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1216, "endOffset": 1231, "line": 34, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 1216, "endOffset": 1219, "line": 34, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1233, "endOffset": 1233, "line": 34, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1551, "endOffset": 1564, "line": 41, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1566, "endOffset": 1571, "line": 41, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1577, "endOffset": 1590, "line": 41, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1592, "endOffset": 1597, "line": 41, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1640, "endOffset": 1645, "line": 42, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1613, "endOffset": 1628, "line": 42, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 1613, "endOffset": 1616, "line": 42, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1630, "endOffset": 1635, "line": 42, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1685, "endOffset": 1698, "line": 43, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1700, "endOffset": 1705, "line": 43, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1659, "endOffset": 1672, "line": 43, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1674, "endOffset": 1679, "line": 43, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1720, "endOffset": 1737, "line": 44, "type": {"nodeId": "140097332515264"}}, {"startOffset": 1720, "endOffset": 1723, "line": 44, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1739, "endOffset": 1744, "line": 44, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1761, "endOffset": 1774, "line": 46, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1776, "endOffset": 1781, "line": 46, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1787, "endOffset": 1800, "line": 46, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1802, "endOffset": 1807, "line": 46, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1850, "endOffset": 1868, "line": 47, "type": {"nodeId": "140097332511008"}}, {"startOffset": 1850, "endOffset": 1853, "line": 47, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1870, "endOffset": 1875, "line": 47, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1823, "endOffset": 1838, "line": 47, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 1823, "endOffset": 1826, "line": 47, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1840, "endOffset": 1845, "line": 47, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1916, "endOffset": 1929, "line": 48, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1931, "endOffset": 1936, "line": 48, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1890, "endOffset": 1903, "line": 48, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1905, "endOffset": 1910, "line": 48, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1951, "endOffset": 1968, "line": 49, "type": {"nodeId": "140097332443872"}}, {"startOffset": 1951, "endOffset": 1954, "line": 49, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1970, "endOffset": 1975, "line": 49, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2136, "endOffset": 2149, "line": 55, "type": {"nodeId": "0"}}, {"startOffset": 2164, "endOffset": 2173, "line": 56, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2223, "endOffset": 2241, "line": 58, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2223, "endOffset": 2226, "line": 58, "type": {"nodeId": "140097403417728"}}, {"startOffset": 2188, "endOffset": 2206, "line": 58, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}}, {"startOffset": 2321, "endOffset": 2324, "line": 61, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2329, "endOffset": 2333, "line": 61, "type": {"nodeId": "140097332392480"}}, {"startOffset": 2335, "endOffset": 2353, "line": 61, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2335, "endOffset": 2338, "line": 61, "type": {"nodeId": "140097403417728"}}, {"startOffset": 2369, "endOffset": 2391, "line": 62, "type": {"nodeId": "140097332385648"}}, {"startOffset": 2369, "endOffset": 2384, "line": 62, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 2369, "endOffset": 2372, "line": 62, "type": {"nodeId": "140097403417728"}}, {"startOffset": 2393, "endOffset": 2397, "line": 62, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2400, "endOffset": 2403, "line": 62, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2419, "endOffset": 2439, "line": 63, "type": {"nodeId": "140097332437824"}}, {"startOffset": 2419, "endOffset": 2432, "line": 63, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 2473, "endOffset": 2491, "line": 65, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2473, "endOffset": 2476, "line": 65, "type": {"nodeId": "140097403417728"}}, {"startOffset": 2453, "endOffset": 2469, "line": 65, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2508, "endOffset": 2524, "line": 67, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2547, "endOffset": 2550, "line": 68, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 2555, "endOffset": 2566, "line": 68, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}]}}, {"startOffset": 2555, "endOffset": 2558, "line": 68, "type": {"nodeId": "140097403417728"}}, {"startOffset": 2595, "endOffset": 2598, "line": 69, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 2585, "endOffset": 2585, "line": 69, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2588, "endOffset": 2588, "line": 69, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2591, "endOffset": 2591, "line": 69, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2631, "endOffset": 2646, "line": 71, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 2631, "endOffset": 2634, "line": 71, "type": {"nodeId": "140097403417728"}}, {"startOffset": 2648, "endOffset": 2648, "line": 71, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2617, "endOffset": 2627, "line": 71, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2681, "endOffset": 2696, "line": 72, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 2681, "endOffset": 2684, "line": 72, "type": {"nodeId": "140097403417728"}}, {"startOffset": 2698, "endOffset": 2698, "line": 72, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2667, "endOffset": 2677, "line": 72, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2721, "endOffset": 2731, "line": 74, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2736, "endOffset": 2746, "line": 74, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3326, "endOffset": 3334, "line": 85, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3340, "endOffset": 3350, "line": 85, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3353, "endOffset": 3363, "line": 85, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3428, "endOffset": 3446, "line": 87, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}}, {"startOffset": 3448, "endOffset": 3456, "line": 87, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3500, "endOffset": 3518, "line": 88, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}}, {"startOffset": 3520, "endOffset": 3528, "line": 88, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3536, "endOffset": 3536, "line": 88, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3627, "endOffset": 3627, "line": 90, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3630, "endOffset": 3630, "line": 90, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3633, "endOffset": 3633, "line": 90, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3593, "endOffset": 3611, "line": 90, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}}, {"startOffset": 3613, "endOffset": 3621, "line": 90, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3661, "endOffset": 3679, "line": 92, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}}, {"startOffset": 3701, "endOffset": 3710, "line": 93, "type": {"nodeId": "140097386759552"}}, {"startOffset": 3718, "endOffset": 3721, "line": 93, "type": {"nodeId": "140097332199232"}}, {"startOffset": 3755, "endOffset": 3758, "line": 94, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}}, {"startOffset": 3745, "endOffset": 3745, "line": 94, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3748, "endOffset": 3748, "line": 94, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3751, "endOffset": 3751, "line": 94, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3795, "endOffset": 3810, "line": 96, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 3795, "endOffset": 3798, "line": 96, "type": {"nodeId": "140097403417728"}}, {"startOffset": 3812, "endOffset": 3812, "line": 96, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3781, "endOffset": 3791, "line": 96, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3849, "endOffset": 3864, "line": 97, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 3849, "endOffset": 3852, "line": 97, "type": {"nodeId": "140097403417728"}}, {"startOffset": 3866, "endOffset": 3866, "line": 97, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3835, "endOffset": 3845, "line": 97, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3893, "endOffset": 3903, "line": 99, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3908, "endOffset": 3918, "line": 99, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3959, "endOffset": 3959, "line": 100, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3945, "endOffset": 3954, "line": 100, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3985, "endOffset": 3994, "line": 101, "type": {"nodeId": "140097332328736"}}, {"startOffset": 3985, "endOffset": 3988, "line": 101, "type": {"nodeId": "140097403417728"}}, {"startOffset": 3996, "endOffset": 4009, "line": 101, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 4012, "endOffset": 4022, "line": 101, "type": {"nodeId": "140097499822944"}}, {"startOffset": 4025, "endOffset": 4035, "line": 101, "type": {"nodeId": "140097499822944"}}, {"startOffset": 4062, "endOffset": 4066, "line": 102, "type": {"nodeId": "140097386890064"}}, {"startOffset": 4068, "endOffset": 4083, "line": 102, "type": {"nodeId": "140097499822944"}}, {"startOffset": 4068, "endOffset": 4089, "line": 102, "type": {"nodeId": "140097499822944"}}, {"startOffset": 4068, "endOffset": 4109, "line": 102, "type": {"nodeId": "140097499822944"}}, {"startOffset": 4140, "endOffset": 4156, "line": 103, "type": {"nodeId": "140097499822944"}}, {"startOffset": 4205, "endOffset": 4223, "line": 105, "type": {"nodeId": "140097499822944"}}, {"startOffset": 4205, "endOffset": 4208, "line": 105, "type": {"nodeId": "140097403417728"}}, {"startOffset": 4176, "endOffset": 4194, "line": 105, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}}, {"startOffset": 4233, "endOffset": 4237, "line": 106, "type": {"nodeId": "140097386890064"}}, {"startOffset": 4239, "endOffset": 4301, "line": 106, "type": {"nodeId": "140097499822944"}}]}, "definitions": {"boruvka": {"__name__": {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": false}}, "__doc__": {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": false}}, "__file__": {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": false}}, "__package__": {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": false}}, "__annotations__": {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": false}}, "Graph": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403417728"}}}}, "builtins": {"object": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499811328"}}}, "bool": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499812032"}}}, "function": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499812384"}}}, "staticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "classmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "type": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499822240"}}}, "super": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499822592"}}}, "int": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499822944"}}}, "float": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499823296"}}}, "complex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499823648"}}}, "_FormatMapMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428308032"}}}, "_TranslateTable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428308384"}}}, "str": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428308736"}}}, "bytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428309088"}}}, "bytearray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428309440"}}}, "memoryview": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428309792"}}}, "slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428310144"}}}, "tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428310496"}}}, "list": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428310848"}}}, "dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428311200"}}}, "set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407458240"}}}, "frozenset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407458592"}}}, "enumerate": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407458944"}}}, "range": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428311552"}}}, "property": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428311904"}}}, "_NotImplementedType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428312256"}}}, "_PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403220416"}}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428312608"}}}, "filter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407459296"}}}, "_GetItemIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428312960"}}}, "map": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407459648"}}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403220768"}}}, "_SupportsPow2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428313312"}}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428313664"}}}, "_SupportsPow3": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428314016"}}}, "reversed": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407460000"}}}, "_SupportsRound1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428314368"}}}, "_SupportsRound2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428314720"}}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403221120"}}}, "zip": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407460352"}}}, "ellipsis": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428315072"}}}, "BaseException": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428315424"}}}, "GeneratorExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428315776"}}}, "KeyboardInterrupt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428316128"}}}, "SystemExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428316480"}}}, "Exception": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428316832"}}}, "StopIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428317184"}}}, "OSError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428317536"}}}, "ArithmeticError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428317888"}}}, "AssertionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428318240"}}}, "AttributeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428318592"}}}, "BufferError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428318944"}}}, "EOFError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428319296"}}}, "ImportError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428319648"}}}, "LookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428320000"}}}, "MemoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428320352"}}}, "NameError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428320704"}}}, "ReferenceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428321056"}}}, "RuntimeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428321408"}}}, "StopAsyncIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428321760"}}}, "SyntaxError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428322112"}}}, "SystemError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428322464"}}}, "TypeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428322816"}}}, "ValueError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428323168"}}}, "FloatingPointError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428323520"}}}, "OverflowError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428323872"}}}, "ZeroDivisionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407270976"}}}, "ModuleNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407271328"}}}, "IndexError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407271680"}}}, "KeyError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407272032"}}}, "UnboundLocalError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407272384"}}}, "BlockingIOError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407272736"}}}, "ChildProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407273088"}}}, "ConnectionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407273440"}}}, "BrokenPipeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407273792"}}}, "ConnectionAbortedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407274144"}}}, "ConnectionRefusedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407274496"}}}, "ConnectionResetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407274848"}}}, "FileExistsError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407275200"}}}, "FileNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407275552"}}}, "InterruptedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407275904"}}}, "IsADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407276256"}}}, "NotADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407276608"}}}, "PermissionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407276960"}}}, "ProcessLookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407277312"}}}, "TimeoutError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407277664"}}}, "NotImplementedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407278016"}}}, "RecursionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407278368"}}}, "IndentationError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407278720"}}}, "TabError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407279072"}}}, "UnicodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407279424"}}}, "UnicodeDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407279776"}}}, "UnicodeEncodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407280128"}}}, "UnicodeTranslateError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407280480"}}}, "Warning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407280832"}}}, "UserWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407281184"}}}, "DeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407281536"}}}, "SyntaxWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407281888"}}}, "RuntimeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407282240"}}}, "FutureWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407282592"}}}, "PendingDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407282944"}}}, "ImportWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407283296"}}}, "UnicodeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407283648"}}}, "BytesWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407284000"}}}, "ResourceWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407284352"}}}, "EncodingWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407284704"}}}}, "_ast": {"AST": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402964800"}}}, "mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402965152"}}}, "type_ignore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402965504"}}}, "TypeIgnore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402965856"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402966208"}}}, "Module": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402966560"}}}, "Interactive": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402966912"}}}, "Expression": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402967264"}}}, "stmt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402967616"}}}, "FunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402967968"}}}, "AsyncFunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402968320"}}}, "ClassDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402968672"}}}, "Return": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402969024"}}}, "Delete": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402969376"}}}, "Assign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402969728"}}}, "AugAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402970080"}}}, "AnnAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402970432"}}}, "For": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402970784"}}}, "AsyncFor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402971136"}}}, "While": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402971488"}}}, "If": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402971840"}}}, "With": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402972192"}}}, "AsyncWith": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402972544"}}}, "Raise": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402972896"}}}, "Try": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402973248"}}}, "Assert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402973600"}}}, "Import": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402973952"}}}, "ImportFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402974304"}}}, "Global": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402974656"}}}, "Nonlocal": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402975008"}}}, "Expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402975360"}}}, "Pass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402975712"}}}, "Break": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402976064"}}}, "Continue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402976416"}}}, "expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402976768"}}}, "BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402977120"}}}, "BinOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402977472"}}}, "UnaryOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402977824"}}}, "Lambda": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403109440"}}}, "IfExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403109792"}}}, "Dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403110144"}}}, "Set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403110496"}}}, "ListComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403110848"}}}, "SetComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403111200"}}}, "DictComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403111552"}}}, "GeneratorExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403111904"}}}, "Await": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403112256"}}}, "Yield": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403112608"}}}, "YieldFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403112960"}}}, "Compare": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403113312"}}}, "Call": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403113664"}}}, "FormattedValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403114016"}}}, "JoinedStr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403114368"}}}, "Constant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403114720"}}}, "NamedExpr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403115072"}}}, "Attribute": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403115424"}}}, "Slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403115776"}}}, "Subscript": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403116128"}}}, "Starred": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403116480"}}}, "Name": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403116832"}}}, "List": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403117184"}}}, "Tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403117536"}}}, "expr_context": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403117888"}}}, "Del": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403118240"}}}, "Load": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403118592"}}}, "Store": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403118944"}}}, "boolop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403119296"}}}, "And": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403119648"}}}, "Or": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403120000"}}}, "operator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403120352"}}}, "Add": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403120704"}}}, "BitAnd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403121056"}}}, "BitOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403121408"}}}, "BitXor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403121760"}}}, "Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403122112"}}}, "FloorDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403122464"}}}, "LShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403122816"}}}, "Mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403123168"}}}, "Mult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403123520"}}}, "MatMult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403123872"}}}, "Pow": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403124224"}}}, "RShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403124576"}}}, "Sub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403124928"}}}, "unaryop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403125280"}}}, "Invert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403207744"}}}, "Not": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403208096"}}}, "UAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403208448"}}}, "USub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403208800"}}}, "cmpop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403209152"}}}, "Eq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403209504"}}}, "Gt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403209856"}}}, "GtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403210208"}}}, "In": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403210560"}}}, "Is": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403210912"}}}, "IsNot": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403211264"}}}, "Lt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403211616"}}}, "LtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403211968"}}}, "NotEq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403212320"}}}, "NotIn": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403212672"}}}, "comprehension": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403213024"}}}, "excepthandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403213376"}}}, "ExceptHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403213728"}}}, "arguments": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403214080"}}}, "arg": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403214432"}}}, "keyword": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403214784"}}}, "alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403215136"}}}, "withitem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403215488"}}}, "Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403215840"}}}, "pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403216192"}}}, "match_case": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403216544"}}}, "MatchValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403216896"}}}, "MatchSingleton": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403217248"}}}, "MatchSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403217600"}}}, "MatchStar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403217952"}}}, "MatchMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403218304"}}}, "MatchClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403218656"}}}, "MatchAs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403219008"}}}, "MatchOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403219360"}}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419746240"}}}, "SupportsNext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419746592"}}}, "SupportsAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419746944"}}}, "SupportsDunderLT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419747296"}}}, "SupportsDunderGT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419747648"}}}, "SupportsDunderLE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419748000"}}}, "SupportsDunderGE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419748352"}}}, "SupportsAllComparisons": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419748704"}}}, "SupportsAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419749056"}}}, "SupportsRAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419749408"}}}, "SupportsSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419749760"}}}, "SupportsRSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419750112"}}}, "SupportsDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419750464"}}}, "SupportsRDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419750816"}}}, "SupportsIter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419751168"}}}, "SupportsAiter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419751520"}}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419751872"}}}, "SupportsTrunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419752224"}}}, "SupportsItems": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419752576"}}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419752928"}}}, "SupportsGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419753280"}}}, "SupportsItemAccess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419753632"}}}, "HasFileno": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419753984"}}}, "SupportsRead": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419754336"}}}, "SupportsReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419754688"}}}, "SupportsNoArgReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419755040"}}}, "SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402961984"}}}, "SliceableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402962336"}}}, "IndexableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402962688"}}}, "SupportsGetItemBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402963040"}}}, "SizedBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402963392"}}}, "structseq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402963744"}}}, "DataclassInstance": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402964096"}}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407721440"}}}, "_flags": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403222528"}}}, "_float_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403222880"}}}, "_hash_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403223232"}}}, "_implementation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407721792"}}}, "_int_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403223584"}}}, "_thread_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403404352"}}}, "_version_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403404704"}}}, "UnraisableHookArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407722144"}}}, "_asyncgen_hooks": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403405056"}}}}, "types": {"_Cell": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407467040"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407713344"}}}, "CodeType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407713696"}}}, "MappingProxyType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407714048"}}}, "SimpleNamespace": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407714400"}}}, "_LoaderProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407714752"}}}, "ModuleType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407715104"}}}, "GeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407715456"}}}, "AsyncGeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407715808"}}}, "CoroutineType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407716160"}}}, "_StaticFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407716512"}}}, "MethodType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407716864"}}}, "BuiltinFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407717216"}}}, "WrapperDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407717568"}}}, "MethodWrapperType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407717920"}}}, "MethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407718272"}}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407718624"}}}, "TracebackType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407718976"}}}, "FrameType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407719328"}}}, "GetSetDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407719680"}}}, "MemberDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407720032"}}}, "GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407720384"}}}, "NoneType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407720736"}}}, "UnionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407721088"}}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407457184"}}}, "dict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407457536"}}}, "dict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407457888"}}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407727776"}}}, "IOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407728128"}}}, "RawIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407728480"}}}, "BufferedIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407728832"}}}, "FileIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407729184"}}}, "BytesIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462517824"}}}, "BufferedReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462518176"}}}, "BufferedWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462518528"}}}, "BufferedRandom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462518880"}}}, "BufferedRWPair": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462519232"}}}, "TextIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462519584"}}}, "TextIOWrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462519936"}}}, "StringIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462520288"}}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403417024"}}}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407465632"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499812736"}}}, "_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499813088"}}}, "ParamSpecArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499813440"}}}, "ParamSpecKwargs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499813792"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499814144"}}}, "NewType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499814496"}}}, "_Alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499814848"}}}, "_ProtocolMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407286816"}}}, "SupportsInt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407451200"}}}, "SupportsFloat": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407451552"}}}, "SupportsComplex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407451904"}}}, "SupportsBytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407452256"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407452608"}}}, "SupportsAbs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499815200"}}}, "SupportsRound": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499815552"}}}, "Sized": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407452960"}}}, "Hashable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407453312"}}}, "Iterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499815904"}}}, "Iterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499816256"}}}, "Reversible": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499816608"}}}, "Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499816960"}}}, "Awaitable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499817312"}}}, "Coroutine": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499817664"}}}, "AwaitableGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407453664"}}}, "AsyncIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499818016"}}}, "AsyncIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499818368"}}}, "AsyncGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499818720"}}}, "Container": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499819072"}}}, "Collection": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499819424"}}}, "Sequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499819776"}}}, "MutableSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499820128"}}}, "AbstractSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499820480"}}}, "MutableSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499820832"}}}, "MappingView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407454016"}}}, "ItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407454368"}}}, "KeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407454720"}}}, "ValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407455072"}}}, "Mapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499821184"}}}, "MutableMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499821536"}}}, "IO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407455424"}}}, "BinaryIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407455776"}}}, "TextIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407456128"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407456480"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407456832"}}}, "ForwardRef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499821888"}}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407463872"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407464224"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407464576"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407464928"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407465280"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407465632"}}}, "TypeVarTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407465984"}}}, "TypeAliasType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407466336"}}}, "Buffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407466688"}}}}, "collections": {"UserDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407460704"}}}, "UserList": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407461056"}}}, "UserString": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407461408"}}}, "deque": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407461760"}}}, "Counter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407286112"}}}, "_OrderedDictKeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419740960"}}}, "_OrderedDictItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419741312"}}}, "_OrderedDictValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419741664"}}}, "_odict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407462112"}}}, "_odict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407462464"}}}, "_odict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407462816"}}}, "OrderedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407463168"}}}, "defaultdict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407286464"}}}, "ChainMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407463520"}}}}, "dataclasses": {"_MISSING_TYPE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428530880"}}}, "KW_ONLY": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428531232"}}}, "_DefaultFactory": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428531584"}}}, "Field": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428531936"}}}, "FrozenInstanceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428532288"}}}, "InitVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428532640"}}}}, "os": {"_Environ": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407727072"}}}, "stat_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403221472"}}}, "PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403405760"}}}, "DirEntry": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407727424"}}}, "statvfs_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403406112"}}}, "uname_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403406464"}}}, "terminal_size": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403406816"}}}, "_ScandirIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403407168"}}}, "_wrap_close": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403407520"}}}, "times_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403407872"}}}, "waitid_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403408224"}}}, "sched_param": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403408576"}}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462524864"}}}, "Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462525216"}}}, "ResourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462525568"}}}, "InspectLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462525920"}}}, "ExecutionLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462526272"}}}, "SourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462526624"}}}, "MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462526976"}}}, "PathEntryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462527328"}}}, "FileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462527680"}}}, "ResourceReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462528032"}}}, "Traversable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462528384"}}}, "TraversableResources": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462528736"}}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462524160"}}}, "BuiltinImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403409984"}}}, "FrozenImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403410336"}}}, "WindowsRegistryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403410688"}}}, "PathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462524512"}}}, "FileFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403411040"}}}, "SourceFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403411392"}}}, "SourcelessFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403411744"}}}, "ExtensionFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403412096"}}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407285056"}}}, "abstractclassmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractstaticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractproperty": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407285408"}}}, "ABC": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407285760"}}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419742016"}}}, "_ReadableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419742368"}}}, "_Stream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403412448"}}}, "_Encoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419742720"}}}, "_Decoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419743072"}}}, "_StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419743424"}}}, "_StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419743776"}}}, "_IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419744128"}}}, "_IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419744480"}}}, "CodecInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403412800"}}}, "Codec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419744832"}}}, "IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419745184"}}}, "IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419745536"}}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403413152"}}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403413504"}}}, "StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403413856"}}}, "StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403414208"}}}, "StreamReaderWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403414560"}}}, "StreamRecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419745888"}}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428532992"}}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428533344"}}}, "ContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428533696"}}}, "_GeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428534048"}}}, "AsyncContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428534400"}}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428534752"}}}, "_SupportsClose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428535104"}}}, "closing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428535456"}}}, "_SupportsAclose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428535808"}}}, "aclosing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428536160"}}}, "suppress": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428536512"}}}, "_RedirectStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428536864"}}}, "redirect_stdout": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419739200"}}}, "redirect_stderr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419739552"}}}, "ExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419739904"}}}, "AsyncExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419740256"}}}, "nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419740608"}}}}, "re": {"Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407726368"}}}, "Pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407726720"}}}, "RegexFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403405408"}}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462529088"}}}, "EnumMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462529440"}}}, "Enum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462529792"}}}, "IntEnum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462530144"}}}, "Flag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462530496"}}}, "IntFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462530848"}}}, "auto": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462531200"}}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407722496"}}}, "SubprocessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407722848"}}}, "TimeoutExpired": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407723200"}}}, "CalledProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407723552"}}}, "Popen": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407723904"}}}}, "importlib": {"Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462525216"}}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462520640"}}}, "PackageNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462521344"}}}, "EntryPoint": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462522048"}}}, "EntryPoints": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462522400"}}}, "SelectableGroups": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462522752"}}}, "PackagePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403417376"}}}, "FileHash": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462523104"}}}, "Distribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462523456"}}}, "DistributionFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403408928"}}}, "MetadataPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403409632"}}}, "PathDistribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462523808"}}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402964448"}}}}, "sre_constants": {"error": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407725664"}}}, "_NamedIntConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407726016"}}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462520640"}}}, "SimplePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462520992"}}}}, "email.message": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462532608"}}}, "MIMEPart": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462532960"}}}, "EmailMessage": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462533312"}}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403414912"}}}, "PurePosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403415264"}}}, "PureWindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403415616"}}}, "Path": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403415968"}}}, "PosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403416320"}}}, "WindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403416672"}}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407724256"}}}, "_State": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407724608"}}}, "SubPattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407724960"}}}, "Tokenizer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407725312"}}}}, "email": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462532608"}}}, "Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462531552"}}}}, "email.charset": {"Charset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428530528"}}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428530176"}}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428521024"}}}, "MessageParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428521376"}}}, "HeaderParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428521728"}}}, "BoundaryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428522080"}}}, "MultipartConversionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428522432"}}}, "CharsetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428522784"}}}, "MessageDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428523136"}}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428523488"}}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428523840"}}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428524192"}}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428524544"}}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428524896"}}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428525248"}}}, "UndecodableBytesDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428525600"}}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428525952"}}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428526304"}}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428526656"}}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428527008"}}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428527360"}}}, "HeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428527712"}}}, "InvalidHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428528064"}}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428528416"}}}, "NonPrintableDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428528768"}}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428529120"}}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428529472"}}}, "InvalidDateDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428529824"}}}}, "email.policy": {"Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462531552"}}}, "Compat32": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462531904"}}}, "EmailPolicy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462532256"}}}}, "email.header": {"Header": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462533664"}}}}}, "names": {"boruvka": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Graph", "kind": "LocalType"}], "builtins": [{"name": "object", "kind": "LocalType"}, {"name": "bool", "kind": "LocalType"}, {"name": "function", "kind": "LocalType"}, {"name": "None", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "reveal_locals", "kind": "Other"}, {"name": "True", "kind": "Other"}, {"name": "False", "kind": "Other"}, {"name": "__debug__", "kind": "Other"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T3", "kind": "Other"}, {"name": "_T4", "kind": "Other"}, {"name": "_T5", "kind": "Other"}, {"name": "_SupportsNextT", "kind": "Other"}, {"name": "_SupportsAnextT", "kind": "Other"}, {"name": "_AwaitableT", "kind": "Other"}, {"name": "_AwaitableT_co", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "staticmethod", "kind": "LocalType"}, {"name": "classmethod", "kind": "LocalType"}, {"name": "type", "kind": "LocalType"}, {"name": "super", "kind": "LocalType"}, {"name": "_PositiveInteger", "kind": "Other"}, {"name": "_NegativeInteger", "kind": "Other"}, {"name": "_LiteralInteger", "kind": "Other"}, {"name": "int", "kind": "LocalType"}, {"name": "float", "kind": "LocalType"}, {"name": "complex", "kind": "LocalType"}, {"name": "_FormatMapMapping", "kind": "LocalType"}, {"name": "_TranslateTable", "kind": "LocalType"}, {"name": "str", "kind": "LocalType"}, {"name": "bytes", "kind": "LocalType"}, {"name": "bytearray", "kind": "LocalType"}, {"name": "memoryview", "kind": "LocalType"}, {"name": "slice", "kind": "LocalType"}, {"name": "tuple", "kind": "LocalType"}, {"name": "list", "kind": "LocalType"}, {"name": "dict", "kind": "LocalType"}, {"name": "set", "kind": "LocalType"}, {"name": "frozenset", "kind": "LocalType"}, {"name": "enumerate", "kind": "LocalType"}, {"name": "range", "kind": "LocalType"}, {"name": "property", "kind": "LocalType"}, {"name": "_NotImplementedType", "kind": "LocalType"}, {"name": "NotImplemented", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "ascii", "kind": "Other"}, {"name": "bin", "kind": "Other"}, {"name": "breakpoint", "kind": "Other"}, {"name": "callable", "kind": "Other"}, {"name": "chr", "kind": "Other"}, {"name": "_PathLike", "kind": "LocalType"}, {"name": "aiter", "kind": "Other"}, {"name": "_SupportsSynchronousAnext", "kind": "LocalType"}, {"name": "anext", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "credits", "kind": "Other"}, {"name": "delattr", "kind": "Other"}, {"name": "dir", "kind": "Other"}, {"name": "divmod", "kind": "Other"}, {"name": "eval", "kind": "Other"}, {"name": "exec", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "filter", "kind": "LocalType"}, {"name": "format", "kind": "Other"}, {"name": "getattr", "kind": "Other"}, {"name": "globals", "kind": "Other"}, {"name": "hasattr", "kind": "Other"}, {"name": "hash", "kind": "Other"}, {"name": "help", "kind": "Other"}, {"name": "hex", "kind": "Other"}, {"name": "id", "kind": "Other"}, {"name": "input", "kind": "Other"}, {"name": "_GetItemIterable", "kind": "LocalType"}, {"name": "iter", "kind": "Other"}, {"name": "_ClassInfo", "kind": "Other"}, {"name": "isinstance", "kind": "Other"}, {"name": "issubclass", "kind": "Other"}, {"name": "len", "kind": "Other"}, {"name": "license", "kind": "Other"}, {"name": "locals", "kind": "Other"}, {"name": "map", "kind": "LocalType"}, {"name": "max", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "next", "kind": "Other"}, {"name": "oct", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "ord", "kind": "Other"}, {"name": "_SupportsWriteAndFlush", "kind": "LocalType"}, {"name": "print", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_M", "kind": "Other"}, {"name": "_SupportsPow2", "kind": "LocalType"}, {"name": "_SupportsPow3NoneOnly", "kind": "LocalType"}, {"name": "_SupportsPow3", "kind": "LocalType"}, {"name": "_SupportsSomeKindOfPow", "kind": "Other"}, {"name": "pow", "kind": "Other"}, {"name": "quit", "kind": "Other"}, {"name": "reversed", "kind": "LocalType"}, {"name": "repr", "kind": "Other"}, {"name": "_SupportsRound1", "kind": "LocalType"}, {"name": "_SupportsRound2", "kind": "LocalType"}, {"name": "round", "kind": "Other"}, {"name": "setattr", "kind": "Other"}, {"name": "sorted", "kind": "Other"}, {"name": "_AddableT1", "kind": "Other"}, {"name": "_AddableT2", "kind": "Other"}, {"name": "_SupportsSumWithNoDefaultGiven", "kind": "LocalType"}, {"name": "_SupportsSumNoDefaultT", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "vars", "kind": "Other"}, {"name": "zip", "kind": "LocalType"}, {"name": "__import__", "kind": "Other"}, {"name": "__build_class__", "kind": "Other"}, {"name": "ellipsis", "kind": "LocalType"}, {"name": "Ellipsis", "kind": "Other"}, {"name": "BaseException", "kind": "LocalType"}, {"name": "GeneratorExit", "kind": "LocalType"}, {"name": "KeyboardInterrupt", "kind": "LocalType"}, {"name": "SystemExit", "kind": "LocalType"}, {"name": "Exception", "kind": "LocalType"}, {"name": "StopIteration", "kind": "LocalType"}, {"name": "OSError", "kind": "LocalType"}, {"name": "EnvironmentError", "kind": "Other"}, {"name": "IOError", "kind": "Other"}, {"name": "ArithmeticError", "kind": "LocalType"}, {"name": "AssertionError", "kind": "LocalType"}, {"name": "AttributeError", "kind": "LocalType"}, {"name": "BufferError", "kind": "LocalType"}, {"name": "EOFError", "kind": "LocalType"}, {"name": "ImportError", "kind": "LocalType"}, {"name": "LookupError", "kind": "LocalType"}, {"name": "MemoryError", "kind": "LocalType"}, {"name": "NameError", "kind": "LocalType"}, {"name": "ReferenceError", "kind": "LocalType"}, {"name": "RuntimeError", "kind": "LocalType"}, {"name": "StopAsyncIteration", "kind": "LocalType"}, {"name": "SyntaxError", "kind": "LocalType"}, {"name": "SystemError", "kind": "LocalType"}, {"name": "TypeError", "kind": "LocalType"}, {"name": "ValueError", "kind": "LocalType"}, {"name": "FloatingPointError", "kind": "LocalType"}, {"name": "OverflowError", "kind": "LocalType"}, {"name": "ZeroDivisionError", "kind": "LocalType"}, {"name": "ModuleNotFoundError", "kind": "LocalType"}, {"name": "IndexError", "kind": "LocalType"}, {"name": "KeyError", "kind": "LocalType"}, {"name": "UnboundLocalError", "kind": "LocalType"}, {"name": "BlockingIOError", "kind": "LocalType"}, {"name": "ChildProcessError", "kind": "LocalType"}, {"name": "ConnectionError", "kind": "LocalType"}, {"name": "BrokenPipeError", "kind": "LocalType"}, {"name": "ConnectionAbortedError", "kind": "LocalType"}, {"name": "ConnectionRefusedError", "kind": "LocalType"}, {"name": "ConnectionResetError", "kind": "LocalType"}, {"name": "FileExistsError", "kind": "LocalType"}, {"name": "FileNotFoundError", "kind": "LocalType"}, {"name": "InterruptedError", "kind": "LocalType"}, {"name": "IsADirectoryError", "kind": "LocalType"}, {"name": "NotADirectoryError", "kind": "LocalType"}, {"name": "PermissionError", "kind": "LocalType"}, {"name": "ProcessLookupError", "kind": "LocalType"}, {"name": "TimeoutError", "kind": "LocalType"}, {"name": "NotImplementedError", "kind": "LocalType"}, {"name": "RecursionError", "kind": "LocalType"}, {"name": "IndentationError", "kind": "LocalType"}, {"name": "TabError", "kind": "LocalType"}, {"name": "UnicodeError", "kind": "LocalType"}, {"name": "UnicodeDecodeError", "kind": "LocalType"}, {"name": "UnicodeEncodeError", "kind": "LocalType"}, {"name": "UnicodeTranslateError", "kind": "LocalType"}, {"name": "Warning", "kind": "LocalType"}, {"name": "UserWarning", "kind": "LocalType"}, {"name": "DeprecationWarning", "kind": "LocalType"}, {"name": "SyntaxWarning", "kind": "LocalType"}, {"name": "RuntimeWarning", "kind": "LocalType"}, {"name": "FutureWarning", "kind": "LocalType"}, {"name": "PendingDeprecationWarning", "kind": "LocalType"}, {"name": "ImportWarning", "kind": "LocalType"}, {"name": "UnicodeWarning", "kind": "LocalType"}, {"name": "BytesWarning", "kind": "LocalType"}, {"name": "ResourceWarning", "kind": "LocalType"}, {"name": "EncodingWarning", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "collections.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}], "_ast": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "PyCF_ONLY_AST", "kind": "Other"}, {"name": "PyCF_TYPE_COMMENTS", "kind": "Other"}, {"name": "PyCF_ALLOW_TOP_LEVEL_AWAIT", "kind": "Other"}, {"name": "_Identifier", "kind": "Other"}, {"name": "AST", "kind": "LocalType"}, {"name": "mod", "kind": "LocalType"}, {"name": "type_ignore", "kind": "LocalType"}, {"name": "TypeIgnore", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "Module", "kind": "LocalType"}, {"name": "Interactive", "kind": "LocalType"}, {"name": "Expression", "kind": "LocalType"}, {"name": "stmt", "kind": "LocalType"}, {"name": "FunctionDef", "kind": "LocalType"}, {"name": "AsyncFunctionDef", "kind": "LocalType"}, {"name": "ClassDef", "kind": "LocalType"}, {"name": "Return", "kind": "LocalType"}, {"name": "Delete", "kind": "LocalType"}, {"name": "Assign", "kind": "LocalType"}, {"name": "AugAssign", "kind": "LocalType"}, {"name": "AnnAssign", "kind": "LocalType"}, {"name": "For", "kind": "LocalType"}, {"name": "AsyncFor", "kind": "LocalType"}, {"name": "While", "kind": "LocalType"}, {"name": "If", "kind": "LocalType"}, {"name": "With", "kind": "LocalType"}, {"name": "AsyncWith", "kind": "LocalType"}, {"name": "Raise", "kind": "LocalType"}, {"name": "Try", "kind": "LocalType"}, {"name": "Assert", "kind": "LocalType"}, {"name": "Import", "kind": "LocalType"}, {"name": "ImportFrom", "kind": "LocalType"}, {"name": "Global", "kind": "LocalType"}, {"name": "Nonlocal", "kind": "LocalType"}, {"name": "Expr", "kind": "LocalType"}, {"name": "Pass", "kind": "LocalType"}, {"name": "Break", "kind": "LocalType"}, {"name": "Continue", "kind": "LocalType"}, {"name": "expr", "kind": "LocalType"}, {"name": "BoolOp", "kind": "LocalType"}, {"name": "BinOp", "kind": "LocalType"}, {"name": "UnaryOp", "kind": "LocalType"}, {"name": "Lambda", "kind": "LocalType"}, {"name": "IfExp", "kind": "LocalType"}, {"name": "Dict", "kind": "LocalType"}, {"name": "Set", "kind": "LocalType"}, {"name": "ListComp", "kind": "LocalType"}, {"name": "SetComp", "kind": "LocalType"}, {"name": "DictComp", "kind": "LocalType"}, {"name": "GeneratorExp", "kind": "LocalType"}, {"name": "Await", "kind": "LocalType"}, {"name": "Yield", "kind": "LocalType"}, {"name": "YieldFrom", "kind": "LocalType"}, {"name": "Compare", "kind": "LocalType"}, {"name": "Call", "kind": "LocalType"}, {"name": "FormattedValue", "kind": "LocalType"}, {"name": "JoinedStr", "kind": "LocalType"}, {"name": "Constant", "kind": "LocalType"}, {"name": "NamedExpr", "kind": "LocalType"}, {"name": "Attribute", "kind": "LocalType"}, {"name": "_Slice", "kind": "Other"}, {"name": "Slice", "kind": "LocalType"}, {"name": "Subscript", "kind": "LocalType"}, {"name": "Starred", "kind": "LocalType"}, {"name": "Name", "kind": "LocalType"}, {"name": "List", "kind": "LocalType"}, {"name": "Tuple", "kind": "LocalType"}, {"name": "expr_context", "kind": "LocalType"}, {"name": "Del", "kind": "LocalType"}, {"name": "Load", "kind": "LocalType"}, {"name": "Store", "kind": "LocalType"}, {"name": "boolop", "kind": "LocalType"}, {"name": "And", "kind": "LocalType"}, {"name": "Or", "kind": "LocalType"}, {"name": "operator", "kind": "LocalType"}, {"name": "Add", "kind": "LocalType"}, {"name": "BitAnd", "kind": "LocalType"}, {"name": "BitOr", "kind": "LocalType"}, {"name": "BitXor", "kind": "LocalType"}, {"name": "Div", "kind": "LocalType"}, {"name": "FloorDiv", "kind": "LocalType"}, {"name": "LShift", "kind": "LocalType"}, {"name": "Mod", "kind": "LocalType"}, {"name": "Mult", "kind": "LocalType"}, {"name": "MatMult", "kind": "LocalType"}, {"name": "Pow", "kind": "LocalType"}, {"name": "RShift", "kind": "LocalType"}, {"name": "Sub", "kind": "LocalType"}, {"name": "unaryop", "kind": "LocalType"}, {"name": "Invert", "kind": "LocalType"}, {"name": "Not", "kind": "LocalType"}, {"name": "UAdd", "kind": "LocalType"}, {"name": "USub", "kind": "LocalType"}, {"name": "cmpop", "kind": "LocalType"}, {"name": "Eq", "kind": "LocalType"}, {"name": "Gt", "kind": "LocalType"}, {"name": "GtE", "kind": "LocalType"}, {"name": "In", "kind": "LocalType"}, {"name": "Is", "kind": "LocalType"}, {"name": "IsNot", "kind": "LocalType"}, {"name": "Lt", "kind": "LocalType"}, {"name": "LtE", "kind": "LocalType"}, {"name": "NotEq", "kind": "LocalType"}, {"name": "NotIn", "kind": "LocalType"}, {"name": "comprehension", "kind": "LocalType"}, {"name": "excepthandler", "kind": "LocalType"}, {"name": "ExceptHandler", "kind": "LocalType"}, {"name": "arguments", "kind": "LocalType"}, {"name": "arg", "kind": "LocalType"}, {"name": "keyword", "kind": "LocalType"}, {"name": "alias", "kind": "LocalType"}, {"name": "withitem", "kind": "LocalType"}, {"name": "Match", "kind": "LocalType"}, {"name": "pattern", "kind": "LocalType"}, {"name": "_Pattern", "kind": "Other"}, {"name": "match_case", "kind": "LocalType"}, {"name": "MatchValue", "kind": "LocalType"}, {"name": "MatchSingleton", "kind": "LocalType"}, {"name": "MatchSequence", "kind": "LocalType"}, {"name": "MatchStar", "kind": "LocalType"}, {"name": "MatchMapping", "kind": "LocalType"}, {"name": "MatchClass", "kind": "LocalType"}, {"name": "MatchAs", "kind": "LocalType"}, {"name": "MatchOr", "kind": "LocalType"}], "_typeshed": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Field", "kind": "ImportedType", "fullname": "dataclasses.Field"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Buffer", "kind": "ImportedType", "fullname": "typing_extensions.Buffer"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_KT_contra", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "Incomplete", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "IdentityFunction", "kind": "LocalType"}, {"name": "SupportsNext", "kind": "LocalType"}, {"name": "SupportsAnext", "kind": "LocalType"}, {"name": "SupportsDunderLT", "kind": "LocalType"}, {"name": "SupportsDunderGT", "kind": "LocalType"}, {"name": "SupportsDunderLE", "kind": "LocalType"}, {"name": "SupportsDunderGE", "kind": "LocalType"}, {"name": "SupportsAllComparisons", "kind": "LocalType"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "SupportsAdd", "kind": "LocalType"}, {"name": "SupportsRAdd", "kind": "LocalType"}, {"name": "SupportsSub", "kind": "LocalType"}, {"name": "SupportsRSub", "kind": "LocalType"}, {"name": "SupportsDivMod", "kind": "LocalType"}, {"name": "SupportsRDivMod", "kind": "LocalType"}, {"name": "SupportsIter", "kind": "LocalType"}, {"name": "SupportsAiter", "kind": "LocalType"}, {"name": "SupportsLenAndGetItem", "kind": "LocalType"}, {"name": "SupportsTrunc", "kind": "LocalType"}, {"name": "SupportsItems", "kind": "LocalType"}, {"name": "SupportsKeysAndGetItem", "kind": "LocalType"}, {"name": "SupportsGetItem", "kind": "LocalType"}, {"name": "SupportsItemAccess", "kind": "LocalType"}, {"name": "StrPath", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "OpenTextModeUpdating", "kind": "Other"}, {"name": "OpenTextModeWriting", "kind": "Other"}, {"name": "OpenTextModeReading", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "HasFileno", "kind": "LocalType"}, {"name": "FileDescriptor", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "SupportsRead", "kind": "LocalType"}, {"name": "SupportsReadline", "kind": "LocalType"}, {"name": "SupportsNoArgReadline", "kind": "LocalType"}, {"name": "SupportsWrite", "kind": "LocalType"}, {"name": "ReadOnlyBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "LocalType"}, {"name": "IndexableBuffer", "kind": "LocalType"}, {"name": "SupportsGetItemBuffer", "kind": "LocalType"}, {"name": "SizedBuffer", "kind": "LocalType"}, {"name": "_BufferWithLen", "kind": "Other"}, {"name": "ExcInfo", "kind": "Other"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "NoneType", "kind": "ImportedType", "fullname": "types.NoneType"}, {"name": "structseq", "kind": "LocalType"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "StrOrLiteralStr", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "DataclassInstance", "kind": "LocalType"}], "sys": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "_object", "kind": "ImportedType", "fullname": "builtins.object"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "PathEntryFinder", "kind": "ImportedType", "fullname": "importlib.abc.PathEntryFinder"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ExitCode", "kind": "Other"}, {"name": "_OptExcInfo", "kind": "Other"}, {"name": "_MetaPathFinder", "kind": "LocalType"}, {"name": "abiflags", "kind": "Other"}, {"name": "argv", "kind": "Other"}, {"name": "base_exec_prefix", "kind": "Other"}, {"name": "base_prefix", "kind": "Other"}, {"name": "byteorder", "kind": "Other"}, {"name": "builtin_module_names", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "dont_write_bytecode", "kind": "Other"}, {"name": "displayhook", "kind": "Other"}, {"name": "excepthook", "kind": "Other"}, {"name": "exec_prefix", "kind": "Other"}, {"name": "executable", "kind": "Other"}, {"name": "float_repr_style", "kind": "Other"}, {"name": "hexversion", "kind": "Other"}, {"name": "last_type", "kind": "Other"}, {"name": "last_value", "kind": "Other"}, {"name": "last_traceback", "kind": "Other"}, {"name": "maxsize", "kind": "Other"}, {"name": "maxunicode", "kind": "Other"}, {"name": "meta_path", "kind": "Other"}, {"name": "modules", "kind": "Other"}, {"name": "orig_argv", "kind": "Other"}, {"name": "path", "kind": "Other"}, {"name": "path_hooks", "kind": "Other"}, {"name": "path_importer_cache", "kind": "Other"}, {"name": "platform", "kind": "Other"}, {"name": "platlibdir", "kind": "Other"}, {"name": "prefix", "kind": "Other"}, {"name": "pycache_prefix", "kind": "Other"}, {"name": "ps1", "kind": "Other"}, {"name": "ps2", "kind": "Other"}, {"name": "stdin", "kind": "Other"}, {"name": "stdout", "kind": "Other"}, {"name": "stderr", "kind": "Other"}, {"name": "stdlib_module_names", "kind": "Other"}, {"name": "__stdin__", "kind": "Other"}, {"name": "__stdout__", "kind": "Other"}, {"name": "__stderr__", "kind": "Other"}, {"name": "tracebacklimit", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "api_version", "kind": "Other"}, {"name": "warnoptions", "kind": "Other"}, {"name": "_xoptions", "kind": "Other"}, {"name": "_UninstantiableStructseq", "kind": "Other"}, {"name": "flags", "kind": "Other"}, {"name": "_FlagTuple", "kind": "Other"}, {"name": "_flags", "kind": "LocalType"}, {"name": "float_info", "kind": "Other"}, {"name": "_float_info", "kind": "LocalType"}, {"name": "hash_info", "kind": "Other"}, {"name": "_hash_info", "kind": "LocalType"}, {"name": "implementation", "kind": "Other"}, {"name": "_implementation", "kind": "LocalType"}, {"name": "int_info", "kind": "Other"}, {"name": "_int_info", "kind": "LocalType"}, {"name": "_ThreadInfoName", "kind": "Other"}, {"name": "_ThreadInfoLock", "kind": "Other"}, {"name": "_thread_info", "kind": "LocalType"}, {"name": "thread_info", "kind": "Other"}, {"name": "_version_info", "kind": "LocalType"}, {"name": "version_info", "kind": "Other"}, {"name": "call_tracing", "kind": "Other"}, {"name": "_clear_type_cache", "kind": "Other"}, {"name": "_current_frames", "kind": "Other"}, {"name": "_getframe", "kind": "Other"}, {"name": "_debugmallocstats", "kind": "Other"}, {"name": "__displayhook__", "kind": "Other"}, {"name": "__excepthook__", "kind": "Other"}, {"name": "exc_info", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "getallocatedblocks", "kind": "Other"}, {"name": "getdefaultencoding", "kind": "Other"}, {"name": "getdlopenflags", "kind": "Other"}, {"name": "getfilesystemencoding", "kind": "Other"}, {"name": "getfilesystemencodeerrors", "kind": "Other"}, {"name": "getrefcount", "kind": "Other"}, {"name": "getrecursionlimit", "kind": "Other"}, {"name": "getsizeof", "kind": "Other"}, {"name": "getswitchinterval", "kind": "Other"}, {"name": "getprofile", "kind": "Other"}, {"name": "setprofile", "kind": "Other"}, {"name": "gettrace", "kind": "Other"}, {"name": "settrace", "kind": "Other"}, {"name": "intern", "kind": "Other"}, {"name": "is_finalizing", "kind": "Other"}, {"name": "breakpointhook", "kind": "Other"}, {"name": "__breakpointhook__", "kind": "Other"}, {"name": "setdlopenflags", "kind": "Other"}, {"name": "setrecursionlimit", "kind": "Other"}, {"name": "setswitchinterval", "kind": "Other"}, {"name": "gettotalrefcount", "kind": "Other"}, {"name": "UnraisableHookArgs", "kind": "LocalType"}, {"name": "unraisablehook", "kind": "Other"}, {"name": "__unraisablehook__", "kind": "Other"}, {"name": "addaudithook", "kind": "Other"}, {"name": "audit", "kind": "Other"}, {"name": "_AsyncgenHook", "kind": "Other"}, {"name": "_asyncgen_hooks", "kind": "LocalType"}, {"name": "get_asyncgen_hooks", "kind": "Other"}, {"name": "set_asyncgen_hooks", "kind": "Other"}, {"name": "get_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_int_max_str_digits", "kind": "Other"}, {"name": "get_int_max_str_digits", "kind": "Other"}], "types": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeVarTuple", "kind": "ImportedType", "fullname": "typing_extensions.TypeVarTuple"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_Cell", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "LambdaType", "kind": "Other"}, {"name": "CodeType", "kind": "LocalType"}, {"name": "MappingProxyType", "kind": "LocalType"}, {"name": "SimpleNamespace", "kind": "LocalType"}, {"name": "_LoaderProtocol", "kind": "LocalType"}, {"name": "ModuleType", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "GeneratorType", "kind": "LocalType"}, {"name": "AsyncGeneratorType", "kind": "LocalType"}, {"name": "CoroutineType", "kind": "LocalType"}, {"name": "_StaticFunctionType", "kind": "LocalType"}, {"name": "MethodType", "kind": "LocalType"}, {"name": "BuiltinFunctionType", "kind": "LocalType"}, {"name": "BuiltinMethodType", "kind": "Other"}, {"name": "WrapperDescriptorType", "kind": "LocalType"}, {"name": "MethodWrapperType", "kind": "LocalType"}, {"name": "MethodDescriptorType", "kind": "LocalType"}, {"name": "ClassMethodDescriptorType", "kind": "LocalType"}, {"name": "TracebackType", "kind": "LocalType"}, {"name": "FrameType", "kind": "LocalType"}, {"name": "GetSetDescriptorType", "kind": "LocalType"}, {"name": "MemberDescriptorType", "kind": "LocalType"}, {"name": "new_class", "kind": "Other"}, {"name": "resolve_bases", "kind": "Other"}, {"name": "prepare_class", "kind": "Other"}, {"name": "DynamicClassAttribute", "kind": "Other"}, {"name": "_Fn", "kind": "Other"}, {"name": "_R", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "coroutine", "kind": "Other"}, {"name": "CellType", "kind": "Other"}, {"name": "GenericAlias", "kind": "LocalType"}, {"name": "NoneType", "kind": "LocalType"}, {"name": "EllipsisType", "kind": "Other"}, {"name": "_NotImplementedType", "kind": "ImportedType", "fullname": "builtins._NotImplementedType"}, {"name": "NotImplementedType", "kind": "Other"}, {"name": "UnionType", "kind": "LocalType"}], "_collections_abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "MappingProxyType", "kind": "ImportedType", "fullname": "types.MappingProxyType"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Protocol", "kind": "Other"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "dict_keys", "kind": "LocalType"}, {"name": "dict_values", "kind": "LocalType"}, {"name": "dict_items", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "io": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "builtins", "kind": "Module", "fullname": "builtins"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "_Opener", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "DEFAULT_BUFFER_SIZE", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "open_code", "kind": "Other"}, {"name": "BlockingIOError", "kind": "Other"}, {"name": "UnsupportedOperation", "kind": "LocalType"}, {"name": "IOBase", "kind": "LocalType"}, {"name": "RawIOBase", "kind": "LocalType"}, {"name": "BufferedIOBase", "kind": "LocalType"}, {"name": "FileIO", "kind": "LocalType"}, {"name": "BytesIO", "kind": "LocalType"}, {"name": "BufferedReader", "kind": "LocalType"}, {"name": "BufferedWriter", "kind": "LocalType"}, {"name": "BufferedRandom", "kind": "LocalType"}, {"name": "BufferedRWPair", "kind": "LocalType"}, {"name": "TextIOBase", "kind": "LocalType"}, {"name": "TextIOWrapper", "kind": "LocalType"}, {"name": "StringIO", "kind": "LocalType"}, {"name": "IncrementalNewlineDecoder", "kind": "LocalType"}], "typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AbstractAsyncContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractAsyncContextManager"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "BuiltinFunctionType", "kind": "ImportedType", "fullname": "types.BuiltinFunctionType"}, {"name": "CodeType", "kind": "ImportedType", "fullname": "types.CodeType"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "FunctionType", "kind": "ImportedType", "fullname": "types.FunctionType"}, {"name": "MethodDescriptorType", "kind": "ImportedType", "fullname": "types.MethodDescriptorType"}, {"name": "MethodType", "kind": "ImportedType", "fullname": "types.MethodType"}, {"name": "MethodWrapperType", "kind": "ImportedType", "fullname": "types.MethodWrapperType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "WrapperDescriptorType", "kind": "ImportedType", "fullname": "types.WrapperDescriptorType"}, {"name": "_Never", "kind": "Other"}, {"name": "_ParamSpec", "kind": "LocalType"}, {"name": "_final", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "_promote", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "LocalType"}, {"name": "ParamSpecKwargs", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "LocalType"}, {"name": "_S", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "_Alias", "kind": "LocalType"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "_ProtocolMeta", "kind": "LocalType"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "LocalType"}, {"name": "SupportsFloat", "kind": "LocalType"}, {"name": "SupportsComplex", "kind": "LocalType"}, {"name": "SupportsBytes", "kind": "LocalType"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "SupportsAbs", "kind": "LocalType"}, {"name": "SupportsRound", "kind": "LocalType"}, {"name": "Sized", "kind": "LocalType"}, {"name": "Hashable", "kind": "LocalType"}, {"name": "Iterable", "kind": "LocalType"}, {"name": "Iterator", "kind": "LocalType"}, {"name": "Reversible", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "Generator", "kind": "LocalType"}, {"name": "Awaitable", "kind": "LocalType"}, {"name": "Coroutine", "kind": "LocalType"}, {"name": "AwaitableGenerator", "kind": "LocalType"}, {"name": "AsyncIterable", "kind": "LocalType"}, {"name": "AsyncIterator", "kind": "LocalType"}, {"name": "AsyncGenerator", "kind": "LocalType"}, {"name": "Container", "kind": "LocalType"}, {"name": "Collection", "kind": "LocalType"}, {"name": "Sequence", "kind": "LocalType"}, {"name": "MutableSequence", "kind": "LocalType"}, {"name": "AbstractSet", "kind": "LocalType"}, {"name": "MutableSet", "kind": "LocalType"}, {"name": "MappingView", "kind": "LocalType"}, {"name": "ItemsView", "kind": "LocalType"}, {"name": "KeysView", "kind": "LocalType"}, {"name": "ValuesView", "kind": "LocalType"}, {"name": "Mapping", "kind": "LocalType"}, {"name": "MutableMapping", "kind": "LocalType"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "LocalType"}, {"name": "BinaryIO", "kind": "LocalType"}, {"name": "TextIO", "kind": "LocalType"}, {"name": "ByteString", "kind": "Other"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "ForwardRef", "kind": "LocalType"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "_type_repr", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "typing_extensions": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing", "kind": "Module", "fullname": "typing"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "List", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Set", "kind": "Other"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Text", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Tuple", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "cast", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "Protocol", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "runtime", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "IntVar", "kind": "Other"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "TypedDict", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "_AnnotatedAlias", "kind": "Other"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "Never", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "assert_never", "kind": "Other"}, {"name": "assert_type", "kind": "Other"}, {"name": "clear_overloads", "kind": "Other"}, {"name": "get_overloads", "kind": "Other"}, {"name": "Required", "kind": "Other"}, {"name": "NotRequired", "kind": "Other"}, {"name": "Unpack", "kind": "Other"}, {"name": "dataclass_transform", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "TypeVarTuple", "kind": "LocalType"}, {"name": "deprecated", "kind": "Other"}, {"name": "override", "kind": "Other"}, {"name": "get_original_bases", "kind": "Other"}, {"name": "TypeAliasType", "kind": "LocalType"}, {"name": "Buffer", "kind": "LocalType"}, {"name": "is_protocol", "kind": "Other"}, {"name": "get_protocol_members", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}], "collections": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "SupportsItems", "kind": "ImportedType", "fullname": "_typeshed.SupportsItems"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "Callable", "kind": "Other"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "namedtuple", "kind": "Other"}, {"name": "UserDict", "kind": "LocalType"}, {"name": "UserList", "kind": "LocalType"}, {"name": "UserString", "kind": "LocalType"}, {"name": "deque", "kind": "LocalType"}, {"name": "Counter", "kind": "LocalType"}, {"name": "_OrderedDictKeysView", "kind": "LocalType"}, {"name": "_OrderedDictItemsView", "kind": "LocalType"}, {"name": "_OrderedDictValuesView", "kind": "LocalType"}, {"name": "_odict_keys", "kind": "LocalType"}, {"name": "_odict_items", "kind": "LocalType"}, {"name": "_odict_values", "kind": "LocalType"}, {"name": "OrderedDict", "kind": "LocalType"}, {"name": "defaultdict", "kind": "LocalType"}, {"name": "ChainMap", "kind": "LocalType"}], "dataclasses": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "DataclassInstance", "kind": "ImportedType", "fullname": "_typeshed.DataclassInstance"}, {"name": "Type", "kind": "ImportedType", "fullname": "builtins.type"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_DataclassT", "kind": "Other"}, {"name": "_MISSING_TYPE", "kind": "LocalType"}, {"name": "MISSING", "kind": "Other"}, {"name": "KW_ONLY", "kind": "LocalType"}, {"name": "asdict", "kind": "Other"}, {"name": "astuple", "kind": "Other"}, {"name": "dataclass", "kind": "Other"}, {"name": "_DefaultFactory", "kind": "LocalType"}, {"name": "Field", "kind": "LocalType"}, {"name": "field", "kind": "Other"}, {"name": "fields", "kind": "Other"}, {"name": "is_dataclass", "kind": "Other"}, {"name": "FrozenInstanceError", "kind": "LocalType"}, {"name": "_InitVarMeta", "kind": "Other"}, {"name": "InitVar", "kind": "LocalType"}, {"name": "make_dataclass", "kind": "Other"}, {"name": "replace", "kind": "Other"}], "os": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "OSError", "kind": "ImportedType", "fullname": "builtins.OSError"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "_TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "Popen", "kind": "ImportedType", "fullname": "subprocess.Popen"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_path", "kind": "Module", "fullname": "os.path"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "path", "kind": "Module", "fullname": "os.path"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "supports_bytes_environ", "kind": "Other"}, {"name": "supports_dir_fd", "kind": "Other"}, {"name": "supports_fd", "kind": "Other"}, {"name": "supports_effective_ids", "kind": "Other"}, {"name": "supports_follow_symlinks", "kind": "Other"}, {"name": "PRIO_PROCESS", "kind": "Other"}, {"name": "PRIO_PGRP", "kind": "Other"}, {"name": "PRIO_USER", "kind": "Other"}, {"name": "F_LOCK", "kind": "Other"}, {"name": "F_TLOCK", "kind": "Other"}, {"name": "F_ULOCK", "kind": "Other"}, {"name": "F_TEST", "kind": "Other"}, {"name": "POSIX_FADV_NORMAL", "kind": "Other"}, {"name": "POSIX_FADV_SEQUENTIAL", "kind": "Other"}, {"name": "POSIX_FADV_RANDOM", "kind": "Other"}, {"name": "POSIX_FADV_NOREUSE", "kind": "Other"}, {"name": "POSIX_FADV_WILLNEED", "kind": "Other"}, {"name": "POSIX_FADV_DONTNEED", "kind": "Other"}, {"name": "SF_NODISKIO", "kind": "Other"}, {"name": "SF_MNOWAIT", "kind": "Other"}, {"name": "SF_SYNC", "kind": "Other"}, {"name": "XATTR_SIZE_MAX", "kind": "Other"}, {"name": "XATTR_CREATE", "kind": "Other"}, {"name": "XATTR_REPLACE", "kind": "Other"}, {"name": "P_PID", "kind": "Other"}, {"name": "P_PGID", "kind": "Other"}, {"name": "P_ALL", "kind": "Other"}, {"name": "P_PIDFD", "kind": "Other"}, {"name": "WEXITED", "kind": "Other"}, {"name": "WSTOPPED", "kind": "Other"}, {"name": "WNOWAIT", "kind": "Other"}, {"name": "CLD_EXITED", "kind": "Other"}, {"name": "CLD_DUMPED", "kind": "Other"}, {"name": "CLD_TRAPPED", "kind": "Other"}, {"name": "CLD_CONTINUED", "kind": "Other"}, {"name": "CLD_KILLED", "kind": "Other"}, {"name": "CLD_STOPPED", "kind": "Other"}, {"name": "SCHED_OTHER", "kind": "Other"}, {"name": "SCHED_BATCH", "kind": "Other"}, {"name": "SCHED_IDLE", "kind": "Other"}, {"name": "SCHED_SPORADIC", "kind": "Other"}, {"name": "SCHED_FIFO", "kind": "Other"}, {"name": "SCHED_RR", "kind": "Other"}, {"name": "SCHED_RESET_ON_FORK", "kind": "Other"}, {"name": "RTLD_LAZY", "kind": "Other"}, {"name": "RTLD_NOW", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "RTLD_NODELETE", "kind": "Other"}, {"name": "RTLD_NOLOAD", "kind": "Other"}, {"name": "RTLD_DEEPBIND", "kind": "Other"}, {"name": "GRND_NONBLOCK", "kind": "Other"}, {"name": "GRND_RANDOM", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "SEEK_DATA", "kind": "Other"}, {"name": "SEEK_HOLE", "kind": "Other"}, {"name": "O_RDONLY", "kind": "Other"}, {"name": "O_WRONLY", "kind": "Other"}, {"name": "O_RDWR", "kind": "Other"}, {"name": "O_APPEND", "kind": "Other"}, {"name": "O_CREAT", "kind": "Other"}, {"name": "O_EXCL", "kind": "Other"}, {"name": "O_TRUNC", "kind": "Other"}, {"name": "O_DSYNC", "kind": "Other"}, {"name": "O_RSYNC", "kind": "Other"}, {"name": "O_SYNC", "kind": "Other"}, {"name": "O_NDELAY", "kind": "Other"}, {"name": "O_NONBLOCK", "kind": "Other"}, {"name": "O_NOCTTY", "kind": "Other"}, {"name": "O_CLOEXEC", "kind": "Other"}, {"name": "O_SHLOCK", "kind": "Other"}, {"name": "O_EXLOCK", "kind": "Other"}, {"name": "O_BINARY", "kind": "Other"}, {"name": "O_NOINHERIT", "kind": "Other"}, {"name": "O_SHORT_LIVED", "kind": "Other"}, {"name": "O_TEMPORARY", "kind": "Other"}, {"name": "O_RANDOM", "kind": "Other"}, {"name": "O_SEQUENTIAL", "kind": "Other"}, {"name": "O_TEXT", "kind": "Other"}, {"name": "O_ASYNC", "kind": "Other"}, {"name": "O_DIRECT", "kind": "Other"}, {"name": "O_DIRECTORY", "kind": "Other"}, {"name": "O_NOFOLLOW", "kind": "Other"}, {"name": "O_NOATIME", "kind": "Other"}, {"name": "O_PATH", "kind": "Other"}, {"name": "O_TMPFILE", "kind": "Other"}, {"name": "O_LARGEFILE", "kind": "Other"}, {"name": "O_ACCMODE", "kind": "Other"}, {"name": "ST_APPEND", "kind": "Other"}, {"name": "ST_MANDLOCK", "kind": "Other"}, {"name": "ST_NOATIME", "kind": "Other"}, {"name": "ST_NODEV", "kind": "Other"}, {"name": "ST_NODIRATIME", "kind": "Other"}, {"name": "ST_NOEXEC", "kind": "Other"}, {"name": "ST_RELATIME", "kind": "Other"}, {"name": "ST_SYNCHRONOUS", "kind": "Other"}, {"name": "ST_WRITE", "kind": "Other"}, {"name": "NGROUPS_MAX", "kind": "Other"}, {"name": "ST_NOSUID", "kind": "Other"}, {"name": "ST_RDONLY", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "linesep", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "name", "kind": "Other"}, {"name": "F_OK", "kind": "Other"}, {"name": "R_OK", "kind": "Other"}, {"name": "W_OK", "kind": "Other"}, {"name": "X_OK", "kind": "Other"}, {"name": "_EnvironCodeFunc", "kind": "Other"}, {"name": "_Environ", "kind": "LocalType"}, {"name": "environ", "kind": "Other"}, {"name": "environb", "kind": "Other"}, {"name": "confstr_names", "kind": "Other"}, {"name": "pathconf_names", "kind": "Other"}, {"name": "sysconf_names", "kind": "Other"}, {"name": "EX_OK", "kind": "Other"}, {"name": "EX_USAGE", "kind": "Other"}, {"name": "EX_DATAERR", "kind": "Other"}, {"name": "EX_NOINPUT", "kind": "Other"}, {"name": "EX_NOUSER", "kind": "Other"}, {"name": "EX_NOHOST", "kind": "Other"}, {"name": "EX_UNAVAILABLE", "kind": "Other"}, {"name": "EX_SOFTWARE", "kind": "Other"}, {"name": "EX_OSERR", "kind": "Other"}, {"name": "EX_OSFILE", "kind": "Other"}, {"name": "EX_CANTCREAT", "kind": "Other"}, {"name": "EX_IOERR", "kind": "Other"}, {"name": "EX_TEMPFAIL", "kind": "Other"}, {"name": "EX_PROTOCOL", "kind": "Other"}, {"name": "EX_NOPERM", "kind": "Other"}, {"name": "EX_CONFIG", "kind": "Other"}, {"name": "EX_NOTFOUND", "kind": "Other"}, {"name": "P_NOWAIT", "kind": "Other"}, {"name": "P_NOWAITO", "kind": "Other"}, {"name": "P_WAIT", "kind": "Other"}, {"name": "WNOHANG", "kind": "Other"}, {"name": "WCONTINUED", "kind": "Other"}, {"name": "WUNTRACED", "kind": "Other"}, {"name": "TMP_MAX", "kind": "Other"}, {"name": "stat_result", "kind": "LocalType"}, {"name": "PathLike", "kind": "LocalType"}, {"name": "listdir", "kind": "Other"}, {"name": "DirEntry", "kind": "LocalType"}, {"name": "statvfs_result", "kind": "LocalType"}, {"name": "fsencode", "kind": "Other"}, {"name": "fsdecode", "kind": "Other"}, {"name": "fspath", "kind": "Other"}, {"name": "get_exec_path", "kind": "Other"}, {"name": "getlogin", "kind": "Other"}, {"name": "getpid", "kind": "Other"}, {"name": "getppid", "kind": "Other"}, {"name": "strerror", "kind": "Other"}, {"name": "umask", "kind": "Other"}, {"name": "uname_result", "kind": "LocalType"}, {"name": "ctermid", "kind": "Other"}, {"name": "getegid", "kind": "Other"}, {"name": "geteuid", "kind": "Other"}, {"name": "getgid", "kind": "Other"}, {"name": "getgrouplist", "kind": "Other"}, {"name": "getgroups", "kind": "Other"}, {"name": "initgroups", "kind": "Other"}, {"name": "getpgid", "kind": "Other"}, {"name": "getpgrp", "kind": "Other"}, {"name": "getpriority", "kind": "Other"}, {"name": "setpriority", "kind": "Other"}, {"name": "getresuid", "kind": "Other"}, {"name": "getresgid", "kind": "Other"}, {"name": "getuid", "kind": "Other"}, {"name": "setegid", "kind": "Other"}, {"name": "seteuid", "kind": "Other"}, {"name": "setgid", "kind": "Other"}, {"name": "setgroups", "kind": "Other"}, {"name": "setpgrp", "kind": "Other"}, {"name": "setpgid", "kind": "Other"}, {"name": "setregid", "kind": "Other"}, {"name": "setresgid", "kind": "Other"}, {"name": "setresuid", "kind": "Other"}, {"name": "setreuid", "kind": "Other"}, {"name": "getsid", "kind": "Other"}, {"name": "setsid", "kind": "Other"}, {"name": "setuid", "kind": "Other"}, {"name": "uname", "kind": "Other"}, {"name": "getenv", "kind": "Other"}, {"name": "getenvb", "kind": "Other"}, {"name": "putenv", "kind": "Other"}, {"name": "unsetenv", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "fdopen", "kind": "Other"}, {"name": "close", "kind": "Other"}, {"name": "closerange", "kind": "Other"}, {"name": "device_encoding", "kind": "Other"}, {"name": "dup", "kind": "Other"}, {"name": "dup2", "kind": "Other"}, {"name": "fstat", "kind": "Other"}, {"name": "ftruncate", "kind": "Other"}, {"name": "fsync", "kind": "Other"}, {"name": "isatty", "kind": "Other"}, {"name": "lseek", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "pipe", "kind": "Other"}, {"name": "read", "kind": "Other"}, {"name": "fchmod", "kind": "Other"}, {"name": "fchown", "kind": "Other"}, {"name": "fpathconf", "kind": "Other"}, {"name": "fstatvfs", "kind": "Other"}, {"name": "get_blocking", "kind": "Other"}, {"name": "set_blocking", "kind": "Other"}, {"name": "lockf", "kind": "Other"}, {"name": "openpty", "kind": "Other"}, {"name": "fdatasync", "kind": "Other"}, {"name": "pipe2", "kind": "Other"}, {"name": "posix_fallocate", "kind": "Other"}, {"name": "posix_fadvise", "kind": "Other"}, {"name": "pread", "kind": "Other"}, {"name": "pwrite", "kind": "Other"}, {"name": "preadv", "kind": "Other"}, {"name": "pwritev", "kind": "Other"}, {"name": "RWF_APPEND", "kind": "Other"}, {"name": "RWF_DSYNC", "kind": "Other"}, {"name": "RWF_SYNC", "kind": "Other"}, {"name": "RWF_HIPRI", "kind": "Other"}, {"name": "RWF_NOWAIT", "kind": "Other"}, {"name": "sendfile", "kind": "Other"}, {"name": "readv", "kind": "Other"}, {"name": "writev", "kind": "Other"}, {"name": "terminal_size", "kind": "LocalType"}, {"name": "get_terminal_size", "kind": "Other"}, {"name": "get_inheritable", "kind": "Other"}, {"name": "set_inheritable", "kind": "Other"}, {"name": "tcgetpgrp", "kind": "Other"}, {"name": "tcsetpgrp", "kind": "Other"}, {"name": "ttyname", "kind": "Other"}, {"name": "write", "kind": "Other"}, {"name": "access", "kind": "Other"}, {"name": "chdir", "kind": "Other"}, {"name": "fchdir", "kind": "Other"}, {"name": "getcwd", "kind": "Other"}, {"name": "getcwdb", "kind": "Other"}, {"name": "chmod", "kind": "Other"}, {"name": "chroot", "kind": "Other"}, {"name": "chown", "kind": "Other"}, {"name": "lchown", "kind": "Other"}, {"name": "link", "kind": "Other"}, {"name": "lstat", "kind": "Other"}, {"name": "mkdir", "kind": "Other"}, {"name": "mkfifo", "kind": "Other"}, {"name": "makedirs", "kind": "Other"}, {"name": "mknod", "kind": "Other"}, {"name": "major", "kind": "Other"}, {"name": "minor", "kind": "Other"}, {"name": "makedev", "kind": "Other"}, {"name": "pathconf", "kind": "Other"}, {"name": "readlink", "kind": "Other"}, {"name": "remove", "kind": "Other"}, {"name": "removedirs", "kind": "Other"}, {"name": "rename", "kind": "Other"}, {"name": "renames", "kind": "Other"}, {"name": "replace", "kind": "Other"}, {"name": "rmdir", "kind": "Other"}, {"name": "_ScandirIterator", "kind": "LocalType"}, {"name": "scandir", "kind": "Other"}, {"name": "stat", "kind": "Other"}, {"name": "statvfs", "kind": "Other"}, {"name": "symlink", "kind": "Other"}, {"name": "sync", "kind": "Other"}, {"name": "truncate", "kind": "Other"}, {"name": "unlink", "kind": "Other"}, {"name": "utime", "kind": "Other"}, {"name": "_OnError", "kind": "Other"}, {"name": "walk", "kind": "Other"}, {"name": "fwalk", "kind": "Other"}, {"name": "getxattr", "kind": "Other"}, {"name": "listxattr", "kind": "Other"}, {"name": "removexattr", "kind": "Other"}, {"name": "setxattr", "kind": "Other"}, {"name": "abort", "kind": "Other"}, {"name": "execl", "kind": "Other"}, {"name": "execlp", "kind": "Other"}, {"name": "execle", "kind": "Other"}, {"name": "execlpe", "kind": "Other"}, {"name": "_ExecVArgs", "kind": "Other"}, {"name": "_ExecEnv", "kind": "Other"}, {"name": "execv", "kind": "Other"}, {"name": "execve", "kind": "Other"}, {"name": "execvp", "kind": "Other"}, {"name": "execvpe", "kind": "Other"}, {"name": "_exit", "kind": "Other"}, {"name": "kill", "kind": "Other"}, {"name": "fork", "kind": "Other"}, {"name": "forkpty", "kind": "Other"}, {"name": "killpg", "kind": "Other"}, {"name": "nice", "kind": "Other"}, {"name": "plock", "kind": "Other"}, {"name": "_wrap_close", "kind": "LocalType"}, {"name": "popen", "kind": "Other"}, {"name": "spawnl", "kind": "Other"}, {"name": "spawnle", "kind": "Other"}, {"name": "spawnv", "kind": "Other"}, {"name": "spawnve", "kind": "Other"}, {"name": "system", "kind": "Other"}, {"name": "times_result", "kind": "LocalType"}, {"name": "times", "kind": "Other"}, {"name": "waitpid", "kind": "Other"}, {"name": "spawnlp", "kind": "Other"}, {"name": "spawnlpe", "kind": "Other"}, {"name": "spawnvp", "kind": "Other"}, {"name": "spawnvpe", "kind": "Other"}, {"name": "wait", "kind": "Other"}, {"name": "waitid_result", "kind": "LocalType"}, {"name": "waitid", "kind": "Other"}, {"name": "wait3", "kind": "Other"}, {"name": "wait4", "kind": "Other"}, {"name": "WCOREDUMP", "kind": "Other"}, {"name": "WIFCONTINUED", "kind": "Other"}, {"name": "WIFSTOPPED", "kind": "Other"}, {"name": "WIFSIGNALED", "kind": "Other"}, {"name": "WIFEXITED", "kind": "Other"}, {"name": "WEXITSTATUS", "kind": "Other"}, {"name": "WSTOPSIG", "kind": "Other"}, {"name": "WTERMSIG", "kind": "Other"}, {"name": "posix_spawn", "kind": "Other"}, {"name": "posix_spawnp", "kind": "Other"}, {"name": "POSIX_SPAWN_OPEN", "kind": "Other"}, {"name": "POSIX_SPAWN_CLOSE", "kind": "Other"}, {"name": "POSIX_SPAWN_DUP2", "kind": "Other"}, {"name": "sched_param", "kind": "LocalType"}, {"name": "sched_get_priority_min", "kind": "Other"}, {"name": "sched_get_priority_max", "kind": "Other"}, {"name": "sched_yield", "kind": "Other"}, {"name": "sched_setscheduler", "kind": "Other"}, {"name": "sched_getscheduler", "kind": "Other"}, {"name": "sched_rr_get_interval", "kind": "Other"}, {"name": "sched_setparam", "kind": "Other"}, {"name": "sched_getparam", "kind": "Other"}, {"name": "sched_setaffinity", "kind": "Other"}, {"name": "sched_getaffinity", "kind": "Other"}, {"name": "cpu_count", "kind": "Other"}, {"name": "confstr", "kind": "Other"}, {"name": "getloadavg", "kind": "Other"}, {"name": "sysconf", "kind": "Other"}, {"name": "getrandom", "kind": "Other"}, {"name": "urandom", "kind": "Other"}, {"name": "register_at_fork", "kind": "Other"}, {"name": "MFD_CLOEXEC", "kind": "Other"}, {"name": "MFD_ALLOW_SEALING", "kind": "Other"}, {"name": "MFD_HUGETLB", "kind": "Other"}, {"name": "MFD_HUGE_SHIFT", "kind": "Other"}, {"name": "MFD_HUGE_MASK", "kind": "Other"}, {"name": "MFD_HUGE_64KB", "kind": "Other"}, {"name": "MFD_HUGE_512KB", "kind": "Other"}, {"name": "MFD_HUGE_1MB", "kind": "Other"}, {"name": "MFD_HUGE_2MB", "kind": "Other"}, {"name": "MFD_HUGE_8MB", "kind": "Other"}, {"name": "MFD_HUGE_16MB", "kind": "Other"}, {"name": "MFD_HUGE_32MB", "kind": "Other"}, {"name": "MFD_HUGE_256MB", "kind": "Other"}, {"name": "MFD_HUGE_512MB", "kind": "Other"}, {"name": "MFD_HUGE_1GB", "kind": "Other"}, {"name": "MFD_HUGE_2GB", "kind": "Other"}, {"name": "MFD_HUGE_16GB", "kind": "Other"}, {"name": "memfd_create", "kind": "Other"}, {"name": "copy_file_range", "kind": "Other"}, {"name": "waitstatus_to_exitcode", "kind": "Other"}, {"name": "pidfd_open", "kind": "Other"}], "importlib.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_ast", "kind": "Module", "fullname": "_ast"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Finder", "kind": "LocalType"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ResourceLoader", "kind": "LocalType"}, {"name": "InspectLoader", "kind": "LocalType"}, {"name": "ExecutionLoader", "kind": "LocalType"}, {"name": "SourceLoader", "kind": "LocalType"}, {"name": "MetaPathFinder", "kind": "LocalType"}, {"name": "PathEntryFinder", "kind": "LocalType"}, {"name": "FileLoader", "kind": "LocalType"}, {"name": "ResourceReader", "kind": "LocalType"}, {"name": "Traversable", "kind": "LocalType"}, {"name": "TraversableResources", "kind": "LocalType"}], "importlib.machinery": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "importlib", "kind": "Module", "fullname": "importlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "DistributionFinder", "kind": "ImportedType", "fullname": "importlib.metadata.DistributionFinder"}, {"name": "PathDistribution", "kind": "ImportedType", "fullname": "importlib.metadata.PathDistribution"}, {"name": "ModuleSpec", "kind": "LocalType"}, {"name": "BuiltinImporter", "kind": "LocalType"}, {"name": "FrozenImporter", "kind": "LocalType"}, {"name": "WindowsRegistryFinder", "kind": "LocalType"}, {"name": "PathFinder", "kind": "LocalType"}, {"name": "SOURCE_SUFFIXES", "kind": "Other"}, {"name": "DEBUG_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "OPTIMIZED_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "EXTENSION_SUFFIXES", "kind": "Other"}, {"name": "all_suffixes", "kind": "Other"}, {"name": "FileFinder", "kind": "LocalType"}, {"name": "SourceFileLoader", "kind": "LocalType"}, {"name": "SourcelessFileLoader", "kind": "LocalType"}, {"name": "ExtensionFileLoader", "kind": "LocalType"}], "abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Concatenate", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "ABCMeta", "kind": "LocalType"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "abstractclassmethod", "kind": "LocalType"}, {"name": "abstractstaticmethod", "kind": "LocalType"}, {"name": "abstractproperty", "kind": "LocalType"}, {"name": "ABC", "kind": "LocalType"}, {"name": "get_cache_token", "kind": "Other"}, {"name": "update_abstractmethods", "kind": "Other"}], "codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "BOM32_BE", "kind": "Other"}, {"name": "BOM32_LE", "kind": "Other"}, {"name": "BOM64_BE", "kind": "Other"}, {"name": "BOM64_LE", "kind": "Other"}, {"name": "_WritableStream", "kind": "LocalType"}, {"name": "_ReadableStream", "kind": "LocalType"}, {"name": "_Stream", "kind": "LocalType"}, {"name": "_Encoder", "kind": "LocalType"}, {"name": "_Decoder", "kind": "LocalType"}, {"name": "_StreamReader", "kind": "LocalType"}, {"name": "_StreamWriter", "kind": "LocalType"}, {"name": "_IncrementalEncoder", "kind": "LocalType"}, {"name": "_IncrementalDecoder", "kind": "LocalType"}, {"name": "CodecInfo", "kind": "LocalType"}, {"name": "getencoder", "kind": "Other"}, {"name": "getdecoder", "kind": "Other"}, {"name": "getincrementalencoder", "kind": "Other"}, {"name": "getincrementaldecoder", "kind": "Other"}, {"name": "getreader", "kind": "Other"}, {"name": "getwriter", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "EncodedFile", "kind": "Other"}, {"name": "iterencode", "kind": "Other"}, {"name": "iterdecode", "kind": "Other"}, {"name": "BOM", "kind": "Other"}, {"name": "BOM_BE", "kind": "Other"}, {"name": "BOM_LE", "kind": "Other"}, {"name": "BOM_UTF8", "kind": "Other"}, {"name": "BOM_UTF16", "kind": "Other"}, {"name": "BOM_UTF16_BE", "kind": "Other"}, {"name": "BOM_UTF16_LE", "kind": "Other"}, {"name": "BOM_UTF32", "kind": "Other"}, {"name": "BOM_UTF32_BE", "kind": "Other"}, {"name": "BOM_UTF32_LE", "kind": "Other"}, {"name": "strict_errors", "kind": "Other"}, {"name": "replace_errors", "kind": "Other"}, {"name": "ignore_errors", "kind": "Other"}, {"name": "xmlcharrefreplace_errors", "kind": "Other"}, {"name": "backslashreplace_errors", "kind": "Other"}, {"name": "namereplace_errors", "kind": "Other"}, {"name": "Codec", "kind": "LocalType"}, {"name": "IncrementalEncoder", "kind": "LocalType"}, {"name": "IncrementalDecoder", "kind": "LocalType"}, {"name": "BufferedIncrementalEncoder", "kind": "LocalType"}, {"name": "BufferedIncrementalDecoder", "kind": "LocalType"}, {"name": "StreamWriter", "kind": "LocalType"}, {"name": "StreamReader", "kind": "LocalType"}, {"name": "StreamReaderWriter", "kind": "LocalType"}, {"name": "StreamRecoder", "kind": "LocalType"}], "contextlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_io", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_ExitFunc", "kind": "Other"}, {"name": "_CM_EF", "kind": "Other"}, {"name": "AbstractContextManager", "kind": "LocalType"}, {"name": "AbstractAsyncContextManager", "kind": "LocalType"}, {"name": "ContextDecorator", "kind": "LocalType"}, {"name": "_GeneratorContextManager", "kind": "LocalType"}, {"name": "contextmanager", "kind": "Other"}, {"name": "_AF", "kind": "Other"}, {"name": "AsyncContextDecorator", "kind": "LocalType"}, {"name": "_AsyncGeneratorContextManager", "kind": "LocalType"}, {"name": "asynccontextmanager", "kind": "Other"}, {"name": "_SupportsClose", "kind": "LocalType"}, {"name": "_SupportsCloseT", "kind": "Other"}, {"name": "closing", "kind": "LocalType"}, {"name": "_SupportsAclose", "kind": "LocalType"}, {"name": "_SupportsAcloseT", "kind": "Other"}, {"name": "aclosing", "kind": "LocalType"}, {"name": "suppress", "kind": "LocalType"}, {"name": "_RedirectStream", "kind": "LocalType"}, {"name": "redirect_stdout", "kind": "LocalType"}, {"name": "redirect_stderr", "kind": "LocalType"}, {"name": "ExitStack", "kind": "LocalType"}, {"name": "_ExitCoroFunc", "kind": "Other"}, {"name": "_ACM_EF", "kind": "Other"}, {"name": "AsyncExitStack", "kind": "LocalType"}, {"name": "nullcontext", "kind": "LocalType"}], "re": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sre_compile", "kind": "Module", "fullname": "sre_compile"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "Match", "kind": "LocalType"}, {"name": "Pattern", "kind": "LocalType"}, {"name": "RegexFlag", "kind": "LocalType"}, {"name": "A", "kind": "Other"}, {"name": "ASCII", "kind": "Other"}, {"name": "DEBUG", "kind": "Other"}, {"name": "I", "kind": "Other"}, {"name": "IGNORECASE", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "LOCALE", "kind": "Other"}, {"name": "M", "kind": "Other"}, {"name": "MULTILINE", "kind": "Other"}, {"name": "S", "kind": "Other"}, {"name": "DOTALL", "kind": "Other"}, {"name": "X", "kind": "Other"}, {"name": "VERBOSE", "kind": "Other"}, {"name": "U", "kind": "Other"}, {"name": "UNICODE", "kind": "Other"}, {"name": "T", "kind": "Other"}, {"name": "TEMPLATE", "kind": "Other"}, {"name": "_FlagsType", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "search", "kind": "Other"}, {"name": "match", "kind": "Other"}, {"name": "fullmatch", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "findall", "kind": "Other"}, {"name": "finditer", "kind": "Other"}, {"name": "sub", "kind": "Other"}, {"name": "subn", "kind": "Other"}, {"name": "escape", "kind": "Other"}, {"name": "purge", "kind": "Other"}, {"name": "template", "kind": "Other"}], "enum": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_EnumMemberT", "kind": "Other"}, {"name": "_EnumerationT", "kind": "Other"}, {"name": "_EnumNames", "kind": "Other"}, {"name": "_EnumDict", "kind": "LocalType"}, {"name": "EnumMeta", "kind": "LocalType"}, {"name": "_magic_enum_attr", "kind": "Other"}, {"name": "Enum", "kind": "LocalType"}, {"name": "_IntEnumBase", "kind": "Other"}, {"name": "IntEnum", "kind": "LocalType"}, {"name": "unique", "kind": "Other"}, {"name": "_auto_null", "kind": "Other"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "kind": "LocalType"}, {"name": "auto", "kind": "LocalType"}], "os.path": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "subprocess": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_FILE", "kind": "Other"}, {"name": "_InputString", "kind": "Other"}, {"name": "_CMD", "kind": "Other"}, {"name": "_ENV", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_USE_POSIX_SPAWN", "kind": "Other"}, {"name": "CompletedProcess", "kind": "LocalType"}, {"name": "run", "kind": "Other"}, {"name": "call", "kind": "Other"}, {"name": "check_call", "kind": "Other"}, {"name": "check_output", "kind": "Other"}, {"name": "PIPE", "kind": "Other"}, {"name": "STDOUT", "kind": "Other"}, {"name": "DEVNULL", "kind": "Other"}, {"name": "SubprocessError", "kind": "LocalType"}, {"name": "TimeoutExpired", "kind": "LocalType"}, {"name": "CalledProcessError", "kind": "LocalType"}, {"name": "Popen", "kind": "LocalType"}, {"name": "getstatusoutput", "kind": "Other"}, {"name": "getoutput", "kind": "Other"}, {"name": "list2cmdline", "kind": "Other"}], "importlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "__all__", "kind": "Other"}, {"name": "__import__", "kind": "Other"}, {"name": "import_module", "kind": "Other"}, {"name": "find_loader", "kind": "Other"}, {"name": "invalidate_caches", "kind": "Other"}, {"name": "reload", "kind": "Other"}], "importlib.metadata": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "pathlib", "kind": "Module", "fullname": "pathlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "StrPath", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "MetaPathFinder", "kind": "ImportedType", "fullname": "importlib.abc.MetaPathFinder"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "packages_distributions", "kind": "Other"}, {"name": "PackageNotFoundError", "kind": "LocalType"}, {"name": "_EntryPointBase", "kind": "LocalType"}, {"name": "EntryPoint", "kind": "LocalType"}, {"name": "EntryPoints", "kind": "LocalType"}, {"name": "SelectableGroups", "kind": "LocalType"}, {"name": "PackagePath", "kind": "LocalType"}, {"name": "FileHash", "kind": "LocalType"}, {"name": "Distribution", "kind": "LocalType"}, {"name": "DistributionFinder", "kind": "LocalType"}, {"name": "MetadataPathFinder", "kind": "LocalType"}, {"name": "PathDistribution", "kind": "LocalType"}, {"name": "distribution", "kind": "Other"}, {"name": "distributions", "kind": "Other"}, {"name": "metadata", "kind": "Other"}, {"name": "entry_points", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "files", "kind": "Other"}, {"name": "requires", "kind": "Other"}], "_codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_EncodingMap", "kind": "LocalType"}, {"name": "_CharMap", "kind": "Other"}, {"name": "_Handler", "kind": "Other"}, {"name": "_SearchFunction", "kind": "Other"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "_BytesToBytesEncoding", "kind": "Other"}, {"name": "_StrToStrEncoding", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}], "sre_compile": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NamedIntConstant", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "SubPattern", "kind": "ImportedType", "fullname": "sre_parse.SubPattern"}, {"name": "Any", "kind": "Other"}, {"name": "MAXCODE", "kind": "Other"}, {"name": "dis", "kind": "Other"}, {"name": "isstring", "kind": "Other"}, {"name": "compile", "kind": "Other"}], "sre_constants": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "LocalType"}, {"name": "_NamedIntConstant", "kind": "LocalType"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}], "posixpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "AnyStr", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}], "importlib.metadata._meta": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_T", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "SimplePath", "kind": "LocalType"}], "email.message": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Policy", "kind": "ImportedType", "fullname": "email.policy.Policy"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_PayloadType", "kind": "Other"}, {"name": "_CharsetType", "kind": "Other"}, {"name": "_HeaderType", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "MIMEPart", "kind": "LocalType"}, {"name": "EmailMessage", "kind": "LocalType"}], "pathlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "stat_result", "kind": "ImportedType", "fullname": "os.stat_result"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "PurePath", "kind": "LocalType"}, {"name": "PurePosixPath", "kind": "LocalType"}, {"name": "PureWindowsPath", "kind": "LocalType"}, {"name": "Path", "kind": "LocalType"}, {"name": "PosixPath", "kind": "LocalType"}, {"name": "WindowsPath", "kind": "LocalType"}], "sre_parse": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "_Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NIC", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "_Error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "SPECIAL_CHARS", "kind": "Other"}, {"name": "REPEAT_CHARS", "kind": "Other"}, {"name": "DIGITS", "kind": "Other"}, {"name": "OCTDIGITS", "kind": "Other"}, {"name": "HEXDIGITS", "kind": "Other"}, {"name": "ASCIILETTERS", "kind": "Other"}, {"name": "WHITESPACE", "kind": "Other"}, {"name": "ESCAPES", "kind": "Other"}, {"name": "CATEGORIES", "kind": "Other"}, {"name": "FLAGS", "kind": "Other"}, {"name": "TYPE_FLAGS", "kind": "Other"}, {"name": "GLOBAL_FLAGS", "kind": "Other"}, {"name": "Verbose", "kind": "LocalType"}, {"name": "_State", "kind": "LocalType"}, {"name": "State", "kind": "Other"}, {"name": "_OpSubpatternType", "kind": "Other"}, {"name": "_OpGroupRefExistsType", "kind": "Other"}, {"name": "_OpInType", "kind": "Other"}, {"name": "_OpBranchType", "kind": "Other"}, {"name": "_AvType", "kind": "Other"}, {"name": "_CodeType", "kind": "Other"}, {"name": "SubPattern", "kind": "LocalType"}, {"name": "Tokenizer", "kind": "LocalType"}, {"name": "fix_flags", "kind": "Other"}, {"name": "_TemplateType", "kind": "Other"}, {"name": "_TemplateByteType", "kind": "Other"}, {"name": "parse", "kind": "Other"}, {"name": "parse_template", "kind": "Other"}, {"name": "expand_template", "kind": "Other"}], "genericpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}], "email": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "Policy", "kind": "LocalType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "message_from_string", "kind": "Other"}, {"name": "message_from_bytes", "kind": "Other"}, {"name": "message_from_file", "kind": "Other"}, {"name": "message_from_binary_file", "kind": "Other"}], "email.charset": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "__all__", "kind": "Other"}, {"name": "QP", "kind": "Other"}, {"name": "BASE64", "kind": "Other"}, {"name": "SHORTEST", "kind": "Other"}, {"name": "Charset", "kind": "LocalType"}, {"name": "add_charset", "kind": "Other"}, {"name": "add_alias", "kind": "Other"}, {"name": "add_codec", "kind": "Other"}], "email.contentmanager": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "ContentManager", "kind": "LocalType"}, {"name": "raw_data_manager", "kind": "Other"}], "email.errors": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "MessageError", "kind": "LocalType"}, {"name": "MessageParseError", "kind": "LocalType"}, {"name": "HeaderParseError", "kind": "LocalType"}, {"name": "BoundaryError", "kind": "LocalType"}, {"name": "MultipartConversionError", "kind": "LocalType"}, {"name": "CharsetError", "kind": "LocalType"}, {"name": "MessageDefect", "kind": "LocalType"}, {"name": "NoBoundaryInMultipartDefect", "kind": "LocalType"}, {"name": "StartBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "FirstHeaderLineIsContinuationDefect", "kind": "LocalType"}, {"name": "MisplacedEnvelopeHeaderDefect", "kind": "LocalType"}, {"name": "MultipartInvariantViolationDefect", "kind": "LocalType"}, {"name": "InvalidMultipartContentTransferEncodingDefect", "kind": "LocalType"}, {"name": "UndecodableBytesDefect", "kind": "LocalType"}, {"name": "InvalidBase64PaddingDefect", "kind": "LocalType"}, {"name": "InvalidBase64CharactersDefect", "kind": "LocalType"}, {"name": "InvalidBase64LengthDefect", "kind": "LocalType"}, {"name": "CloseBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "MissingHeaderBodySeparatorDefect", "kind": "LocalType"}, {"name": "MalformedHeaderDefect", "kind": "Other"}, {"name": "HeaderDefect", "kind": "LocalType"}, {"name": "InvalidHeaderDefect", "kind": "LocalType"}, {"name": "HeaderMissingRequiredValue", "kind": "LocalType"}, {"name": "NonPrintableDefect", "kind": "LocalType"}, {"name": "ObsoleteHeaderDefect", "kind": "LocalType"}, {"name": "NonASCIILocalPartDefect", "kind": "LocalType"}, {"name": "InvalidDateDefect", "kind": "LocalType"}], "email.policy": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Header", "kind": "ImportedType", "fullname": "email.header.Header"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Policy", "kind": "LocalType"}, {"name": "Compat32", "kind": "LocalType"}, {"name": "compat32", "kind": "Other"}, {"name": "EmailPolicy", "kind": "LocalType"}, {"name": "default", "kind": "Other"}, {"name": "SMTP", "kind": "Other"}, {"name": "SMTPUTF8", "kind": "Other"}, {"name": "HTTP", "kind": "Other"}, {"name": "strict", "kind": "Other"}], "email.header": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "Any", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Header", "kind": "LocalType"}, {"name": "decode_header", "kind": "Other"}, {"name": "make_header", "kind": "Other"}]}} \ No newline at end of file diff --git a/utbot-python-types/src/test/resources/import_test.json b/utbot-python-types/src/test/resources/import_test.json deleted file mode 100644 index 3409032ac7..0000000000 --- a/utbot-python-types/src/test/resources/import_test.json +++ /dev/null @@ -1 +0,0 @@ -{"nodeStorage": {"139809250722560": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229986320"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309317760"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309318208"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309318656"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309319104"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309319552"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309320000"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309320448"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309321344"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309321792"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309322240"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309322688"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309323136"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309323584"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309324032"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309324480"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309324928"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309325376"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309325824"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309326272"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309326720"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309442112"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309442560"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309443008"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309443456"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309443904"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309444352"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309444800"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309445248"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309445696"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309446144"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309446592"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309447040"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309447488"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309447936"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309448384"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309448832"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309449280"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309449728"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309450176"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309450624"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309451072"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309451520"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309451968"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309452416"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309452864"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309453312"}, "name": "zfill"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229986544"}, "items": [{"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "maketrans"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309455104"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309455552"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309456000"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309456448"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309456896"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309457344"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309457792"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309573184"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309573632"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309574080"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309574528"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309574976"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309575424"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309575872"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309576320"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}], "isAbstract": false}}, "139809229986320": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809309316864"}, {"nodeId": "139809309317312"}]}}, "139809309316864": {"type": "Function", "content": {"typeVars": [".0.139809309316864"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": ".0.139809309316864"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}}, "0": {"type": "Unknown", "content": {}}, "139809338527232": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250865024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229437776"}, "items": [{"kind": "Variable", "content": {"name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809175292160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330759040"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330759488"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330759936"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330760384"}, "name": "__delattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330760832"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330761280"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330761728"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330762176"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330762624"}, "name": "__hash__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330763072"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330763520"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330763968"}, "name": "__sizeof__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330764416"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330764864"}, "name": "__reduce_ex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330766208"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330766656"}, "name": "__init_subclass__"}}, {"kind": "Variable", "content": {"name": "__subclasshook__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809175291488"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [], "isAbstract": false}}, "139809250865024": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "N": {"type": "NoneType", "content": {}}, "139809250725024": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225074928"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305318272"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305318720"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305319168"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305319616"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305320064"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225075376"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225076160"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225076496"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305323200"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305323648"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305324096"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305324544"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305324992"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305325440"}, "name": "__reversed__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305325888"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305326336"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305326784"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225076832"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}], "bases": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "isAbstract": false}}, ".1.139809250725024": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250725024", "variance": "INVARIANT"}}, ".2.139809250725024": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250725024", "variance": "INVARIANT"}}, "139809225074928": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305314688"}, {"nodeId": "139809305315136"}, {"nodeId": "139809305315584"}, {"nodeId": "139809305316032"}, {"nodeId": "139809305316480"}, {"nodeId": "139809305316928"}, {"nodeId": "139809305317376"}, {"nodeId": "139809305317824"}]}}, "139809305314688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305315136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".2.139809250725024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139809305315584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809262990816": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317302816"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317303264"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139809262990816"}, {"nodeId": ".2.139809262990816"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__getitem__", "keys"]}}, ".1.139809262990816": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262990816", "variance": "INVARIANT"}}, ".2.139809262990816": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262990816", "variance": "COVARIANT"}}, "139809317302816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809262990816"}, {"nodeId": ".2.139809262990816"}]}], "returnType": {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809262990816"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338531808": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221185536"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338531808"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__iter__"]}}, ".1.139809338531808": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338531808", "variance": "COVARIANT"}}, "139809221185536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809338531808"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338531808"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809338532160": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221189120"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297039648"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.139809338532160"}], "bases": [{"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809338532160"}]}], "protocolMembers": ["__iter__", "__next__"]}}, ".1.139809338532160": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338532160", "variance": "COVARIANT"}}, "139809221189120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338532160"}]}], "returnType": {"nodeId": ".1.139809338532160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297039648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338532160"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338532160"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "A": {"type": "Any", "content": {}}, "139809317303264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809262990816"}, {"nodeId": ".2.139809262990816"}]}, {"nodeId": ".1.139809262990816"}], "returnType": {"nodeId": ".2.139809262990816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305316032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": "139809262990816", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".2.139809250725024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809305316480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809225075824"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225075824": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}}, "139809305316928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809225076048"}]}, {"nodeId": ".2.139809250725024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809225076048": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250725024"}]}}, "139809305317376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809250724672": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225073136"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305153536"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305153984"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305154432"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305154880"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305155328"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305155776"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305156224"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305156672"}, "name": "remove"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225073248"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305158016"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305158464"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225074368"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225074480"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305160704"}, "name": "__delitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225074704"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305162048"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305162496"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305162944"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305163392"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305163840"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305164288"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305164736"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305165184"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305313344"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305313792"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305314240"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809250724672"}], "bases": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809250724672"}]}], "isAbstract": false}}, ".1.139809250724672": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250724672", "variance": "INVARIANT"}}, "139809225073136": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305152640"}, {"nodeId": "139809305153088"}]}}, "139809305152640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305153088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305153536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305153984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": ".1.139809250724672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305154432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305154880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".1.139809250724672"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809251079296": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809225809856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__index__"]}}, "139809225809856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338538848": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229733472"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322199168"}, "name": "as_integer_ratio"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174968960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174969632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174968064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174967840"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322201408"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322201856"}, "name": "bit_length"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322202304"}, "name": "bit_count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322203648"}, "name": "to_bytes"}}, {"kind": "Variable", "content": {"name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179274144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308950592"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308951040"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308951488"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308951936"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308952384"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308952832"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308953280"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308953728"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308954176"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308954624"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308955072"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308955520"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308955968"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308956416"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229980496"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308959552"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308960000"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308960448"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308960896"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308961344"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308961792"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308962240"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308962688"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308963136"}, "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308963584"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308964032"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308964480"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308964928"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308965376"}, "name": "__invert__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308965824"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308966272"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309098048"}, "name": "__floor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309098496"}, "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309098944"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309099392"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309099840"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309100288"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309100736"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309101184"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309101632"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309102080"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309102528"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309102976"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309103424"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309103872"}, "name": "__index__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809229733472": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809322198272"}, {"nodeId": "139809322198720"}]}}, "139809322198272": {"type": "Function", "content": {"typeVars": [".0.139809322198272"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809229981168"}], "returnType": {"nodeId": ".0.139809322198272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "139809229981168": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251081408"}, {"nodeId": "139809251065920"}, {"nodeId": "139809251079296"}, {"nodeId": "139809262990112"}]}}, "139809251081408": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "Buffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296568992"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__buffer__"]}}, "139809296568992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809250723616": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "content": {"name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170722144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170722816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170723040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170723264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170723488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170723712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170723936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170724160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170724384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170724608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170724832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170725056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304894976"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304895424"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304895872"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304896320"}, "name": "cast"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225068544"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304897664"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304898112"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304898560"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225069552"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304899904"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304901248"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304901696"}, "name": "toreadonly"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304902144"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304902592"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305018432"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305018880"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809170722144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170722816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170723040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809225069216"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225069216": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "N"}]}}, "139809250724320": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305028288"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305028736"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305029184"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225071568"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305030528"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305030976"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305031424"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305031872"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305032320"}, "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225073024"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305033664"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305034112"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305149504"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305149952"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305150400"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809250724320"}], "bases": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809250724320"}]}], "isAbstract": false}}, ".1.139809250724320": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250724320", "variance": "COVARIANT"}}, "139809305028288": {"type": "Function", "content": {"typeVars": [".0.139809305028288"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": ".0.139809305028288"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, ".0.139809305028288": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, "def": "139809305028288", "variance": "INVARIANT"}}, "139809305028736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305029184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809338527936": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305019328"}, "name": "__new__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225070112"}, "items": [{"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__and__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225070896"}, "items": [{"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__or__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225071008"}, "items": [{"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__xor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225071120"}, "items": [{"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225071232"}, "items": [{"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225071344"}, "items": [{"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305025152"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "139809338538848"}], "isAbstract": false}}, "139809305019328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "139809225070112": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305019776"}, {"nodeId": "139809305020224"}]}}, "139809305019776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305020224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225070896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305020672"}, {"nodeId": "139809305021120"}]}}, "139809305020672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305021120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225071008": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305021568"}, {"nodeId": "139809305022016"}]}}, "139809305021568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305022016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225071120": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305022464"}, {"nodeId": "139809305022912"}]}}, "139809305022464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305022912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225071232": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305023360"}, {"nodeId": "139809305023808"}]}}, "139809305023360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305023808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225071344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305024256"}, {"nodeId": "139809305024704"}]}}, "139809305024256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305024704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305025152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809225071792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225071792": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}]}}, "139809225071568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305029632"}, {"nodeId": "139809305030080"}]}}, "139809305029632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".1.139809250724320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305030080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809250723968": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170837056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170837504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170838624"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225071456"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305027840"}, "name": "indices"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809170837056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723968"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170837504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723968"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170838624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723968"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225071456": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305026944"}, {"nodeId": "139809305027392"}]}}, "139809305026944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723968"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305027392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723968"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809305027840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723968"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809225072912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225072912": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809305030528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809250724320"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305030976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305031424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305031872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305032320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225073024": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305032768"}, {"nodeId": "139809305033216"}]}}, "139809305032768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305033216": {"type": "Function", "content": {"typeVars": [".-1.139809305033216"], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": ".-1.139809305033216"}]}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809225073360"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305033216": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305033216", "variance": "INVARIANT"}}, "139809225073360": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809250724320"}, {"nodeId": ".-1.139809305033216"}]}}, "139809305033664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305034112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305149504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305149952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "A"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809305150400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809262738368": {"type": "Concrete", "content": {"module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217278272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217278720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217278944"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317485728"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317486176"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317291168"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217278272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738368"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338538144": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "content": {"name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174974784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174974336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174974112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174973216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174973440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174973664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174972768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174972544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174972320"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229438112"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229729888"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322193344"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322193792"}, "name": "__subclasses__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322194240"}, "name": "mro"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322194688"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322195136"}, "name": "__subclasscheck__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174972096"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322196032"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322196480"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809174974784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174974336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174974112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809262732032", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262732032": {"type": "Concrete", "content": {"module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313535392"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313535840"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313536288"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313536736"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313537184"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313537632"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317798176"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317798624"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317799072"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317799520"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317799968"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317800416"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317800864"}, "name": "__ror__"}}], "typeVars": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}], "bases": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "isAbstract": false}}, ".1.139809262732032": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262732032", "variance": "INVARIANT"}}, ".2.139809262732032": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262732032", "variance": "COVARIANT"}}, "139809313535392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139809313535840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}, {"nodeId": ".1.139809262732032"}], "returnType": {"nodeId": ".2.139809262732032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313536288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809262732032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809313536736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809313537184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313537632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317798176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809262732032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251069440": {"type": "Concrete", "content": {"module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292083360"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292083808"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292084256"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292084704"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292085152"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292085600"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292086048"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292086496"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292086944"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292087392"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292087840"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292088288"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.139809251069440"}], "bases": [{"nodeId": "139809251068736"}, {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809251069440"}]}], "isAbstract": false}}, ".1.139809251069440": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251069440", "variance": "COVARIANT"}}, "139809292083360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809251069440"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139809338537088": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221506016"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242447456"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292206816"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292207264"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292207712"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292208160"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292208608"}, "name": "__eq__"}}], "typeVars": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}], "bases": [{"nodeId": "139809338535328", "args": [{"nodeId": ".1.139809338537088"}]}], "isAbstract": true}}, ".1.139809338537088": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338537088", "variance": "INVARIANT"}}, ".2.139809338537088": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338537088", "variance": "COVARIANT"}}, "139809221506016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}, {"nodeId": ".1.139809338537088"}], "returnType": {"nodeId": ".2.139809338537088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809242447456": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809292090976"}, {"nodeId": "139809292206368"}]}}, "139809292090976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}, {"nodeId": ".1.139809338537088"}], "returnType": {"nodeId": "139809242682352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809242682352": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809338537088"}, {"nodeId": "N"}]}}, "139809292206368": {"type": "Function", "content": {"typeVars": [".-1.139809292206368"], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}, {"nodeId": ".1.139809338537088"}, {"nodeId": "139809242682464"}], "returnType": {"nodeId": "139809242682576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "139809242682464": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809338537088"}, {"nodeId": ".-1.139809292206368"}]}}, ".-1.139809292206368": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292206368", "variance": "INVARIANT"}}, "139809242682576": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809338537088"}, {"nodeId": ".-1.139809292206368"}]}}, "139809292206816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}], "returnType": {"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251069088": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292077984"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292078432"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292078880"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292079328"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292079776"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292080224"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292080672"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292081120"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292081568"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292082016"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292082464"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292082912"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}], "bases": [{"nodeId": "139809251068736"}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809250868720"}]}], "isAbstract": false}}, ".1.139809251069088": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251069088", "variance": "COVARIANT"}}, ".2.139809251069088": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251069088", "variance": "COVARIANT"}}, "139809292077984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139809292078432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242679104"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809251072960": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225077280"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305329024"}, "name": "add"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305460800"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305461248"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305461696"}, "name": "difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305462144"}, "name": "discard"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305462592"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305463040"}, "name": "intersection_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305463488"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305463936"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305464384"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305464832"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305465280"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305465728"}, "name": "symmetric_difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305466176"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305466624"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305467072"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305467520"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305467968"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305468416"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305468864"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305469312"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305469760"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305470208"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305470656"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305471104"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305471552"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305472000"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305472448"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305472896"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305473344"}, "name": "__gt__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305473792"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809251072960"}], "bases": [{"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809251072960"}]}], "isAbstract": false}}, ".1.139809251072960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251072960", "variance": "INVARIANT"}}, "139809225077280": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305328128"}, {"nodeId": "139809305328576"}]}}, "139809305328128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305328576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305329024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": ".1.139809251072960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305460800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305461248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139809305461696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139809305462144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": ".1.139809251072960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305462592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139809305463040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139809305463488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305463936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305464384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305464832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": ".1.139809251072960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305465280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305465728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305466176": {"type": "Function", "content": {"typeVars": [".-1.139809305466176"], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809305466176"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809225079408"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.139809305466176": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305466176", "variance": "INVARIANT"}}, "139809225079408": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251072960"}, {"nodeId": ".-1.139809305466176"}]}}, "139809305466624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139809305467072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305467520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305467968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251072960"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305468416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809338536384": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221354976"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297196512"}, "name": "_hash"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297196960"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297197408"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297197856"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297198304"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297198752"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297199200"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297199648"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297200096"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297200544"}, "name": "isdisjoint"}}], "typeVars": [{"nodeId": ".1.139809338536384"}], "bases": [{"nodeId": "139809338535328", "args": [{"nodeId": ".1.139809338536384"}]}], "isAbstract": true}}, ".1.139809338536384": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338536384", "variance": "COVARIANT"}}, "139809221354976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297196512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297196960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297197408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297197856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297198304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297198752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297199200": {"type": "Function", "content": {"typeVars": [".-1.139809297199200"], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".-1.139809297199200"}]}], "returnType": {"nodeId": "139809338536384", "args": [{"nodeId": "139809242677872"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809297199200": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809297199200", "variance": "INVARIANT"}}, "139809242677872": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809338536384"}, {"nodeId": ".-1.139809297199200"}]}}, "139809297199648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297200096": {"type": "Function", "content": {"typeVars": [".-1.139809297200096"], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".-1.139809297200096"}]}], "returnType": {"nodeId": "139809338536384", "args": [{"nodeId": "139809242678096"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809297200096": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809297200096", "variance": "INVARIANT"}}, "139809242678096": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809338536384"}, {"nodeId": ".-1.139809297200096"}]}}, "139809297200544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139809338535328": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221348032"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338535328"}], "bases": [{"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809338535328"}]}, {"nodeId": "139809338534976", "args": [{"nodeId": ".1.139809338535328"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}}, ".1.139809338535328": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338535328", "variance": "COVARIANT"}}, "139809221348032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535328", "args": [{"nodeId": ".1.139809338535328"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809338534976": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221278880"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338534976"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__contains__"]}}, ".1.139809338534976": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338534976", "variance": "COVARIANT"}}, "139809221278880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534976", "args": [{"nodeId": ".1.139809338534976"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305468864": {"type": "Function", "content": {"typeVars": [".0.139809305468864"], "argTypes": [{"nodeId": ".0.139809305468864"}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": ".0.139809305468864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305468864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "def": "139809305468864", "variance": "INVARIANT"}}, "139809305469312": {"type": "Function", "content": {"typeVars": [".-1.139809305469312"], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".-1.139809305469312"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809225079632"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305469312": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305469312", "variance": "INVARIANT"}}, "139809225079632": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251072960"}, {"nodeId": ".-1.139809305469312"}]}}, "139809305469760": {"type": "Function", "content": {"typeVars": [".0.139809305469760"], "argTypes": [{"nodeId": ".0.139809305469760"}, {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": ".0.139809305469760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305469760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "def": "139809305469760", "variance": "INVARIANT"}}, "139809305470208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809225079744"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225079744": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251072960"}, {"nodeId": "N"}]}}, "139809305470656": {"type": "Function", "content": {"typeVars": [".0.139809305470656"], "argTypes": [{"nodeId": ".0.139809305470656"}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": ".0.139809305470656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305470656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "def": "139809305470656", "variance": "INVARIANT"}}, "139809305471104": {"type": "Function", "content": {"typeVars": [".-1.139809305471104"], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".-1.139809305471104"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809225079856"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305471104": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305471104", "variance": "INVARIANT"}}, "139809225079856": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251072960"}, {"nodeId": ".-1.139809305471104"}]}}, "139809305471552": {"type": "Function", "content": {"typeVars": [".0.139809305471552"], "argTypes": [{"nodeId": ".0.139809305471552"}, {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": ".0.139809305471552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305471552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "def": "139809305471552", "variance": "INVARIANT"}}, "139809305472000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305472448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305472896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305473344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305473792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809338536736": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "content": {"name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221356544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221414688"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297201888"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297202336"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297202784"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292075296"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292075744"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292076192"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292076640"}, "name": "__isub__"}}], "typeVars": [{"nodeId": ".1.139809338536736"}], "bases": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536736"}]}], "isAbstract": true}}, ".1.139809338536736": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338536736", "variance": "INVARIANT"}}, "139809221356544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}, {"nodeId": ".1.139809338536736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139809221414688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}, {"nodeId": ".1.139809338536736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139809297201888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297202336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}], "returnType": {"nodeId": ".1.139809338536736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297202784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}, {"nodeId": ".1.139809338536736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139809292075296": {"type": "Function", "content": {"typeVars": [".0.139809292075296"], "argTypes": [{"nodeId": ".0.139809292075296"}, {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536736"}]}], "returnType": {"nodeId": ".0.139809292075296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809292075296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}, "def": "139809292075296", "variance": "INVARIANT"}}, "139809292075744": {"type": "Function", "content": {"typeVars": [".0.139809292075744"], "argTypes": [{"nodeId": ".0.139809292075744"}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139809292075744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809292075744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}, "def": "139809292075744", "variance": "INVARIANT"}}, "139809292076192": {"type": "Function", "content": {"typeVars": [".0.139809292076192"], "argTypes": [{"nodeId": ".0.139809292076192"}, {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536736"}]}], "returnType": {"nodeId": ".0.139809292076192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809292076192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}, "def": "139809292076192", "variance": "INVARIANT"}}, "139809292076640": {"type": "Function", "content": {"typeVars": [".0.139809292076640"], "argTypes": [{"nodeId": ".0.139809292076640"}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139809292076640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809292076640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}, "def": "139809292076640", "variance": "INVARIANT"}}, "139809242679104": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292078880": {"type": "Function", "content": {"typeVars": [".-1.139809292078880"], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292078880"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".-1.139809292078880"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292078880": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292078880", "variance": "INVARIANT"}}, "139809292079328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292079776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809242679328"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809242679328": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292080224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809242679552"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809242679552": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292080672": {"type": "Function", "content": {"typeVars": [".-1.139809292080672"], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292080672"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242679888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292080672": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292080672", "variance": "INVARIANT"}}, "139809242679888": {"type": "Union", "content": {"items": [{"nodeId": "139809242679776"}, {"nodeId": ".-1.139809292080672"}]}}, "139809242679776": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292081120": {"type": "Function", "content": {"typeVars": [".-1.139809292081120"], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292081120"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242680224"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292081120": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292081120", "variance": "INVARIANT"}}, "139809242680224": {"type": "Union", "content": {"items": [{"nodeId": "139809242680112"}, {"nodeId": ".-1.139809292081120"}]}}, "139809242680112": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292081568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242680560"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809242680560": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292082016": {"type": "Function", "content": {"typeVars": [".-1.139809292082016"], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292082016"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".-1.139809292082016"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292082016": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292082016", "variance": "INVARIANT"}}, "139809292082464": {"type": "Function", "content": {"typeVars": [".-1.139809292082464"], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292082464"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242680896"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292082464": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292082464", "variance": "INVARIANT"}}, "139809242680896": {"type": "Union", "content": {"items": [{"nodeId": "139809242680784"}, {"nodeId": ".-1.139809292082464"}]}}, "139809242680784": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292082912": {"type": "Function", "content": {"typeVars": [".-1.139809292082912"], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292082912"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242681232"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292082912": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292082912", "variance": "INVARIANT"}}, "139809242681232": {"type": "Union", "content": {"items": [{"nodeId": "139809242681120"}, {"nodeId": ".-1.139809292082912"}]}}, "139809242681120": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809251068736": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292077088"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292077536"}, "name": "__len__"}}], "typeVars": [], "bases": [{"nodeId": "139809251067680"}], "isAbstract": false}}, "139809292077088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251068736"}, {"nodeId": "139809338537088", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139809292077536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251068736"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809251067680": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221183296"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__len__"]}}, "139809221183296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251067680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809250868720": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292207264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}], "returnType": {"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809338537088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809292207712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}], "returnType": {"nodeId": "139809251069792", "args": [{"nodeId": ".2.139809338537088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251069792": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292088736"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292089184"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292089632"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292090080"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809251069792"}], "bases": [{"nodeId": "139809251068736"}, {"nodeId": "139809338535328", "args": [{"nodeId": ".1.139809251069792"}]}], "isAbstract": false}}, ".1.139809251069792": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251069792", "variance": "COVARIANT"}}, "139809292088736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069792", "args": [{"nodeId": ".1.139809251069792"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": "A"}, {"nodeId": ".1.139809251069792"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139809292089184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069792", "args": [{"nodeId": ".1.139809251069792"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292089632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069792", "args": [{"nodeId": ".1.139809251069792"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251069792"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809292090080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069792", "args": [{"nodeId": ".1.139809251069792"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251069792"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809292208160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292208608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292083808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251069440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292084256": {"type": "Function", "content": {"typeVars": [".-1.139809292084256"], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292084256"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".-1.139809292084256"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292084256": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292084256", "variance": "INVARIANT"}}, "139809292084704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292085152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251069440"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809292085600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251069440"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809292086048": {"type": "Function", "content": {"typeVars": [".-1.139809292086048"], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292086048"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242681568"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292086048": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292086048", "variance": "INVARIANT"}}, "139809242681568": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251069440"}, {"nodeId": ".-1.139809292086048"}]}}, "139809292086496": {"type": "Function", "content": {"typeVars": [".-1.139809292086496"], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292086496"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242681680"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292086496": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292086496", "variance": "INVARIANT"}}, "139809242681680": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251069440"}, {"nodeId": ".-1.139809292086496"}]}}, "139809292086944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251069440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292087392": {"type": "Function", "content": {"typeVars": [".-1.139809292087392"], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292087392"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".-1.139809292087392"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292087392": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292087392", "variance": "INVARIANT"}}, "139809292087840": {"type": "Function", "content": {"typeVars": [".-1.139809292087840"], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292087840"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242681904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292087840": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292087840", "variance": "INVARIANT"}}, "139809242681904": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251069440"}, {"nodeId": ".-1.139809292087840"}]}}, "139809292088288": {"type": "Function", "content": {"typeVars": [".-1.139809292088288"], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292088288"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242682016"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292088288": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292088288", "variance": "INVARIANT"}}, "139809242682016": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251069440"}, {"nodeId": ".-1.139809292088288"}]}}, "139809317798624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "139809251069792", "args": [{"nodeId": ".2.139809262732032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317799072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317799520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139809317799968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809262732032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809317800416": {"type": "Function", "content": {"typeVars": [".-1.139809317800416", ".-2.139809317800416"], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809317800416"}, {"nodeId": ".-2.139809317800416"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809242690864"}, {"nodeId": "139809242690976"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809317800416": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809317800416", "variance": "INVARIANT"}}, ".-2.139809317800416": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809317800416", "variance": "INVARIANT"}}, "139809242690864": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".-1.139809317800416"}]}}, "139809242690976": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809262732032"}, {"nodeId": ".-2.139809317800416"}]}}, "139809317800864": {"type": "Function", "content": {"typeVars": [".-1.139809317800864", ".-2.139809317800864"], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809317800864"}, {"nodeId": ".-2.139809317800864"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809242691088"}, {"nodeId": "139809242691200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809317800864": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809317800864", "variance": "INVARIANT"}}, ".-2.139809317800864": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809317800864", "variance": "INVARIANT"}}, "139809242691088": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".-1.139809317800864"}]}}, "139809242691200": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809262732032"}, {"nodeId": ".-2.139809317800864"}]}}, "139809174973216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174973440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174973664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174972768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174972544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809229733024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229733024": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809174972320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229438112": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809322191552"}, {"nodeId": "139809322192000"}]}}, "139809322191552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809322192000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, null, "kwds"]}}, "139809229729888": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809322192448"}, {"nodeId": "139809322192896"}]}}, "139809322192448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809322192896": {"type": "Function", "content": {"typeVars": [".-1.139809322192896"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139809322192896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}}, ".-1.139809322192896": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809322192896", "variance": "INVARIANT"}}, "139809322193344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "139809322193792": {"type": "Function", "content": {"typeVars": [".-1.139809322193792"], "argTypes": [{"nodeId": ".-1.139809322193792"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".-1.139809322193792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139809322193792": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809322193792", "variance": "INVARIANT"}}, "139809322194240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809338538144"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809322194688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809322195136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}, {"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809174972096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}}, "139809322196032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262739072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262739072": {"type": "Concrete", "content": {"module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217347648"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317292512"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317292960"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217347648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262739072"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317292512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262739072"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262739072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809317292960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262739072"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262739072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809322196480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262739072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809217278720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738368"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217278944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738368"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317485728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738368"}, {"nodeId": "139809338538144"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}}, "139809317486176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738368"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809317291168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738368"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809338535680": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242446000"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297187552"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297188000"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297188448"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297188896"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297189344"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809338535680"}], "bases": [{"nodeId": "139809338535328", "args": [{"nodeId": ".1.139809338535680"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": ".1.139809338535680"}]}], "isAbstract": true}}, ".1.139809338535680": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338535680", "variance": "COVARIANT"}}, "139809242446000": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809297055328"}, {"nodeId": "139809297187104"}]}}, "139809297055328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809338535680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297187104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297187552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}, {"nodeId": "A"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}}, "139809297188000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139809297188448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297188896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338535680"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809297189344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338535680"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809338532512": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "content": {"name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221191808"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338532512"}], "bases": [{"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809338532512"}]}], "protocolMembers": ["__iter__", "__reversed__"]}}, ".1.139809338532512": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338532512", "variance": "COVARIANT"}}, "139809221191808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532512", "args": [{"nodeId": ".1.139809338532512"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338532512"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809170723264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809225069328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225069328": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "N"}]}}, "139809170723488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809225069440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225069440": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "N"}]}}, "139809170723712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170723936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170724160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809251081408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170724384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170724608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170724832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170725056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304894976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139809304895424": {"type": "Function", "content": {"typeVars": [".0.139809304895424"], "argTypes": [{"nodeId": ".0.139809304895424"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809304895424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250723616"}, "def": "139809304895424", "variance": "INVARIANT"}}, "139809304895872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809225069664"}, {"nodeId": "139809225069776"}, {"nodeId": "139809225069888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809225069664": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809225069776": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809250729248": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266823936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242266896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266825280"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301228096"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301228544"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301228992"}, "name": "with_traceback"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809266823936": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809242266896": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809266825280": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809262736960": {"type": "Concrete", "content": {"module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317470944"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266818896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217267744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217267968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217268192"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809317470944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736960"}, {"nodeId": "139809237735056"}, {"nodeId": "139809262737312"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}}, "139809237735056": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809262737312": {"type": "Concrete", "content": {"module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "content": {"name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217269760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217270208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217270432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217270656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217270880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217271104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217271328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809283959584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317475872"}, "name": "clear"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217269760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "139809237735168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237735168": {"type": "Union", "content": {"items": [{"nodeId": "139809262737312"}, {"nodeId": "N"}]}}, "139809217270208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217270432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "139809262731680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262731680": {"type": "Concrete", "content": {"module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "content": {"name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216803136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216804256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216803808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216804480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216804704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216804928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216805152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216805376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216805600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216805824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216806048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216806272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216806496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216921664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216921888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216922112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216922784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313530464"}, "name": "co_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313532704"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313534496"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809216803136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216804256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216803808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216804480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216804704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216804928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216805152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250722912": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229987328"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309578112"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309578560"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309579008"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309579456"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309579904"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309580352"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309581248"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309581696"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309582592"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309583040"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309583488"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309583936"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309584384"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309584832"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309585280"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309585728"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309586176"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309586624"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309587072"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309587520"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309587968"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309588416"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309588864"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309737024"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309737472"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309737920"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309738368"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309738816"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309739264"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309739712"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309740160"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309740608"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309741056"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309741504"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309741952"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309742400"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309742848"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309743296"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309743744"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309744192"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809170405216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809170404320"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309745536"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309745984"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229990240"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309747328"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309747776"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309748224"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309748672"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309749120"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309749568"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309750016"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309750464"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309750912"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309751360"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309751808"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309752256"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304608832"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809229987328": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809309576768"}, {"nodeId": "139809309577216"}, {"nodeId": "139809309577664"}]}}, "139809309576768": {"type": "Function", "content": {"typeVars": [".0.139809309576768"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809229991360"}], "returnType": {"nodeId": ".0.139809309576768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809229991360": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809251079296"}]}, {"nodeId": "139809251079296"}, {"nodeId": "139809251066976"}, {"nodeId": "139809251081408"}]}}, "139809251066976": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "content": {"name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221091712"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__bytes__"]}}, "139809221091712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251066976"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809309576768": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250722912"}, "def": "139809309576768", "variance": "INVARIANT"}}, "139809309577216": {"type": "Function", "content": {"typeVars": [".0.139809309577216"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809309577216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}}, ".0.139809309577216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250722912"}, "def": "139809309577216", "variance": "INVARIANT"}}, "139809309577664": {"type": "Function", "content": {"typeVars": [".0.139809309577664"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139809309577664"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139809309577664": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250722912"}, "def": "139809309577664", "variance": "INVARIANT"}}, "139809309578112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309578560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809309579008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229991472"}, {"nodeId": "139809229991584"}, {"nodeId": "139809229991696"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229991472": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809229991584": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229991696": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309579456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139809309579904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229991808"}, {"nodeId": "139809229991920"}, {"nodeId": "139809229992032"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229991808": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809251081408"}]}]}}, "139809229991920": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229992032": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309580352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "139809309581248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229992144"}, {"nodeId": "139809229992256"}, {"nodeId": "139809229992368"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229992144": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809229992256": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229992368": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309581696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229992480"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "139809229992480": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}]}}, "139809309582592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229992592"}, {"nodeId": "139809229992704"}, {"nodeId": "139809229992816"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229992592": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809229992704": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229992816": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309583040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309583488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309583936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309584384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309584832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309585280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309585728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309586176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309586624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809251081408"}]}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809309587072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}, {"nodeId": "139809229992928"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809229992928": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}]}}, "139809250723264": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229991248"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304610624"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304611072"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304611520"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304611968"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304612416"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304612864"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304613312"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304613760"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304614656"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304615104"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304615552"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304616448"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304616896"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304617344"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304617792"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304618240"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304618688"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304619136"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304619584"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304620032"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304620480"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304620928"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304621376"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304621824"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304622272"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304622720"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304623168"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304623616"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304624064"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304624512"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304739904"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304740352"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304740800"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304741248"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304741696"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304742144"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304742592"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304743040"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304743488"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304743936"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304744384"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304744832"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304745280"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304745728"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304746176"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304746624"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809170578944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809170577824"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304747968"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304748416"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229995280"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225068432"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304750656"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304751104"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304751552"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304752000"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304752448"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304752896"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304753344"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304753792"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304754240"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304754688"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304755136"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304755584"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304887360"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304887808"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304888256"}, "name": "__alloc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304888704"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304889152"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139809338536032", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809229991248": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809304609280"}, {"nodeId": "139809304609728"}, {"nodeId": "139809304610176"}]}}, "139809304609280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304609728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225064512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225064512": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809251079296"}]}, {"nodeId": "139809251079296"}, {"nodeId": "139809251081408"}]}}, "139809304610176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}}, "139809304610624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809304611072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304611520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809304611968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225064624"}, {"nodeId": "139809225064736"}, {"nodeId": "139809225064848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809225064624": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809225064736": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809225064848": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809304612416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304612864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139809304613312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225064960"}, {"nodeId": "139809225065072"}, {"nodeId": "139809225065184"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809225064960": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809251081408"}]}]}}, "139809225065072": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809225065184": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809304613760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "139809304614656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809251079296"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809304615104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225065296"}, {"nodeId": "139809225065408"}, {"nodeId": "139809225065520"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809225065296": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809225065408": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809225065520": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809304615552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225065632"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "139809225065632": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}]}}, "139809304616448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225065744"}, {"nodeId": "139809225065856"}, {"nodeId": "139809225065968"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809225065744": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809225065856": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809225065968": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809304616896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809304617344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304617792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304618240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304618688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304619136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304619584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304620032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304620480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304620928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809251081408"}]}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809304621376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}, {"nodeId": "139809225066080"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809225066080": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}]}}, "139809304621824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304622272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225066192"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809225066192": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809304622720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809225066416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225066416": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250723264"}, {"nodeId": "139809250723264"}, {"nodeId": "139809250723264"}]}}, "139809304623168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809304623616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809304624064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809304624512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809304739904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}, {"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809304740352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225066528"}, {"nodeId": "139809225066640"}, {"nodeId": "139809225066752"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809225066528": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809225066640": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809225066752": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809304740800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225066864"}, {"nodeId": "139809225066976"}, {"nodeId": "139809225067088"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809225066864": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809225066976": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809225067088": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809304741248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}, {"nodeId": "139809225067200"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809225067200": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}]}}, "139809304741696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809225067424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225067424": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250723264"}, {"nodeId": "139809250723264"}, {"nodeId": "139809250723264"}]}}, "139809304742144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225067536"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250723264"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809225067536": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809304742592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225067648"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809225067648": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809304743040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225067760"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250723264"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809225067760": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809304743488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250723264"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139809304743936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225067872"}, {"nodeId": "139809225067984"}, {"nodeId": "139809225068096"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809225067872": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809251081408"}]}]}}, "139809225067984": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809225068096": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809304744384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225068208"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809225068208": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809304744832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304745280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304745728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225068320"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "139809225068320": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809304746176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304746624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809170578944": {"type": "Function", "content": {"typeVars": [".0.139809170578944"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809170578944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139809170578944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250723264"}, "def": "139809170578944", "variance": "INVARIANT"}}, "139809170577824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081408"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304747968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809304748416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809229995280": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809304748864"}, {"nodeId": "139809304749312"}]}}, "139809304748864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304749312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225068432": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809304749760"}, {"nodeId": "139809304750208"}]}}, "139809304749760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809304750208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809250723968"}, {"nodeId": "139809225068768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809225068768": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809251079296"}]}, {"nodeId": "139809250722912"}]}}, "139809304750656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225068880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225068880": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "139809250723968"}]}}, "139809304751104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304751552": {"type": "Function", "content": {"typeVars": [".0.139809304751552"], "argTypes": [{"nodeId": ".0.139809304751552"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": ".0.139809304751552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809304751552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250723264"}, "def": "139809304751552", "variance": "INVARIANT"}}, "139809304752000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304752448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304752896": {"type": "Function", "content": {"typeVars": [".0.139809304752896"], "argTypes": [{"nodeId": ".0.139809304752896"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".0.139809304752896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809304752896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250723264"}, "def": "139809304752896", "variance": "INVARIANT"}}, "139809304753344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304753792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225069104"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225069104": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "139809251081408"}]}}, "139809304754240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304754688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304755136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304755584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304887360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304887808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304888256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304888704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809304889152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809250723616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809338536032": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "content": {"name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221352288"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242446448"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242447008"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242447344"}, "items": [{"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297192928"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297193376"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297193824"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297194272"}, "name": "reverse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297194720"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297195168"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297195616"}, "name": "__iadd__"}}], "typeVars": [{"nodeId": ".1.139809338536032"}], "bases": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338536032"}]}], "isAbstract": true}}, ".1.139809338536032": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338536032", "variance": "INVARIANT"}}, "139809221352288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809338538848"}, {"nodeId": ".1.139809338536032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}}, "139809242446448": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809297190240"}, {"nodeId": "139809297190688"}]}}, "139809297190240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809338536032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297190688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809242447008": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809297191136"}, {"nodeId": "139809297191584"}]}}, "139809297191136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809338538848"}, {"nodeId": ".1.139809338536032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809297191584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809250723968"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809338536032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809242447344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809297192032"}, {"nodeId": "139809297192480"}]}}, "139809297192032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297192480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297192928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": ".1.139809338536032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139809297193376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297193824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809338536032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}}, "139809297194272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297194720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809338536032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}}, "139809297195168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": ".1.139809338536032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139809297195616": {"type": "Function", "content": {"typeVars": [".0.139809297195616"], "argTypes": [{"nodeId": ".0.139809297195616"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809338536032"}]}], "returnType": {"nodeId": ".0.139809297195616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809297195616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, "def": "139809297195616", "variance": "INVARIANT"}}, "139809309587520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309587968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229993040"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809229993040": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809309588416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809229993264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229993264": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}]}}, "139809309588864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251081408"}, {"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809309737024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809309737472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809309737920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229993376"}, {"nodeId": "139809229993488"}, {"nodeId": "139809229993600"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229993376": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809229993488": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229993600": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309738368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229993712"}, {"nodeId": "139809229993824"}, {"nodeId": "139809229993936"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229993712": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809229993824": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229993936": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309738816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}, {"nodeId": "139809229994048"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809229994048": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}]}}, "139809309739264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809229994272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229994272": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}]}}, "139809309739712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229994384"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722912"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809229994384": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809309740160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229994496"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809229994496": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809309740608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229994608"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722912"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809229994608": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809309741056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722912"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139809309741504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229994720"}, {"nodeId": "139809229994832"}, {"nodeId": "139809229994944"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229994720": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809251081408"}]}]}}, "139809229994832": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229994944": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309741952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229995056"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809229995056": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809309742400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309742848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309743296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229995168"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "139809229995168": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809309743744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309744192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809170405216": {"type": "Function", "content": {"typeVars": [".0.139809170405216"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809170405216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139809170405216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250722912"}, "def": "139809170405216", "variance": "INVARIANT"}}, "139809170404320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081408"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309745536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309745984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809229990240": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809309746432"}, {"nodeId": "139809309746880"}]}}, "139809309746432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309746880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309747328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309747776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309748224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309748672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309749120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229995504"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809229995504": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "139809251081408"}]}}, "139809309749568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309750016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309750464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309750912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309751360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309751808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309752256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809229995728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229995728": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}]}}, "139809304608832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809216805376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216805600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216805824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216806048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216806272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216806496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216921664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216921888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216922112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216922784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809313530464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809242690640"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242690640": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809242690416"}]}}, "139809242690416": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809313532704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null]}}, "139809313534496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809262731680"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "co_argcount", "co_posonlyargcount", "co_kwonlyargcount", "co_nlocals", "co_stacksize", "co_flags", "co_firstlineno", "co_code", "co_consts", "co_names", "co_varnames", "co_freevars", "co_cellvars", "co_filename", "co_name", "co_linetable"]}}, "139809217270656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217270880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217271104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "139809237735616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237735616": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "A"}]}}, "139809217271328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809283959584": {"type": "Union", "content": {"items": [{"nodeId": "139809266693312"}, {"nodeId": "N"}]}}, "139809266693312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809317475872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809266818896": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809217267744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736960"}], "returnType": {"nodeId": "139809262737312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217267968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736960"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217268192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736960"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809301228096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250729248"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "139809301228544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250729248"}, {"nodeId": "139809225631648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225631648": {"type": "Union", "content": {"items": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809301228992": {"type": "Function", "content": {"typeVars": [".0.139809301228992"], "argTypes": [{"nodeId": ".0.139809301228992"}, {"nodeId": "139809225631872"}], "returnType": {"nodeId": ".0.139809301228992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.139809301228992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250729248"}, "def": "139809301228992", "variance": "INVARIANT"}}, "139809225631872": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809225069888": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809304896320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809250722560"}, {"nodeId": "139809225070000"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}}, "139809225070000": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}]}}, "139809225068544": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809304896768"}, {"nodeId": "139809304897216"}]}}, "139809304896768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304897216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304897664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304898112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809304898560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809225069552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809304899008"}, {"nodeId": "139809304899456"}]}}, "139809304899008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809250723968"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809304899456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809304899904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809225070784"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139809225070784": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "139809304901248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304901696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304902144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304902592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809225070672"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "139809225070672": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}]}}, "139809305018432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305018880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809250723616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809251065920": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "content": {"name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221086784"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__int__"]}}, "139809221086784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251065920"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809262990112": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317301920"}, "name": "__trunc__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__trunc__"]}}, "139809317301920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262990112"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809322198272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338538848"}, "def": "139809322198272", "variance": "INVARIANT"}}, "139809322198720": {"type": "Function", "content": {"typeVars": [".0.139809322198720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809229981280"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".0.139809322198720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}}, "139809229981280": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}]}}, ".0.139809322198720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338538848"}, "def": "139809322198720", "variance": "INVARIANT"}}, "139809322199168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809229981616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229981616": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "0"}]}}, "139809174968960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174969632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174968064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174967840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809322201408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809322201856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809322202304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809322203648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809251079296"}, {"nodeId": "139809229982176"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}}, "139809229982176": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139809179274144": {"type": "Function", "content": {"typeVars": [".0.139809179274144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809229982288"}, {"nodeId": "139809229982624"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": ".0.139809179274144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}}, "139809229982288": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809251079296"}]}, {"nodeId": "139809251066976"}, {"nodeId": "139809251081408"}]}}, "139809229982624": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, ".0.139809179274144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338538848"}, "def": "139809179274144", "variance": "INVARIANT"}}, "139809308950592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308951040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308951488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308951936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308952384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809338539200": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309104320"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309104768"}, "name": "as_integer_ratio"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309105216"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309105664"}, "name": "is_integer"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809175443424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809175443872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809175442528"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309107456"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309107904"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309108352"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309108800"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309109248"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309109696"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309110144"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309110592"}, "name": "__divmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229981056"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309111936"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309112384"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309112832"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309113280"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309113728"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309212736"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309213184"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229984528"}, "items": [{"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309214976"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309215424"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309215872"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309216320"}, "name": "__floor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229985200"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309217664"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309218112"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309218560"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309219008"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309219456"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309219904"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309220352"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309220800"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309221248"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309221696"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309222144"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309222592"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809309104320": {"type": "Function", "content": {"typeVars": [".0.139809309104320"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809229984640"}], "returnType": {"nodeId": ".0.139809309104320"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "139809229984640": {"type": "Union", "content": {"items": [{"nodeId": "139809251066272"}, {"nodeId": "139809251079296"}, {"nodeId": "139809250722560"}, {"nodeId": "139809251081408"}]}}, "139809251066272": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "content": {"name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221088576"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__float__"]}}, "139809221088576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251066272"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809309104320": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338539200"}, "def": "139809309104320", "variance": "INVARIANT"}}, "139809309104768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809229984864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229984864": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809309105216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309105664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809175443424": {"type": "Function", "content": {"typeVars": [".0.139809175443424"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809175443424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139809175443424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338539200"}, "def": "139809175443424", "variance": "INVARIANT"}}, "139809175443872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809175442528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309107456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309107904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309108352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309108800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309109248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309109696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309110144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309110592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809229985088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809229985088": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809229981056": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809309111040"}, {"nodeId": "139809309111488"}]}}, "139809309111040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809309111488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809309111936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309112384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309112832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309113280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309113728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309212736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309213184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809229985536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229985536": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809229984528": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809309213632"}, {"nodeId": "139809309214080"}, {"nodeId": "139809309214528"}]}}, "139809309213632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809229985760"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809229985760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809259102480"}}}, "139809259102480": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809309214080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809229985872"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809229985872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809259101024"}}}, "139809259101024": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809338539552": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229985648"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809175449696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809175451040"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309225728"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309226176"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309226624"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309227072"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309227520"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309227968"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309228416"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309311040"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309311488"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309311936"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309312384"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309312832"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309313280"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309313728"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309314176"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309314624"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309315072"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809229985648": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809309223040"}, {"nodeId": "139809309223488"}]}}, "139809309223040": {"type": "Function", "content": {"typeVars": [".0.139809309223040"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809229986656"}, {"nodeId": "139809229986768"}], "returnType": {"nodeId": ".0.139809309223040"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}}, "139809229986656": {"type": "Union", "content": {"items": [{"nodeId": "139809338539552"}, {"nodeId": "139809251066624"}, {"nodeId": "139809251066272"}, {"nodeId": "139809251079296"}]}}, "139809251066624": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "content": {"name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221090144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__complex__"]}}, "139809221090144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251066624"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809229986768": {"type": "Union", "content": {"items": [{"nodeId": "139809338539552"}, {"nodeId": "139809251066272"}, {"nodeId": "139809251079296"}]}}, ".0.139809309223040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338539552"}, "def": "139809309223040", "variance": "INVARIANT"}}, "139809309223488": {"type": "Function", "content": {"typeVars": [".0.139809309223488"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809229986880"}], "returnType": {"nodeId": ".0.139809309223488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}}, "139809229986880": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251066624"}, {"nodeId": "139809251066272"}, {"nodeId": "139809251079296"}, {"nodeId": "139809338539552"}]}}, ".0.139809309223488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338539552"}, "def": "139809309223488", "variance": "INVARIANT"}}, "139809175449696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809175451040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309225728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309226176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309226624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309227072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309227520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809309227968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309228416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309311040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309311488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309311936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809309312384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309312832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309313280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309313728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309314176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309314624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309315072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309214528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809309214976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809229986208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229986208": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}]}}, "139809309215424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309215872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309216320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229985200": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809309216768"}, {"nodeId": "139809309217216"}]}}, "139809309216768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809309217216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809309217664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309218112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309218560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309219008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309219456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309219904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309220352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309220800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309221248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309221696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309222144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309222592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809308952832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308953280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809229982848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809229982848": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809308953728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308954176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308954624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308955072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308955520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308955968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308956416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809229983072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229983072": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809229980496": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809308956864"}, {"nodeId": "139809308957312"}, {"nodeId": "139809308957760"}, {"nodeId": "139809308958208"}, {"nodeId": "139809308958656"}, {"nodeId": "139809308959104"}]}}, "139809308956864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308957312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809308957760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809229983744"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809229983744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809259102480"}}}, "139809308958208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809229983856"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809229983856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809259101024"}}}, "139809308958656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809308959104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809308959552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809229984080"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809229984080": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809308960000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308960448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308960896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308961344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308961792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308962240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308962688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308963136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308963584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308964032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308964480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809308964928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809308965376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809308965824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809308966272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309098048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309098496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809309098944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809229984416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229984416": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}]}}, "139809309099392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309099840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309100288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309100736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309101184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309101632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309102080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309102528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309102976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309103424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309103872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305155328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": ".1.139809250724672"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809305155776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": ".1.139809250724672"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305156224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809251079296"}, {"nodeId": ".1.139809250724672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809305156672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": ".1.139809250724672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225073248": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305157120"}, {"nodeId": "139809305157568"}]}}, "139809305157120": {"type": "Function", "content": {"typeVars": [".-1.139809305157120"], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".-1.139809305157120"}]}, {"nodeId": "N"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.139809305157120": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "139809242253232"}, "def": "139809305157120", "variance": "INVARIANT"}}, "139809242253232": {"type": "Union", "content": {"items": [{"nodeId": "139809262985184", "args": [{"nodeId": "A"}]}, {"nodeId": "139809262985536", "args": [{"nodeId": "A"}]}]}}, "139809262985184": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317295648"}, "name": "__lt__"}}], "typeVars": [{"nodeId": ".1.139809262985184"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__lt__"]}}, ".1.139809262985184": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262985184", "variance": "CONTRAVARIANT"}}, "139809317295648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262985184", "args": [{"nodeId": ".1.139809262985184"}]}, {"nodeId": ".1.139809262985184"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262985536": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317296096"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.139809262985536"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__gt__"]}}, ".1.139809262985536": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262985536", "variance": "CONTRAVARIANT"}}, "139809317296096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262985536", "args": [{"nodeId": ".1.139809262985536"}]}, {"nodeId": ".1.139809262985536"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305157568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809224994464"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "139809224994464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.139809250724672"}], "returnType": {"nodeId": "139809225074816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809225074816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791920"}}}, "139809254791920": {"type": "Union", "content": {"items": [{"nodeId": "139809262985184", "args": [{"nodeId": "A"}]}, {"nodeId": "139809262985536", "args": [{"nodeId": "A"}]}]}}, "139809305158016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305158464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809250724672"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809225074368": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305158912"}, {"nodeId": "139809305159360"}]}}, "139809305158912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".1.139809250724672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305159360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225074480": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305159808"}, {"nodeId": "139809305160256"}]}}, "139809305159808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809251079296"}, {"nodeId": ".1.139809250724672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809305160256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250723968"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809305160704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809225075040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225075040": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "139809250723968"}]}}, "139809225074704": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305161152"}, {"nodeId": "139809305161600"}]}}, "139809305161152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305161600": {"type": "Function", "content": {"typeVars": [".-1.139809305161600"], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250724672", "args": [{"nodeId": ".-1.139809305161600"}]}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809225075264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305161600": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305161600", "variance": "INVARIANT"}}, "139809225075264": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139809305161600"}, {"nodeId": ".1.139809250724672"}]}}, "139809305162048": {"type": "Function", "content": {"typeVars": [".0.139809305162048"], "argTypes": [{"nodeId": ".0.139809305162048"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": ".0.139809305162048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305162048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, "def": "139809305162048", "variance": "INVARIANT"}}, "139809305162496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305162944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305163392": {"type": "Function", "content": {"typeVars": [".0.139809305163392"], "argTypes": [{"nodeId": ".0.139809305163392"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".0.139809305163392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305163392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, "def": "139809305163392", "variance": "INVARIANT"}}, "139809305163840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305164288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809250724672"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305164736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305165184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305313344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305313792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305314240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809305317824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250722912"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305318272": {"type": "Function", "content": {"typeVars": [".0.139809305318272"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809305318272"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, ".0.139809305318272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, "def": "139809305318272", "variance": "INVARIANT"}}, "139809305318720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305319168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "139809251071904", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251071904": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809178833568"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809251071904"}, {"nodeId": ".2.139809251071904"}], "bases": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251071904"}]}], "isAbstract": false}}, ".1.139809251071904": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251071904", "variance": "COVARIANT"}}, ".2.139809251071904": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251071904", "variance": "COVARIANT"}}, "139809178833568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071904", "args": [{"nodeId": ".1.139809251071904"}, {"nodeId": ".2.139809251071904"}]}], "returnType": {"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809251071904"}, {"nodeId": ".2.139809251071904"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305319616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "139809251072256", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251072256": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809178836704"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809251072256"}, {"nodeId": ".2.139809251072256"}], "bases": [{"nodeId": "139809251069792", "args": [{"nodeId": ".2.139809251072256"}]}], "isAbstract": false}}, ".1.139809251072256": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251072256", "variance": "COVARIANT"}}, ".2.139809251072256": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251072256", "variance": "COVARIANT"}}, "139809178836704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072256", "args": [{"nodeId": ".1.139809251072256"}, {"nodeId": ".2.139809251072256"}]}], "returnType": {"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809251072256"}, {"nodeId": ".2.139809251072256"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305320064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "139809251072608", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251072608": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183876480"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809251072608"}, {"nodeId": ".2.139809251072608"}], "bases": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251072608"}, {"nodeId": ".2.139809251072608"}]}], "isAbstract": false}}, ".1.139809251072608": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251072608", "variance": "COVARIANT"}}, ".2.139809251072608": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251072608", "variance": "COVARIANT"}}, "139809183876480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072608", "args": [{"nodeId": ".1.139809251072608"}, {"nodeId": ".2.139809251072608"}]}], "returnType": {"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809251072608"}, {"nodeId": ".2.139809251072608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225075376": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305320512"}, {"nodeId": "139809305320960"}]}}, "139809305320512": {"type": "Function", "content": {"typeVars": [".-1.139809305320512"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809305320512"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": ".-1.139809305320512"}, {"nodeId": "139809225076720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}}, ".-1.139809305320512": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305320512", "variance": "INVARIANT"}}, "139809225076720": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809305320960": {"type": "Function", "content": {"typeVars": [".-1.139809305320960", ".-2.139809305320960"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809305320960"}]}, {"nodeId": ".-2.139809305320960"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": ".-1.139809305320960"}, {"nodeId": ".-2.139809305320960"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.139809305320960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305320960", "variance": "INVARIANT"}}, ".-2.139809305320960": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305320960", "variance": "INVARIANT"}}, "139809225076160": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305321408"}, {"nodeId": "139809305321856"}]}}, "139809305321408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".1.139809250725024"}], "returnType": {"nodeId": "139809225076944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225076944": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809250725024"}, {"nodeId": "N"}]}}, "139809305321856": {"type": "Function", "content": {"typeVars": [".-1.139809305321856"], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".1.139809250725024"}, {"nodeId": "139809225077056"}], "returnType": {"nodeId": "139809225077168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809225077056": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809250725024"}, {"nodeId": ".-1.139809305321856"}]}}, ".-1.139809305321856": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305321856", "variance": "INVARIANT"}}, "139809225077168": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809250725024"}, {"nodeId": ".-1.139809305321856"}]}}, "139809225076496": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305322304"}, {"nodeId": "139809305322752"}]}}, "139809305322304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".1.139809250725024"}], "returnType": {"nodeId": ".2.139809250725024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305322752": {"type": "Function", "content": {"typeVars": [".-1.139809305322752"], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".1.139809250725024"}, {"nodeId": "139809225077392"}], "returnType": {"nodeId": "139809225077504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809225077392": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809250725024"}, {"nodeId": ".-1.139809305322752"}]}}, ".-1.139809305322752": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305322752", "variance": "INVARIANT"}}, "139809225077504": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809250725024"}, {"nodeId": ".-1.139809305322752"}]}}, "139809305323200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305323648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".1.139809250725024"}], "returnType": {"nodeId": ".2.139809250725024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305324096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809305324544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".1.139809250725024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305324992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809250725024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305325440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809250725024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305325888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809305326336": {"type": "Function", "content": {"typeVars": [".-1.139809305326336", ".-2.139809305326336"], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809305326336"}, {"nodeId": ".-2.139809305326336"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809225077728"}, {"nodeId": "139809225077840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305326336": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305326336", "variance": "INVARIANT"}}, ".-2.139809305326336": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305326336", "variance": "INVARIANT"}}, "139809225077728": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".-1.139809305326336"}]}}, "139809225077840": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809250725024"}, {"nodeId": ".-2.139809305326336"}]}}, "139809305326784": {"type": "Function", "content": {"typeVars": [".-1.139809305326784", ".-2.139809305326784"], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809305326784"}, {"nodeId": ".-2.139809305326784"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809225077952"}, {"nodeId": "139809225078064"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305326784": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305326784", "variance": "INVARIANT"}}, ".-2.139809305326784": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305326784", "variance": "INVARIANT"}}, "139809225077952": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".-1.139809305326784"}]}}, "139809225078064": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809250725024"}, {"nodeId": ".-2.139809305326784"}]}}, "139809225076832": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305327232"}, {"nodeId": "139809305327680"}]}}, "139809305327232": {"type": "Function", "content": {"typeVars": [".0.139809305327232"], "argTypes": [{"nodeId": ".0.139809305327232"}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": ".0.139809305327232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305327232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, "def": "139809305327232", "variance": "INVARIANT"}}, "139809305327680": {"type": "Function", "content": {"typeVars": [".0.139809305327680"], "argTypes": [{"nodeId": ".0.139809305327680"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809225078400"}]}], "returnType": {"nodeId": ".0.139809305327680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305327680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, "def": "139809305327680", "variance": "INVARIANT"}}, "139809225078400": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}}, "139809338537440": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221508032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221508480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292209952"}, "name": "clear"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242678320"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292211296"}, "name": "popitem"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242682240"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242682688"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}], "typeVars": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}], "bases": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}], "isAbstract": true}}, ".1.139809338537440": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338537440", "variance": "INVARIANT"}}, ".2.139809338537440": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338537440", "variance": "INVARIANT"}}, "139809221508032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809221508480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": ".1.139809338537440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292209952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242678320": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809292210400"}, {"nodeId": "139809292210848"}]}}, "139809292210400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": ".1.139809338537440"}], "returnType": {"nodeId": ".2.139809338537440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809292210848": {"type": "Function", "content": {"typeVars": [".-1.139809292210848"], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": ".1.139809338537440"}, {"nodeId": "139809242682800"}], "returnType": {"nodeId": "139809242682912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "139809242682800": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809338537440"}, {"nodeId": ".-1.139809292210848"}]}}, ".-1.139809292210848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292210848", "variance": "INVARIANT"}}, "139809242682912": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809338537440"}, {"nodeId": ".-1.139809292210848"}]}}, "139809292211296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}], "returnType": {"nodeId": "139809242683136"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242683136": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}}, "139809242682240": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809292211744"}, {"nodeId": "139809292212192"}]}}, "139809292211744": {"type": "Function", "content": {"typeVars": [".-1.139809292211744"], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": "139809242683360"}]}, {"nodeId": ".1.139809338537440"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809242683472"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809242683360": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139809292211744"}, {"nodeId": "N"}]}}, ".-1.139809292211744": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292211744", "variance": "INVARIANT"}}, "139809242683472": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139809292211744"}, {"nodeId": "N"}]}}, "139809292212192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}], "returnType": {"nodeId": ".2.139809338537440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809242682688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809292212640"}, {"nodeId": "139809292213088"}, {"nodeId": "139809292213536"}]}}, "139809292212640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": ".2.139809338537440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809292213088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809242683808"}]}, {"nodeId": ".2.139809338537440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809242683808": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}}, "139809292213536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": ".2.139809338537440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139809229437776": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809330758144"}]}}, "139809330758144": {"type": "Function", "content": {"typeVars": [".0.139809330758144"], "argTypes": [{"nodeId": ".0.139809330758144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809330758144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330758144", "variance": "INVARIANT"}}, "139809175292160": {"type": "Function", "content": {"typeVars": [".0.139809175292160"], "argTypes": [{"nodeId": ".0.139809175292160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809175292160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809175292160", "variance": "INVARIANT"}}, "139809330759040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809330759488": {"type": "Function", "content": {"typeVars": [".0.139809330759488"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139809330759488"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139809330759488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330759488", "variance": "INVARIANT"}}, "139809330759936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809330760384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809330760832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809330761280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809330761728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809330762176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809330762624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809330763072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809330763520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809330763968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809330764416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809229730336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229730336": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}]}}, "139809330764864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809229730560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229730560": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}]}}, "139809330766208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809330766656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139809175291488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139809309316864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250722560"}, "def": "139809309316864", "variance": "INVARIANT"}}, "139809309317312": {"type": "Function", "content": {"typeVars": [".0.139809309317312"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809251081408"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809309317312"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}}, ".0.139809309317312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250722560"}, "def": "139809309317312", "variance": "INVARIANT"}}, "139809309317760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309318208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309318656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809309319104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809229987440"}, {"nodeId": "139809229987552"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}}, "139809229987440": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229987552": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309319552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139809309320000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229987664"}, {"nodeId": "139809229987776"}, {"nodeId": "139809229987888"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229987664": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}]}}, "139809229987776": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229987888": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309320448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "139809309321344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809229988000"}, {"nodeId": "139809229988112"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229988000": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229988112": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309321792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809309322240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250721856"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}}, "139809250721856": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309315968"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__getitem__"]}}, "139809309315968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250721856"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309322688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809229988224"}, {"nodeId": "139809229988336"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229988224": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229988336": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309323136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309323584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309324032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309324480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309324928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309325376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309325824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309326272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309326720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309442112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309442560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309443008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309443456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809309443904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809309444352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309444800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229988448"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809229988448": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809309445248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809229988672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229988672": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809309445696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809309446144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809309446592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809309447040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809229988784"}, {"nodeId": "139809229988896"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229988784": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229988896": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309447488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809229989008"}, {"nodeId": "139809229989120"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229989008": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229989120": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309447936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809309448384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809229989344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229989344": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809309448832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229989456"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809229989456": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809309449280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229989568"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809229989568": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809309449728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229989680"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809229989680": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809309450176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139809309450624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229989792"}, {"nodeId": "139809229989904"}, {"nodeId": "139809229990016"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229989792": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}]}}, "139809229989904": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229990016": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309451072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229990128"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809229990128": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809309451520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309451968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309452416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722208"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809250722208": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309316416"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__getitem__"]}}, "139809309316416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722208"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809229987104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809229987104": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809309452864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309453312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229986544": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809234286880"}, {"nodeId": "139809309453760"}, {"nodeId": "139809309454208"}]}}, "139809234286880": {"type": "Function", "content": {"typeVars": [".-1.139809234286880"], "argTypes": [{"nodeId": "139809229990464"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": ".-1.139809234286880"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809229990464": {"type": "Union", "content": {"items": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": ".-1.139809234286880"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".-1.139809234286880"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809229990352"}, {"nodeId": ".-1.139809234286880"}]}]}}, ".-1.139809234286880": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809234286880", "variance": "INVARIANT"}}, "139809229990352": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809309453760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309454208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": "139809229990576"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809229990576": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809309455104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309455552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309456000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309456448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309456896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229990688"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809229990688": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "139809250723968"}]}}, "139809309457344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309457792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309573184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309573632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309574080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309574528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309574976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309575424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309575872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309576320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809229991024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229991024": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809242117248": {"type": "Concrete", "content": {"module": "import_test", "simpleName": "A", "members": [], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809250302208": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809334213344"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242146384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242146608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250173648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250173760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809196038560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809334214240"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809334213344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250302208"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233723664"}, {"nodeId": "139809233723776"}, {"nodeId": "139809233724000"}, {"nodeId": "139809233724112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "loader", "origin", "loader_state", "is_package"]}}, "139809233723664": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809250303264": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296277664"}, "name": "load_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296278112"}, "name": "module_repr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296278560"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296279008"}, "name": "exec_module"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809296277664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303264"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809262733088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809262733088": {"type": "Concrete", "content": {"module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266818560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216936448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266820688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259097328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338536032", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259097888"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317804000"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317804448"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809266818560": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809216936448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733088"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809266820688": {"type": "Union", "content": {"items": [{"nodeId": "139809262732736"}, {"nodeId": "N"}]}}, "139809262732736": {"type": "Protocol", "content": {"module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317803104"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["load_module"]}}, "139809317803104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732736"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809262733088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809259097328": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809259097888": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809317804000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733088"}, {"nodeId": "139809250722560"}, {"nodeId": "139809242691760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}}, "139809242691760": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809317804448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733088"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809296278112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303264"}, {"nodeId": "139809262733088"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139809296278560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303264"}, {"nodeId": "139809250302208"}], "returnType": {"nodeId": "139809233727584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "139809233727584": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809296279008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303264"}, {"nodeId": "139809262733088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139809233723776": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233724000": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809233724112": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809242146384": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809242146608": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250173648": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809250173760": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809196038560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250302208"}], "returnType": {"nodeId": "139809233724224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233724224": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809334214240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250302208"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809242109504": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196036768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196035872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196035424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196034976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196034528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196034304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196033856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196032064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195998144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250305024"}, {"nodeId": "139809250303968"}], "isAbstract": false}}, "139809196036768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233724336"}], "returnType": {"nodeId": "139809233724448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139809233724336": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233724448": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809196035872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233724560"}, {"nodeId": "139809233724672"}], "returnType": {"nodeId": "139809233724784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139809233724560": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233724672": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809233724784": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809196035424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809196034976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809262733088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809196034528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809196034304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809196033856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733088"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "139809196032064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250302208"}], "returnType": {"nodeId": "139809233724896"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "139809233724896": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809195998144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "139809250305024": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296284384"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296284832"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296285280"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "139809250302912"}], "isAbstract": false}}, "139809296284384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305024"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233728480"}], "returnType": {"nodeId": "139809233728592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "139809233728480": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233728592": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809296284832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296285280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305024"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233728704"}, {"nodeId": "139809233728816"}], "returnType": {"nodeId": "139809233728928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "139809233728704": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233728816": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809233728928": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809250302912": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809250303968": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296279904"}, "name": "is_package"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296280352"}, "name": "get_code"}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196038784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296281248"}, "name": "exec_module"}}, {"kind": "Variable", "content": {"name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195984032"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250303264"}], "isAbstract": true}}, "139809296279904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303968"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809296280352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303968"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233727696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809233727696": {"type": "Union", "content": {"items": [{"nodeId": "139809262731680"}, {"nodeId": "N"}]}}, "139809196038784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303968"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233727808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809233727808": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809296281248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303968"}, {"nodeId": "139809262733088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139809195984032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233727920"}, {"nodeId": "139809233728144"}], "returnType": {"nodeId": "139809262731680"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}}, "139809233727920": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809250722560"}, {"nodeId": "139809259147808"}, {"nodeId": "139809259148512"}, {"nodeId": "139809259148160"}]}}, "139809259147808": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179353600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259147104"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146400"}], "isAbstract": false}}, "139809179353600": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259148864": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259146048": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179167072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296571232"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242266224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259356448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259356224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809179167072": {"type": "Tuple", "content": {"items": []}}, "139809296571232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259146048"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809242266224": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809259356448": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809259356224": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809259147104": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179171216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146752"}], "isAbstract": false}}, "139809179171216": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259146752": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259146400": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259148512": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179355840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146400"}], "isAbstract": false}}, "139809179355840": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259158016": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259148160": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179354944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146400"}], "isAbstract": false}}, "139809179354944": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809233728144": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809233728032"}]}}, "139809233728032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809250866368": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809242105280", "args": [{"nodeId": "139809250722560"}]}]}}, "139809242105280": {"type": "Protocol", "content": {"module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "content": {"name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809204321440"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809242105280"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__fspath__"]}}, ".1.139809242105280": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809242105280", "variance": "COVARIANT"}}, "139809204321440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242105280", "args": [{"nodeId": ".1.139809242105280"}]}], "returnType": {"nodeId": ".1.139809242105280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242109856": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195997248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195997696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195996800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195996352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195995904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195995456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195995008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195993888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195993664"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250305024"}, {"nodeId": "139809250303968"}], "isAbstract": false}}, "139809195997248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233725008"}], "returnType": {"nodeId": "139809233725120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139809233725008": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233725120": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809195997696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233725232"}, {"nodeId": "139809233725344"}], "returnType": {"nodeId": "139809233725456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139809233725232": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233725344": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809233725456": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809195996800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809195996352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809262733088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809195995904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809195995456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809195995008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733088"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}}, "139809195993888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250302208"}], "returnType": {"nodeId": "139809233725568"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "139809233725568": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809195993664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "139809242110208": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195992544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195992096"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250305024"}], "isAbstract": false}}, "139809195992544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233725680"}], "returnType": {"nodeId": "139809233725792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139809233725680": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233725792": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809195992096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233725904"}, {"nodeId": "139809233726016"}], "returnType": {"nodeId": "139809233726128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139809233725904": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233726016": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809233726128": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809250302560": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "content": {"name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195990528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195990080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195990976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195989632"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809195990528": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}}, "139809195990080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242108800"}], "returnType": {"nodeId": "139809338531808", "args": [{"nodeId": "139809250301856"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}}, "139809242108800": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242329968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325728480"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195659040"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809242329968": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809325728480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242108800"}, {"nodeId": "139809233721200"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}}, "139809233721200": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809195659040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242108800"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250301856": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325730720"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325731168"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325731616"}, "name": "locate_file"}}], "typeVars": [], "bases": [{"nodeId": "139809250301504"}], "isAbstract": false}}, "139809325730720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301856"}, {"nodeId": "139809242115488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809242115488": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288459360"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288459808"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288460256"}, "name": "__exit__"}}, {"kind": "Variable", "content": {"name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809203976480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288461152"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288461600"}, "name": "chmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288464288"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288464736"}, "name": "glob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288465184"}, "name": "rglob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288465632"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288466080"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288466528"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288466976"}, "name": "is_socket"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288467424"}, "name": "is_fifo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288467872"}, "name": "is_block_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288468320"}, "name": "is_char_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288469216"}, "name": "iterdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288469664"}, "name": "lchmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288470112"}, "name": "lstat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288585504"}, "name": "mkdir"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238386720"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288589088"}, "name": "owner"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288589536"}, "name": "group"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288589984"}, "name": "is_mount"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288590432"}, "name": "readlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288590880"}, "name": "rename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288591328"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288592672"}, "name": "resolve"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288593120"}, "name": "rmdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288593568"}, "name": "symlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288594016"}, "name": "hardlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288594464"}, "name": "touch"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288594912"}, "name": "unlink"}}, {"kind": "Variable", "content": {"name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809204079968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288596256"}, "name": "absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288596704"}, "name": "expanduser"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288597152"}, "name": "read_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288597600"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288598048"}, "name": "samefile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288598496"}, "name": "write_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288598944"}, "name": "write_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288599840"}, "name": "link_to"}}], "typeVars": [], "bases": [{"nodeId": "139809242114432"}], "isAbstract": false}}, "139809288459360": {"type": "Function", "content": {"typeVars": [".0.139809288459360"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809238389296"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809288459360"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, "139809238389296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, ".0.139809288459360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288459360", "variance": "INVARIANT"}}, "139809288459808": {"type": "Function", "content": {"typeVars": [".0.139809288459808"], "argTypes": [{"nodeId": ".0.139809288459808"}], "returnType": {"nodeId": ".0.139809288459808"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809288459808": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288459808", "variance": "INVARIANT"}}, "139809288460256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238389520"}, {"nodeId": "139809238389632"}, {"nodeId": "139809238389744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809238389520": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809238389632": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809238389744": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809203976480": {"type": "Function", "content": {"typeVars": [".0.139809203976480"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139809203976480"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139809203976480": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809203976480", "variance": "INVARIANT"}}, "139809288461152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809238389856"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139809238389856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242326832"}}}, "139809242326832": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809288461600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}}, "139809288464288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288464736": {"type": "Function", "content": {"typeVars": [".0.139809288464736"], "argTypes": [{"nodeId": ".0.139809288464736"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": ".0.139809288464736"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.139809288464736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288464736", "variance": "INVARIANT"}}, "139809338532864": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297040544"}, "name": "__next__"}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221194944"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242432112"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297042336"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297042784"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221195168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221195616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221196288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221196512"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338532864"}]}], "isAbstract": true}}, ".1.139809338532864": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338532864", "variance": "COVARIANT"}}, ".2.139809338532864": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338532864", "variance": "CONTRAVARIANT"}}, ".3.139809338532864": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338532864", "variance": "COVARIANT"}}, "139809297040544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}], "returnType": {"nodeId": ".1.139809338532864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221194944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}, {"nodeId": ".2.139809338532864"}], "returnType": {"nodeId": ".1.139809338532864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809242432112": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809297041440"}, {"nodeId": "139809297041888"}]}}, "139809297041440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}, {"nodeId": "0"}, {"nodeId": "139809242444880"}, {"nodeId": "139809242444992"}], "returnType": {"nodeId": ".1.139809338532864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242444880": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "139809338527232"}]}}, "139809242444992": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809297041888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}, {"nodeId": "139809250729248"}, {"nodeId": "N"}, {"nodeId": "139809242445104"}], "returnType": {"nodeId": ".1.139809338532864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242445104": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809297042336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297042784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809221195168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}], "returnType": {"nodeId": "139809262731680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221195616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}], "returnType": {"nodeId": "139809262737312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221196288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221196512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}], "returnType": {"nodeId": "139809242445552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242445552": {"type": "Union", "content": {"items": [{"nodeId": "139809338532864", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809288465184": {"type": "Function", "content": {"typeVars": [".0.139809288465184"], "argTypes": [{"nodeId": ".0.139809288465184"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": ".0.139809288465184"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.139809288465184": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288465184", "variance": "INVARIANT"}}, "139809288465632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288466080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288466528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288466976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288467424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288467872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288468320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288469216": {"type": "Function", "content": {"typeVars": [".0.139809288469216"], "argTypes": [{"nodeId": ".0.139809288469216"}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": ".0.139809288469216"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809288469216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288469216", "variance": "INVARIANT"}}, "139809288469664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}}, "139809288470112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809238389968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238389968": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242326832"}}}, "139809288585504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}}, "139809238386720": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288585952"}, {"nodeId": "139809288586400"}, {"nodeId": "139809288586848"}, {"nodeId": "139809288587296"}, {"nodeId": "139809288587744"}, {"nodeId": "139809288588192"}, {"nodeId": "139809288588640"}]}}, "139809288585952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238390192"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238390304"}, {"nodeId": "139809238390416"}, {"nodeId": "139809238390528"}], "returnType": {"nodeId": "139809250297984"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809238390192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254785088"}}}, "139809254785088": {"type": "Union", "content": {"items": [{"nodeId": "139809254785424"}, {"nodeId": "139809254787216"}, {"nodeId": "139809254786096"}]}}, "139809254785424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254787328"}}}, "139809254787328": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809254787216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254604160"}}}, "139809254604160": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809254786096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254603600"}}}, "139809254603600": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809238390304": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238390416": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238390528": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250297984": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296665056"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809200687360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809200687808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809200688032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809200688480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296667296"}, "name": "reconfigure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296667744"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296668192"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296668640"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296669088"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296669536"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296669984"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296670432"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "139809250297632"}, {"nodeId": "139809251070848"}], "isAbstract": false}}, "139809296665056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}, {"nodeId": "139809251070144", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809233715376"}, {"nodeId": "139809233715488"}, {"nodeId": "139809233715600"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "139809251070144": {"type": "Concrete", "content": {"module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221609056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221610176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221611072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221611744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221612416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221613088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221613760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221614432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221615104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221616000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221616672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221617568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221618464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221619136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221619808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221620480"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242683248"}, "items": [{"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "write"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242683584"}, "items": [{"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "writelines"}}, {"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221738784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221739456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221740352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221741472"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809251070144"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251070144"}]}], "isAbstract": true}}, ".1.139809251070144": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251070144", "variance": "INVARIANT"}}, "139809221609056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221610176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221611072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221611744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221612416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221613088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221613760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221614432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809251070144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809221615104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221616000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809251070144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809221616672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809251070144"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809221617568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809221618464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221619136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221619808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": "139809242683920"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809242683920": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809221620480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242683248": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809292221152"}, {"nodeId": "139809255091648"}, {"nodeId": "139809292222048"}]}}, "139809292221152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809255091648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809292222048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": ".1.139809251070144"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809242683584": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809255091424"}, {"nodeId": "139809255090752"}, {"nodeId": "139809255090976"}]}}, "139809255091424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809255090752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809251081408"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809255090976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809221738784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": ".1.139809251070144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221739456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251070144"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809221740352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809221741472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": "139809242684256"}, {"nodeId": "139809242684368"}, {"nodeId": "139809242684480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809242684256": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809242684368": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809242684480": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809233715376": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233715488": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233715600": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809200687360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}], "returnType": {"nodeId": "139809251070496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251070496": {"type": "Concrete", "content": {"module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221742368"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809251070144", "args": [{"nodeId": "139809250722912"}]}], "isAbstract": true}}, "139809221742368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070496"}], "returnType": {"nodeId": "139809251070496"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809200687808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809200688032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809200688480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296667296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}, {"nodeId": "139809233715712"}, {"nodeId": "139809233715824"}, {"nodeId": "139809233715936"}, {"nodeId": "139809233716048"}, {"nodeId": "139809233716160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "139809233715712": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233715824": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233715936": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233716048": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809233716160": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809296667744": {"type": "Function", "content": {"typeVars": [".0.139809296667744"], "argTypes": [{"nodeId": ".0.139809296667744"}], "returnType": {"nodeId": ".0.139809296667744"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809296667744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250297984"}, "def": "139809296667744", "variance": "INVARIANT"}}, "139809296668192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809296668640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296669088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296669536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809296669984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809296670432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809250297632": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242329632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242145264"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296743136"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296743584"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296744032"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296662816"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296663264"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296663712"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296664160"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296664608"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "139809262746112"}], "isAbstract": false}}, "139809242329632": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809242145264": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809296743136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809296743584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296744032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}], "returnType": {"nodeId": "139809251070496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296662816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296663264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296663712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809296664160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809296664608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}, {"nodeId": "139809233715264"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809233715264": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809262746112": {"type": "Concrete", "content": {"module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296573024"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296573472"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296573920"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296574368"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296574816"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296575264"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296575712"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296576160"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296576608"}, "name": "readable"}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809255094784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296577056"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296577504"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296577952"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296578400"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296578848"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296579296"}, "name": "writable"}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266692192"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296579744"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296580192"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296728352"}, "name": "__del__"}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809200250368"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296729248"}, "name": "_checkClosed"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809296573024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722912"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809296573472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296573920": {"type": "Function", "content": {"typeVars": [".0.139809296573920"], "argTypes": [{"nodeId": ".0.139809296573920"}], "returnType": {"nodeId": ".0.139809296573920"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809296573920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262746112"}, "def": "139809296573920", "variance": "INVARIANT"}}, "139809296574368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}, {"nodeId": "139809233532768"}, {"nodeId": "139809233532880"}, {"nodeId": "139809233532992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809233532768": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809233532880": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809233532992": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809296574816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296575264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296575712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296576160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296576608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809255094784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809296577056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722912"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809296577504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809296577952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296578400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296578848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}, {"nodeId": "139809233533104"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809233533104": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809296579296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809266692192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809296579744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809251081408"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296580192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}, {"nodeId": "139809233533216"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809233533216": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809296728352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809200250368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296729248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}, {"nodeId": "139809233533328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "139809233533328": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809251070848": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221743936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221744384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221744608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221744832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221745056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221745280"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809251070144", "args": [{"nodeId": "139809250722560"}]}], "isAbstract": true}}, "139809221743936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070848"}], "returnType": {"nodeId": "139809251070496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221744384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070848"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221744608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070848"}], "returnType": {"nodeId": "139809242684592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242684592": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809221744832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221745056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070848"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221745280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070848"}], "returnType": {"nodeId": "139809251070848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809288586400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238390640"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809262747168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809238390640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254599904"}}}, "139809254599904": {"type": "Union", "content": {"items": [{"nodeId": "139809254599680"}, {"nodeId": "139809254599568"}, {"nodeId": "139809254598560"}]}}, "139809254599680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254601584"}}}, "139809254601584": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809254599568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809259359584"}}}, "139809259359584": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809254598560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254599792"}}}, "139809254599792": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809262747168": {"type": "Concrete", "content": {"module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242145152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296734176"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809200245216"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296735072"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296735520"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296735968"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "139809262746464"}, {"nodeId": "139809251070496"}], "isAbstract": false}}, "139809242145152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254600240"}}}, "139809254600240": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809254601920"}]}}, "139809254601920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809254791584": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "139809242105280", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809242105280", "args": [{"nodeId": "139809250722912"}]}]}}, "139809296734176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262747168"}, {"nodeId": "139809233533888"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}, {"nodeId": "139809233534112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}}, "139809233533888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254600240"}}}, "139809233534112": {"type": "Union", "content": {"items": [{"nodeId": "139809233534000"}, {"nodeId": "N"}]}}, "139809233534000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262702368"}}}, "139809262702368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809200245216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262747168"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296735072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262747168"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296735520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262747168"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809296735968": {"type": "Function", "content": {"typeVars": [".0.139809296735968"], "argTypes": [{"nodeId": ".0.139809296735968"}], "returnType": {"nodeId": ".0.139809296735968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809296735968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262747168"}, "def": "139809296735968", "variance": "INVARIANT"}}, "139809262746464": {"type": "Concrete", "content": {"module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296729696"}, "name": "readall"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296730144"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296730592"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296731040"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "139809262746112"}], "isAbstract": false}}, "139809296729696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746464"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296730144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746464"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809233533440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809233533440": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809296730592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746464"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809233533552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809233533552": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809296731040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746464"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809233533664"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809233533664": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809288586848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238390080"}, {"nodeId": "139809238391200"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250296928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809238390080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254601584"}}}, "139809238391200": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139809250296928": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296741344"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296741792"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "139809250296224"}, {"nodeId": "139809250296576"}], "isAbstract": false}}, "139809296741344": {"type": "Function", "content": {"typeVars": [".0.139809296741344"], "argTypes": [{"nodeId": ".0.139809296741344"}], "returnType": {"nodeId": ".0.139809296741344"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809296741344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250296928"}, "def": "139809296741344", "variance": "INVARIANT"}}, "139809296741792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250296928"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809250296224": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296738656"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296739104"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296739552"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "139809262746816"}, {"nodeId": "139809251070496"}], "isAbstract": false}}, "139809296738656": {"type": "Function", "content": {"typeVars": [".0.139809296738656"], "argTypes": [{"nodeId": ".0.139809296738656"}], "returnType": {"nodeId": ".0.139809296738656"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809296738656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250296224"}, "def": "139809296738656", "variance": "INVARIANT"}}, "139809296739104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250296224"}, {"nodeId": "139809262746464"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "139809296739552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250296224"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809262746816": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262746464"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296731488"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296731936"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296732384"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296732832"}, "name": "readinto1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296733280"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296733728"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "139809262746112"}], "isAbstract": false}}, "139809296731488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746816"}], "returnType": {"nodeId": "139809262746464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296731936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746816"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296732384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746816"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296732832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746816"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296733280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746816"}, {"nodeId": "139809233533776"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809233533776": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809296733728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746816"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809250296576": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296740000"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296740448"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296740896"}, "name": "write"}}], "typeVars": [], "bases": [{"nodeId": "139809262746816"}, {"nodeId": "139809251070496"}], "isAbstract": false}}, "139809296740000": {"type": "Function", "content": {"typeVars": [".0.139809296740000"], "argTypes": [{"nodeId": ".0.139809296740000"}], "returnType": {"nodeId": ".0.139809296740000"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809296740000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250296576"}, "def": "139809296740000", "variance": "INVARIANT"}}, "139809296740448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250296576"}, {"nodeId": "139809262746464"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "139809296740896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250296576"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809288587296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238391312"}, {"nodeId": "139809238391648"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250296576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809238391312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254599792"}}}, "139809238391648": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139809288587744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238391760"}, {"nodeId": "139809238392096"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250296224"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809238391760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809259359584"}}}, "139809238392096": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139809288588192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238392208"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809251070496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809238392208": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254599904"}}}, "139809288588640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238390976"}, {"nodeId": "139809238392320"}, {"nodeId": "139809238392544"}], "returnType": {"nodeId": "139809251070144", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809238390976": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238392320": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238392544": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288589088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288589536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288589984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288590432": {"type": "Function", "content": {"typeVars": [".0.139809288590432"], "argTypes": [{"nodeId": ".0.139809288590432"}], "returnType": {"nodeId": ".0.139809288590432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809288590432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288590432", "variance": "INVARIANT"}}, "139809288590880": {"type": "Function", "content": {"typeVars": [".0.139809288590880"], "argTypes": [{"nodeId": ".0.139809288590880"}, {"nodeId": "139809238392768"}], "returnType": {"nodeId": ".0.139809288590880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.139809288590880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288590880", "variance": "INVARIANT"}}, "139809238392768": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809242114432"}]}}, "139809242114432": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "content": {"name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203959648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809209031520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809209032416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203967520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203967296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203967072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203966848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203966624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288283616"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288284064"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288284512"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288284960"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288285408"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288285856"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288286304"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288286752"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288287200"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288287648"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288288096"}, "name": "as_posix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288288544"}, "name": "as_uri"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288288992"}, "name": "is_absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288289440"}, "name": "is_reserved"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288289888"}, "name": "is_relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288454880"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288455328"}, "name": "relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288455776"}, "name": "with_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288456224"}, "name": "with_stem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288456672"}, "name": "with_suffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288457120"}, "name": "joinpath"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203974016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203961920"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288458464"}, "name": "__class_getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809242105280", "args": [{"nodeId": "139809250722560"}]}], "isAbstract": false}}, "139809203959648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809209031520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809209032416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809203967520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809203967296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809203967072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809203966848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809203966624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288283616": {"type": "Function", "content": {"typeVars": [".0.139809288283616"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809238388400"}], "returnType": {"nodeId": ".0.139809288283616"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "139809238388400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, ".0.139809288283616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288283616", "variance": "INVARIANT"}}, "139809288284064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288284512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288284960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}, {"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288285408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}, {"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288285856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}, {"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288286304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}, {"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288286752": {"type": "Function", "content": {"typeVars": [".0.139809288286752"], "argTypes": [{"nodeId": ".0.139809288286752"}, {"nodeId": "139809238388512"}], "returnType": {"nodeId": ".0.139809288286752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809288286752": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288286752", "variance": "INVARIANT"}}, "139809238388512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809288287200": {"type": "Function", "content": {"typeVars": [".0.139809288287200"], "argTypes": [{"nodeId": ".0.139809288287200"}, {"nodeId": "139809238388624"}], "returnType": {"nodeId": ".0.139809288287200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809288287200": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288287200", "variance": "INVARIANT"}}, "139809238388624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809288287648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288288096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288288544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288288992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288289440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288289888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}, {"nodeId": "139809238388736"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, "139809238388736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809288454880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}}, "139809288455328": {"type": "Function", "content": {"typeVars": [".0.139809288455328"], "argTypes": [{"nodeId": ".0.139809288455328"}, {"nodeId": "139809238388848"}], "returnType": {"nodeId": ".0.139809288455328"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.139809288455328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288455328", "variance": "INVARIANT"}}, "139809238388848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809288455776": {"type": "Function", "content": {"typeVars": [".0.139809288455776"], "argTypes": [{"nodeId": ".0.139809288455776"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809288455776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, ".0.139809288455776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288455776", "variance": "INVARIANT"}}, "139809288456224": {"type": "Function", "content": {"typeVars": [".0.139809288456224"], "argTypes": [{"nodeId": ".0.139809288456224"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809288456224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}}, ".0.139809288456224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288456224", "variance": "INVARIANT"}}, "139809288456672": {"type": "Function", "content": {"typeVars": [".0.139809288456672"], "argTypes": [{"nodeId": ".0.139809288456672"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809288456672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}}, ".0.139809288456672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288456672", "variance": "INVARIANT"}}, "139809288457120": {"type": "Function", "content": {"typeVars": [".0.139809288457120"], "argTypes": [{"nodeId": ".0.139809288457120"}, {"nodeId": "139809238388960"}], "returnType": {"nodeId": ".0.139809288457120"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.139809288457120": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288457120", "variance": "INVARIANT"}}, "139809238388960": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809203974016": {"type": "Function", "content": {"typeVars": [".0.139809203974016"], "argTypes": [{"nodeId": ".0.139809203974016"}], "returnType": {"nodeId": "139809338535680", "args": [{"nodeId": ".0.139809203974016"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809203974016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809203974016", "variance": "INVARIANT"}}, "139809203961920": {"type": "Function", "content": {"typeVars": [".0.139809203961920"], "argTypes": [{"nodeId": ".0.139809203961920"}], "returnType": {"nodeId": ".0.139809203961920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809203961920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809203961920", "variance": "INVARIANT"}}, "139809288458464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "139809288591328": {"type": "Function", "content": {"typeVars": [".0.139809288591328"], "argTypes": [{"nodeId": ".0.139809288591328"}, {"nodeId": "139809238392880"}], "returnType": {"nodeId": ".0.139809288591328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.139809288591328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288591328", "variance": "INVARIANT"}}, "139809238392880": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809242114432"}]}}, "139809288592672": {"type": "Function", "content": {"typeVars": [".0.139809288592672"], "argTypes": [{"nodeId": ".0.139809288592672"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": ".0.139809288592672"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}}, ".0.139809288592672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288592672", "variance": "INVARIANT"}}, "139809288593120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288593568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238392992"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}}, "139809238392992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809288594016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238393104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "139809238393104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809288594464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}}, "139809288594912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}}, "139809204079968": {"type": "Function", "content": {"typeVars": [".0.139809204079968"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139809204079968"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139809204079968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809204079968", "variance": "INVARIANT"}}, "139809288596256": {"type": "Function", "content": {"typeVars": [".0.139809288596256"], "argTypes": [{"nodeId": ".0.139809288596256"}], "returnType": {"nodeId": ".0.139809288596256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809288596256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288596256", "variance": "INVARIANT"}}, "139809288596704": {"type": "Function", "content": {"typeVars": [".0.139809288596704"], "argTypes": [{"nodeId": ".0.139809288596704"}], "returnType": {"nodeId": ".0.139809288596704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809288596704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288596704", "variance": "INVARIANT"}}, "139809288597152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288597600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238393216"}, {"nodeId": "139809238393328"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139809238393216": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238393328": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288598048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238393440"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}}, "139809238393440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809288598496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "139809288598944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809250722560"}, {"nodeId": "139809238393552"}, {"nodeId": "139809238393664"}, {"nodeId": "139809238393776"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}}, "139809238393552": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238393664": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238393776": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288599840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238393888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "139809238393888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809325731168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301856"}, {"nodeId": "139809233721424"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "139809233721424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809325731616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301856"}, {"nodeId": "139809233721536"}], "returnType": {"nodeId": "139809242105280", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809233721536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809250301504": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195662400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195661504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195661280"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233719968"}, "items": [{"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "discover"}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195661056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195660384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195660832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195660160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195659936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195659712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195658592"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": true}}, "139809195662400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233720304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "139809233720304": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809195661504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}, {"nodeId": "139809233720416"}], "returnType": {"nodeId": "139809242105280", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809233720416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809195661280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250301504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}}, "139809233719968": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809325608608"}, {"nodeId": "139809325609056"}]}}, "139809325608608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809242108800"}], "returnType": {"nodeId": "139809338531808", "args": [{"nodeId": "139809250301504"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}}, "139809325609056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "139809233720640"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338531808", "args": [{"nodeId": "139809250301504"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}}, "139809233720640": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809195661056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233720864"}], "returnType": {"nodeId": "139809250301856"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}}, "139809233720864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809195660384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}], "returnType": {"nodeId": "139809250298688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250298688": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288013408"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288013856"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288014304"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288014752"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288015200"}, "name": "get_all"}}, {"kind": "Variable", "content": {"name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195702560"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}}, "139809288013408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250298688"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809288013856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250298688"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288014304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250298688"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288014752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250298688"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809288015200": {"type": "Function", "content": {"typeVars": [".-1.139809288015200"], "argTypes": [{"nodeId": "139809250298688"}, {"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288015200"}], "returnType": {"nodeId": "139809233717840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, ".-1.139809288015200": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288015200", "variance": "INVARIANT"}}, "139809233717840": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.139809288015200"}]}}, "139809195702560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250298688"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809233717952"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233717952": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}]}}, "139809195660832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}], "returnType": {"nodeId": "139809250300448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250300448": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325601440"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325601888"}, "name": "select"}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195689568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195688896"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250176000"}]}], "isAbstract": false}}, "139809325601440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250300448"}, {"nodeId": "139809233719072"}], "returnType": {"nodeId": "139809233719856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809233719072": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809233719856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242144816"}}}, "139809242144816": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809325601888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250300448"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809250300448"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "139809195689568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250300448"}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809195688896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250300448"}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250176000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242144816"}}}, "139809195660160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809195659936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}], "returnType": {"nodeId": "139809233720976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233720976": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809242116896"}]}, {"nodeId": "N"}]}}, "139809242116896": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325605472"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325605920"}, "name": "read_binary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325606368"}, "name": "locate"}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242145040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242143248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250301504"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809242114784"}], "isAbstract": false}}, "139809325605472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242116896"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "139809325605920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242116896"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809325606368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242116896"}], "returnType": {"nodeId": "139809242105280", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242145040": {"type": "Union", "content": {"items": [{"nodeId": "139809250301152"}, {"nodeId": "N"}]}}, "139809250301152": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325606816"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809325606816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301152"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "139809242143248": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809242114784": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139809242114432"}], "isAbstract": false}}, "139809195659712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}], "returnType": {"nodeId": "139809233721088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233721088": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809195658592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809195990976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233726240"}, {"nodeId": "139809233726352"}], "returnType": {"nodeId": "139809233726464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139809233726240": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233726352": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809233726464": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809195989632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233726576"}], "returnType": {"nodeId": "139809233726688"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139809233726576": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233726688": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809242110560": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330460064"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195988960"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250305376"}], "isAbstract": false}}, "139809330460064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242110560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233726912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}}, "139809233726912": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}]}}, "139809195988960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809233727136"}], "returnType": {"nodeId": "139809233551424"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}}, "139809233727136": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}]}}, "139809233551424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250305376"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809250305376": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330315552"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330316000"}, "name": "find_loader"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330316448"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330316896"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "139809250302912"}], "isAbstract": false}}, "139809330315552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305376"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233729040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809233729040": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809330316000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305376"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233729376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809233729376": {"type": "Tuple", "content": {"items": [{"nodeId": "139809233729152"}, {"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}]}}, "139809233729152": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809330316448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809330316896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305376"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233729488"}], "returnType": {"nodeId": "139809233729600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}}, "139809233729488": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809233729600": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809242110912": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330460960"}, "name": "set_data"}}], "typeVars": [], "bases": [{"nodeId": "139809250305728"}, {"nodeId": "139809250304672"}], "isAbstract": false}}, "139809330460960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242110912"}, {"nodeId": "139809250722560"}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}}, "139809250305728": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330317344"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330317792"}, "name": "get_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330318240"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330318688"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "139809250303616"}, {"nodeId": "139809250304320"}], "isAbstract": true}}, "139809330317344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305728"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "139809330317792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305728"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809330318240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305728"}, {"nodeId": "139809233729712"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139809233729712": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809330318688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305728"}, {"nodeId": "139809233729824"}], "returnType": {"nodeId": "139809262733088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139809233729824": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250303616": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "content": {"name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195968992"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250303264"}], "isAbstract": true}}, "139809195968992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303616"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809250304320": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196342880"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250303968"}], "isAbstract": true}}, "139809196342880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250304320"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809250304672": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296282592"}, "name": "path_mtime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296283040"}, "name": "set_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296283488"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296283936"}, "name": "path_stats"}}], "typeVars": [], "bases": [{"nodeId": "139809250303616"}, {"nodeId": "139809250304320"}], "isAbstract": true}}, "139809296282592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250304672"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809296283040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250304672"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}}, "139809296283488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250304672"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233728256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809233728256": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809296283936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250304672"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809242111264": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250305728"}, {"nodeId": "139809250304672"}], "isAbstract": false}}, "139809242111616": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330461408"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330461856"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330462304"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330626848"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330627296"}, "name": "exec_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330627744"}, "name": "get_code"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330628192"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "139809250304320"}], "isAbstract": false}}, "139809330461408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242111616"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}}, "139809330461856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242111616"}, {"nodeId": "139809233727248"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139809233727248": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809330462304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242111616"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809330626848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242111616"}, {"nodeId": "139809250302208"}], "returnType": {"nodeId": "139809262733088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "139809330627296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242111616"}, {"nodeId": "139809262733088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139809330627744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242111616"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809330628192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242111616"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809251075424": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234325056"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330636928"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330637376"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330637824"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330638272"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330638720"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330639168"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330639616"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330640064"}, "name": "__copy__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234325168"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330641408"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330641856"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234326400"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}], "bases": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}], "isAbstract": false}}, ".1.139809251075424": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251075424", "variance": "INVARIANT"}}, ".2.139809251075424": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251075424", "variance": "INVARIANT"}}, "139809234325056": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809330633344"}, {"nodeId": "139809275377056"}, {"nodeId": "139809330634240"}, {"nodeId": "139809330633792"}, {"nodeId": "139809330635136"}, {"nodeId": "139809330634688"}, {"nodeId": "139809330635584"}, {"nodeId": "139809330636032"}]}}, "139809330633344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809275377056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "N"}, {"nodeId": ".2.139809251075424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809330634240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809330633792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "139809262990816", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": ".2.139809251075424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809330635136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809234326064"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809234326064": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}}, "139809330634688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809234326288"}]}, {"nodeId": ".2.139809251075424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809234326288": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809251075424"}]}}, "139809330635584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809330636032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250722912"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809330636928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809330637376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": ".1.139809251075424"}], "returnType": {"nodeId": ".2.139809251075424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809330637824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809330638272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": ".1.139809251075424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809330638720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251075424"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809330639168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809330639616": {"type": "Function", "content": {"typeVars": [".0.139809330639616"], "argTypes": [{"nodeId": ".0.139809330639616"}], "returnType": {"nodeId": ".0.139809330639616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809330639616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, "def": "139809330639616", "variance": "INVARIANT"}}, "139809330640064": {"type": "Function", "content": {"typeVars": [".0.139809330640064"], "argTypes": [{"nodeId": ".0.139809330640064"}], "returnType": {"nodeId": ".0.139809330640064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809330640064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, "def": "139809330640064", "variance": "INVARIANT"}}, "139809234325168": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809330640512"}, {"nodeId": "139809330640960"}]}}, "139809330640512": {"type": "Function", "content": {"typeVars": [".-1.139809330640512"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809330640512"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139809251075424", "args": [{"nodeId": ".-1.139809330640512"}, {"nodeId": "139809234326736"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139809330640512": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330640512", "variance": "INVARIANT"}}, "139809234326736": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809330640960": {"type": "Function", "content": {"typeVars": [".-1.139809330640960", ".-2.139809330640960"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809330640960"}]}, {"nodeId": ".-2.139809330640960"}], "returnType": {"nodeId": "139809251075424", "args": [{"nodeId": ".-1.139809330640960"}, {"nodeId": ".-2.139809330640960"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139809330640960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330640960", "variance": "INVARIANT"}}, ".-2.139809330640960": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330640960", "variance": "INVARIANT"}}, "139809330641408": {"type": "Function", "content": {"typeVars": [".-1.139809330641408", ".-2.139809330641408"], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "139809234326848"}], "returnType": {"nodeId": "139809251075424", "args": [{"nodeId": "139809234326960"}, {"nodeId": "139809234327072"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234326848": {"type": "Union", "content": {"items": [{"nodeId": "139809251075424", "args": [{"nodeId": ".-1.139809330641408"}, {"nodeId": ".-2.139809330641408"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": ".-1.139809330641408"}, {"nodeId": ".-2.139809330641408"}]}]}}, ".-1.139809330641408": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330641408", "variance": "INVARIANT"}}, ".-2.139809330641408": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330641408", "variance": "INVARIANT"}}, "139809234326960": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".-1.139809330641408"}]}}, "139809234327072": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809251075424"}, {"nodeId": ".-2.139809330641408"}]}}, "139809330641856": {"type": "Function", "content": {"typeVars": [".-1.139809330641856", ".-2.139809330641856"], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "139809234327184"}], "returnType": {"nodeId": "139809251075424", "args": [{"nodeId": "139809234327296"}, {"nodeId": "139809234327408"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234327184": {"type": "Union", "content": {"items": [{"nodeId": "139809251075424", "args": [{"nodeId": ".-1.139809330641856"}, {"nodeId": ".-2.139809330641856"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": ".-1.139809330641856"}, {"nodeId": ".-2.139809330641856"}]}]}}, ".-1.139809330641856": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330641856", "variance": "INVARIANT"}}, ".-2.139809330641856": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330641856", "variance": "INVARIANT"}}, "139809234327296": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".-1.139809330641856"}]}}, "139809234327408": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809251075424"}, {"nodeId": ".-2.139809330641856"}]}}, "139809234326400": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809330642304"}, {"nodeId": "139809326235712"}]}}, "139809330642304": {"type": "Function", "content": {"typeVars": [".0.139809330642304"], "argTypes": [{"nodeId": ".0.139809330642304"}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}], "returnType": {"nodeId": ".0.139809330642304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809330642304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, "def": "139809330642304", "variance": "INVARIANT"}}, "139809326235712": {"type": "Function", "content": {"typeVars": [".0.139809326235712"], "argTypes": [{"nodeId": ".0.139809326235712"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809234327744"}]}], "returnType": {"nodeId": ".0.139809326235712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326235712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, "def": "139809326235712", "variance": "INVARIANT"}}, "139809234327744": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}}, "139809251075776": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809251075776"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234326512"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326237056"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326237504"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326237952"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326238400"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326238848"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326239296"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326239744"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234327520"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234327856"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326241984"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326242432"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326242880"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326243328"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326243776"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326244224"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326244672"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326245120"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326245568"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326246016"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326246464"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326246912"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326247360"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326247808"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326248256"}, "name": "index"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234328528"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326249600"}, "name": "extend"}}], "typeVars": [{"nodeId": ".1.139809251075776"}], "bases": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809251075776"}]}], "isAbstract": false}}, ".1.139809251075776": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251075776", "variance": "INVARIANT"}}, "139809234326512": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809326236160"}, {"nodeId": "139809326236608"}]}}, "139809326236160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}}, "139809326236608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251075776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}}, "139809326237056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809234327968"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234327968": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}]}}, "139809326237504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809234328080"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234328080": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}]}}, "139809326237952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809234328192"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234328192": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}]}}, "139809326238400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809234328304"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234328304": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}]}}, "139809326238848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326239296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326239744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809234327520": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809326240192"}, {"nodeId": "139809326240640"}]}}, "139809326240192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".1.139809251075776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326240640": {"type": "Function", "content": {"typeVars": [".0.139809326240640"], "argTypes": [{"nodeId": ".0.139809326240640"}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": ".0.139809326240640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326240640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326240640", "variance": "INVARIANT"}}, "139809234327856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809326241088"}, {"nodeId": "139809326241536"}]}}, "139809326241088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809251079296"}, {"nodeId": ".1.139809251075776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809326241536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809250723968"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251075776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809326241984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809234328752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234328752": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "139809250723968"}]}}, "139809326242432": {"type": "Function", "content": {"typeVars": [".0.139809326242432"], "argTypes": [{"nodeId": ".0.139809326242432"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251075776"}]}], "returnType": {"nodeId": ".0.139809326242432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326242432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326242432", "variance": "INVARIANT"}}, "139809326242880": {"type": "Function", "content": {"typeVars": [".0.139809326242880"], "argTypes": [{"nodeId": ".0.139809326242880"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251075776"}]}], "returnType": {"nodeId": ".0.139809326242880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326242880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326242880", "variance": "INVARIANT"}}, "139809326243328": {"type": "Function", "content": {"typeVars": [".0.139809326243328"], "argTypes": [{"nodeId": ".0.139809326243328"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251075776"}]}], "returnType": {"nodeId": ".0.139809326243328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326243328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326243328", "variance": "INVARIANT"}}, "139809326243776": {"type": "Function", "content": {"typeVars": [".0.139809326243776"], "argTypes": [{"nodeId": ".0.139809326243776"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326243776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326243776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326243776", "variance": "INVARIANT"}}, "139809326244224": {"type": "Function", "content": {"typeVars": [".0.139809326244224"], "argTypes": [{"nodeId": ".0.139809326244224"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326244224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326244224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326244224", "variance": "INVARIANT"}}, "139809326244672": {"type": "Function", "content": {"typeVars": [".0.139809326244672"], "argTypes": [{"nodeId": ".0.139809326244672"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326244672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326244672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326244672", "variance": "INVARIANT"}}, "139809326245120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": ".1.139809251075776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139809326245568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809338538848"}, {"nodeId": ".1.139809251075776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}}, "139809326246016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809251075776"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}}, "139809326246464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": ".1.139809251075776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139809326246912": {"type": "Function", "content": {"typeVars": [".0.139809326246912"], "argTypes": [{"nodeId": ".0.139809326246912"}], "returnType": {"nodeId": ".0.139809326246912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326246912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326246912", "variance": "INVARIANT"}}, "139809326247360": {"type": "Function", "content": {"typeVars": [".0.139809326247360"], "argTypes": [{"nodeId": ".0.139809326247360"}], "returnType": {"nodeId": ".0.139809326247360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326247360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326247360", "variance": "INVARIANT"}}, "139809326247808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": ".1.139809251075776"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139809326248256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": ".1.139809251075776"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}}, "139809234328528": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809330636480"}, {"nodeId": "139809326249152"}]}}, "139809330636480": {"type": "Function", "content": {"typeVars": [".-1.139809330636480"], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".-1.139809330636480"}]}, {"nodeId": "N"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.139809330636480": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "139809242253232"}, "def": "139809330636480", "variance": "INVARIANT"}}, "139809326249152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809234275904"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "139809234275904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.139809251075776"}], "returnType": {"nodeId": "139809234329200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809234329200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791920"}}}, "139809326249600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251075776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139809251076128": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326250048"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326250496"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326250944"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326251392"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326366784"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326367232"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326367680"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326368128"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326368576"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326369024"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326369472"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326369920"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326370368"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326370816"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326371264"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326371712"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326372160"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326372608"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326373056"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326373504"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326373952"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326374848"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326375296"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326375744"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326376192"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326376640"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326377536"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326377984"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326378432"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326378880"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326379328"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326379776"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326380224"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326380672"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326381120"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326381568"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326382016"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326382464"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326514240"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326514688"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326515136"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326515584"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326516032"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326516480"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326516928"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326517376"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326517824"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326518272"}, "name": "lstrip"}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809187744672"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326518720"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326519168"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326519616"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326520064"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326520512"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326520960"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326521408"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326521856"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326522304"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326522752"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326523200"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326523648"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326524096"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326524544"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326524992"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326525440"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326525888"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326526336"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326526784"}, "name": "zfill"}}], "typeVars": [], "bases": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809251076128"}]}], "isAbstract": false}}, "139809326250048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "139809326250496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809326250944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809326251392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809326366784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809234329312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809234329312": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809326367232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234329424"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234329424": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326367680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234329536"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234329536": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326368128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234329648"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234329648": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326368576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234329760"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234329760": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326369024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326369472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326369920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809326370368": {"type": "Function", "content": {"typeVars": [".0.139809326370368"], "argTypes": [{"nodeId": ".0.139809326370368"}, {"nodeId": "139809234329984"}], "returnType": {"nodeId": ".0.139809326370368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326370368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326370368", "variance": "INVARIANT"}}, "139809234329984": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "139809250723968"}]}}, "139809326370816": {"type": "Function", "content": {"typeVars": [".0.139809326370816"], "argTypes": [{"nodeId": ".0.139809326370816"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".0.139809326370816"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809326370816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326370816", "variance": "INVARIANT"}}, "139809326371264": {"type": "Function", "content": {"typeVars": [".0.139809326371264"], "argTypes": [{"nodeId": ".0.139809326371264"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".0.139809326371264"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809326371264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326371264", "variance": "INVARIANT"}}, "139809326371712": {"type": "Function", "content": {"typeVars": [".0.139809326371712"], "argTypes": [{"nodeId": ".0.139809326371712"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": ".0.139809326371712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326371712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326371712", "variance": "INVARIANT"}}, "139809326372160": {"type": "Function", "content": {"typeVars": [".0.139809326372160"], "argTypes": [{"nodeId": ".0.139809326372160"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": ".0.139809326372160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326372160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326372160", "variance": "INVARIANT"}}, "139809326372608": {"type": "Function", "content": {"typeVars": [".0.139809326372608"], "argTypes": [{"nodeId": ".0.139809326372608"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326372608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326372608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326372608", "variance": "INVARIANT"}}, "139809326373056": {"type": "Function", "content": {"typeVars": [".0.139809326373056"], "argTypes": [{"nodeId": ".0.139809326373056"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326373056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326373056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326373056", "variance": "INVARIANT"}}, "139809326373504": {"type": "Function", "content": {"typeVars": [".0.139809326373504"], "argTypes": [{"nodeId": ".0.139809326373504"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809326373504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326373504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326373504", "variance": "INVARIANT"}}, "139809326373952": {"type": "Function", "content": {"typeVars": [".0.139809326373952"], "argTypes": [{"nodeId": ".0.139809326373952"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": ".0.139809326373952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326373952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326373952", "variance": "INVARIANT"}}, "139809326374848": {"type": "Function", "content": {"typeVars": [".0.139809326374848"], "argTypes": [{"nodeId": ".0.139809326374848"}], "returnType": {"nodeId": ".0.139809326374848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326374848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326374848", "variance": "INVARIANT"}}, "139809326375296": {"type": "Function", "content": {"typeVars": [".0.139809326375296"], "argTypes": [{"nodeId": ".0.139809326375296"}], "returnType": {"nodeId": ".0.139809326375296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326375296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326375296", "variance": "INVARIANT"}}, "139809326375744": {"type": "Function", "content": {"typeVars": [".0.139809326375744"], "argTypes": [{"nodeId": ".0.139809326375744"}, {"nodeId": "139809338538848"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809326375744"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.139809326375744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326375744", "variance": "INVARIANT"}}, "139809326376192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234330320"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139809234330320": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326376640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234330432"}, {"nodeId": "139809234330544"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139809234330432": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809234330544": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809326377536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234330656"}, {"nodeId": "139809234330768"}, {"nodeId": "139809234330880"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "139809234330656": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}]}}, "139809234330768": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809234330880": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809326377984": {"type": "Function", "content": {"typeVars": [".0.139809326377984"], "argTypes": [{"nodeId": ".0.139809326377984"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326377984"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, ".0.139809326377984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326377984", "variance": "INVARIANT"}}, "139809326378432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234330992"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139809234330992": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326378880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "139809326379328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139809326379776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139809326380224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326380672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326381120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326381568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326382016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326382464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326514240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326514688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326515136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326515584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326516032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326516480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326516928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "139809326517376": {"type": "Function", "content": {"typeVars": [".0.139809326517376"], "argTypes": [{"nodeId": ".0.139809326517376"}, {"nodeId": "139809338538848"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809326517376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.139809326517376": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326517376", "variance": "INVARIANT"}}, "139809326517824": {"type": "Function", "content": {"typeVars": [".0.139809326517824"], "argTypes": [{"nodeId": ".0.139809326517824"}], "returnType": {"nodeId": ".0.139809326517824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326517824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326517824", "variance": "INVARIANT"}}, "139809326518272": {"type": "Function", "content": {"typeVars": [".0.139809326518272"], "argTypes": [{"nodeId": ".0.139809326518272"}, {"nodeId": "139809234331552"}], "returnType": {"nodeId": ".0.139809326518272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.139809326518272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326518272", "variance": "INVARIANT"}}, "139809234331552": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809187744672": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809187707616"}, {"nodeId": "139809187707840"}, {"nodeId": "139809187708064"}]}}, "139809187707616": {"type": "Function", "content": {"typeVars": [".-1.139809187707616"], "argTypes": [{"nodeId": "139809187744336"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": ".-1.139809187707616"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809187744336": {"type": "Union", "content": {"items": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": ".-1.139809187707616"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".-1.139809187707616"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809187744000"}, {"nodeId": ".-1.139809187707616"}]}]}}, ".-1.139809187707616": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809187707616", "variance": "INVARIANT"}}, "139809187744000": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809187707840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809187708064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": "139809187744448"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809187744448": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809326518720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809234331776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139809234331776": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809326519168": {"type": "Function", "content": {"typeVars": [".0.139809326519168"], "argTypes": [{"nodeId": ".0.139809326519168"}, {"nodeId": "139809234331888"}], "returnType": {"nodeId": ".0.139809326519168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.139809326519168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326519168", "variance": "INVARIANT"}}, "139809234331888": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326519616": {"type": "Function", "content": {"typeVars": [".0.139809326519616"], "argTypes": [{"nodeId": ".0.139809326519616"}, {"nodeId": "139809234332000"}], "returnType": {"nodeId": ".0.139809326519616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.139809326519616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326519616", "variance": "INVARIANT"}}, "139809234332000": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326520064": {"type": "Function", "content": {"typeVars": [".0.139809326520064"], "argTypes": [{"nodeId": ".0.139809326520064"}, {"nodeId": "139809234332112"}, {"nodeId": "139809234332224"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326520064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}}, ".0.139809326520064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326520064", "variance": "INVARIANT"}}, "139809234332112": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809234332224": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326520512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234332336"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139809234332336": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326520960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234332448"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139809234332448": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326521408": {"type": "Function", "content": {"typeVars": [".0.139809326521408"], "argTypes": [{"nodeId": ".0.139809326521408"}, {"nodeId": "139809338538848"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809326521408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.139809326521408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326521408", "variance": "INVARIANT"}}, "139809326521856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809234332784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139809234332784": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809326522304": {"type": "Function", "content": {"typeVars": [".0.139809326522304"], "argTypes": [{"nodeId": ".0.139809326522304"}, {"nodeId": "139809234332896"}], "returnType": {"nodeId": ".0.139809326522304"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.139809326522304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326522304", "variance": "INVARIANT"}}, "139809234332896": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809326522752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234333008"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809234333008": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809326523200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234333120"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809234333120": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809326523648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139809326524096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234333232"}, {"nodeId": "139809234333344"}, {"nodeId": "139809234333456"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "139809234333232": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}]}}, "139809234333344": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809234333456": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809326524544": {"type": "Function", "content": {"typeVars": [".0.139809326524544"], "argTypes": [{"nodeId": ".0.139809326524544"}, {"nodeId": "139809234333568"}], "returnType": {"nodeId": ".0.139809326524544"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.139809326524544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326524544", "variance": "INVARIANT"}}, "139809234333568": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809326524992": {"type": "Function", "content": {"typeVars": [".0.139809326524992"], "argTypes": [{"nodeId": ".0.139809326524992"}], "returnType": {"nodeId": ".0.139809326524992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326524992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326524992", "variance": "INVARIANT"}}, "139809326525440": {"type": "Function", "content": {"typeVars": [".0.139809326525440"], "argTypes": [{"nodeId": ".0.139809326525440"}], "returnType": {"nodeId": ".0.139809326525440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326525440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326525440", "variance": "INVARIANT"}}, "139809326525888": {"type": "Function", "content": {"typeVars": [".0.139809326525888"], "argTypes": [{"nodeId": ".0.139809326525888"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809326525888"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, ".0.139809326525888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326525888", "variance": "INVARIANT"}}, "139809326526336": {"type": "Function", "content": {"typeVars": [".0.139809326526336"], "argTypes": [{"nodeId": ".0.139809326526336"}], "returnType": {"nodeId": ".0.139809326526336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326526336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326526336", "variance": "INVARIANT"}}, "139809326526784": {"type": "Function", "content": {"typeVars": [".0.139809326526784"], "argTypes": [{"nodeId": ".0.139809326526784"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326526784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}}, ".0.139809326526784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326526784", "variance": "INVARIANT"}}, "139809251076480": {"type": "Concrete", "content": {"module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "content": {"name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809187774976"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234328640"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326528576"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326529024"}, "name": "appendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326529472"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326529920"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326612544"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326612992"}, "name": "extendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326613440"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326613888"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326614336"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326614784"}, "name": "popleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326615232"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326615680"}, "name": "rotate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326616128"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326616576"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326617024"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326617472"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326617920"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326618368"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326618816"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326619264"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326619712"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326620160"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326620608"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326621056"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326621504"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326621952"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326622400"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326622848"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809251076480"}], "bases": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809251076480"}]}], "isAbstract": false}}, ".1.139809251076480": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251076480", "variance": "INVARIANT"}}, "139809187774976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "139809234333792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809234333792": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809234328640": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809326527680"}, {"nodeId": "139809326528128"}]}}, "139809326527680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809234334016"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}}, "139809234334016": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809326528128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809234334128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}}, "139809234334128": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809326528576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": ".1.139809251076480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326529024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": ".1.139809251076480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326529472": {"type": "Function", "content": {"typeVars": [".0.139809326529472"], "argTypes": [{"nodeId": ".0.139809326529472"}], "returnType": {"nodeId": ".0.139809326529472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326529472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, "def": "139809326529472", "variance": "INVARIANT"}}, "139809326529920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": ".1.139809251076480"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326612544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326612992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326613440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809338538848"}, {"nodeId": ".1.139809251076480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809326613888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": ".1.139809251076480"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809326614336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": ".1.139809251076480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326614784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": ".1.139809251076480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326615232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": ".1.139809251076480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326615680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809326616128": {"type": "Function", "content": {"typeVars": [".0.139809326616128"], "argTypes": [{"nodeId": ".0.139809326616128"}], "returnType": {"nodeId": ".0.139809326616128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326616128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, "def": "139809326616128", "variance": "INVARIANT"}}, "139809326616576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809326617024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".1.139809251076480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326617472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809251079296"}, {"nodeId": ".1.139809251076480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809326617920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326618368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326618816": {"type": "Function", "content": {"typeVars": [".0.139809326618816"], "argTypes": [{"nodeId": ".0.139809326618816"}], "returnType": {"nodeId": "139809234334688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326618816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, "def": "139809326618816", "variance": "INVARIANT"}}, "139809234334688": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139809234334464"}, {"nodeId": "N"}, {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251076480"}]}]}}, "139809234334464": {"type": "Tuple", "content": {"items": []}}, "139809326619264": {"type": "Function", "content": {"typeVars": [".0.139809326619264"], "argTypes": [{"nodeId": ".0.139809326619264"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": ".0.139809326619264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326619264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, "def": "139809326619264", "variance": "INVARIANT"}}, "139809326619712": {"type": "Function", "content": {"typeVars": [".0.139809326619712"], "argTypes": [{"nodeId": ".0.139809326619712"}, {"nodeId": ".0.139809326619712"}], "returnType": {"nodeId": ".0.139809326619712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326619712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, "def": "139809326619712", "variance": "INVARIANT"}}, "139809326620160": {"type": "Function", "content": {"typeVars": [".0.139809326620160"], "argTypes": [{"nodeId": ".0.139809326620160"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326620160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326620160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, "def": "139809326620160", "variance": "INVARIANT"}}, "139809326620608": {"type": "Function", "content": {"typeVars": [".0.139809326620608"], "argTypes": [{"nodeId": ".0.139809326620608"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326620608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326620608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, "def": "139809326620608", "variance": "INVARIANT"}}, "139809326621056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326621504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326621952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326622400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326622848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809250917216": {"type": "Concrete", "content": {"module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234329872"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326625088"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326625536"}, "name": "elements"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326625984"}, "name": "most_common"}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809187859136"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234334240"}, "items": [{"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subtract"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234335024"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321534400"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321534848"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321535296"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321535744"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321536192"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321536640"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321537088"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321537536"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321537984"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321538432"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321538880"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321539328"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321539776"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321540224"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321540672"}, "name": "total"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321541120"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321541568"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321542016"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321542464"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.139809250917216"}], "bases": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}], "isAbstract": false}}, ".1.139809250917216": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250917216", "variance": "INVARIANT"}}, "139809234329872": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809326623296"}, {"nodeId": "139809326623744"}, {"nodeId": "139809326624192"}, {"nodeId": "139809326624640"}]}}, "139809326623296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809326623744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809326624192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326624640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326625088": {"type": "Function", "content": {"typeVars": [".0.139809326625088"], "argTypes": [{"nodeId": ".0.139809326625088"}], "returnType": {"nodeId": ".0.139809326625088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326625088": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "def": "139809326625088", "variance": "INVARIANT"}}, "139809326625536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809250917216"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326625984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809234335136"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809234335360"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "139809234335136": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809234335360": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}}, "139809187859136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "139809234335584"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}}, "139809234335584": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809234334240": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809326626880"}, {"nodeId": "139809326627328"}, {"nodeId": "139809326627776"}]}}, "139809326626880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809326627328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326627776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809234335024": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809326628224"}, {"nodeId": "139809321533504"}, {"nodeId": "139809321533952"}]}}, "139809326628224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809321533504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809321533952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "N"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809321534400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": ".1.139809250917216"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "139809321534848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321535296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321535744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321536192": {"type": "Function", "content": {"typeVars": [".-1.139809321536192"], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": ".-1.139809321536192"}]}], "returnType": {"nodeId": "139809250917216", "args": [{"nodeId": "139809234335920"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809321536192": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321536192", "variance": "INVARIANT"}}, "139809234335920": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809250917216"}, {"nodeId": ".-1.139809321536192"}]}}, "139809321536640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321537088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321537536": {"type": "Function", "content": {"typeVars": [".-1.139809321537536"], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": ".-1.139809321537536"}]}], "returnType": {"nodeId": "139809250917216", "args": [{"nodeId": "139809234336032"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809321537536": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321537536", "variance": "INVARIANT"}}, "139809234336032": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809250917216"}, {"nodeId": ".-1.139809321537536"}]}}, "139809321537984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809321538432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809321538880": {"type": "Function", "content": {"typeVars": [".0.139809321538880"], "argTypes": [{"nodeId": ".0.139809321538880"}, {"nodeId": "139809262990464", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}], "returnType": {"nodeId": ".0.139809321538880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809321538880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "def": "139809321538880", "variance": "INVARIANT"}}, "139809262990464": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317302368"}, "name": "items"}}], "typeVars": [{"nodeId": ".1.139809262990464"}, {"nodeId": ".2.139809262990464"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["items"]}}, ".1.139809262990464": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262990464", "variance": "COVARIANT"}}, ".2.139809262990464": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262990464", "variance": "COVARIANT"}}, "139809317302368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262990464", "args": [{"nodeId": ".1.139809262990464"}, {"nodeId": ".2.139809262990464"}]}], "returnType": {"nodeId": "139809338536384", "args": [{"nodeId": "139809229436768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229436768": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809262990464"}, {"nodeId": ".2.139809262990464"}]}}, "139809321539328": {"type": "Function", "content": {"typeVars": [".0.139809321539328"], "argTypes": [{"nodeId": ".0.139809321539328"}, {"nodeId": "139809262990464", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}], "returnType": {"nodeId": ".0.139809321539328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809321539328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "def": "139809321539328", "variance": "INVARIANT"}}, "139809321539776": {"type": "Function", "content": {"typeVars": [".0.139809321539776"], "argTypes": [{"nodeId": ".0.139809321539776"}, {"nodeId": "139809262990464", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}], "returnType": {"nodeId": ".0.139809321539776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809321539776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "def": "139809321539776", "variance": "INVARIANT"}}, "139809321540224": {"type": "Function", "content": {"typeVars": [".0.139809321540224"], "argTypes": [{"nodeId": ".0.139809321540224"}, {"nodeId": "139809262990464", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}], "returnType": {"nodeId": ".0.139809321540224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809321540224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "def": "139809321540224", "variance": "INVARIANT"}}, "139809321540672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809321541120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321541568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321542016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321542464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262978848": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321542912"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809262978848"}], "bases": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809262978848"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": ".1.139809262978848"}]}], "isAbstract": false}}, ".1.139809262978848": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262978848", "variance": "COVARIANT"}}, "139809321542912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978848", "args": [{"nodeId": ".1.139809262978848"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809262978848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809262979200": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321543360"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809262979200"}, {"nodeId": ".2.139809262979200"}], "bases": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809262979200"}, {"nodeId": ".2.139809262979200"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": "139809266824384"}]}], "isAbstract": false}}, ".1.139809262979200": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262979200", "variance": "COVARIANT"}}, ".2.139809262979200": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262979200", "variance": "COVARIANT"}}, "139809321543360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262979200", "args": [{"nodeId": ".1.139809262979200"}, {"nodeId": ".2.139809262979200"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809234336704"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809234336704": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809262979200"}, {"nodeId": ".2.139809262979200"}]}}, "139809266824384": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809262979200"}, {"nodeId": ".2.139809262979200"}]}}, "139809262979552": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321543808"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809262979552"}], "bases": [{"nodeId": "139809251069792", "args": [{"nodeId": ".1.139809262979552"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": ".1.139809262979552"}]}], "isAbstract": false}}, ".1.139809262979552": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262979552", "variance": "COVARIANT"}}, "139809321543808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262979552", "args": [{"nodeId": ".1.139809262979552"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809262979552"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809251076832": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321544256"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809251076832"}, {"nodeId": ".2.139809251076832"}], "bases": [{"nodeId": "139809251071904", "args": [{"nodeId": ".1.139809251076832"}, {"nodeId": ".2.139809251076832"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": ".1.139809251076832"}]}], "isAbstract": false}}, ".1.139809251076832": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251076832", "variance": "COVARIANT"}}, ".2.139809251076832": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251076832", "variance": "COVARIANT"}}, "139809321544256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076832", "args": [{"nodeId": ".1.139809251076832"}, {"nodeId": ".2.139809251076832"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251076832"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809251077184": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321544704"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809251077184"}, {"nodeId": ".2.139809251077184"}], "bases": [{"nodeId": "139809251072608", "args": [{"nodeId": ".1.139809251077184"}, {"nodeId": ".2.139809251077184"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": "139809254795616"}]}], "isAbstract": false}}, ".1.139809251077184": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251077184", "variance": "COVARIANT"}}, ".2.139809251077184": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251077184", "variance": "COVARIANT"}}, "139809321544704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077184", "args": [{"nodeId": ".1.139809251077184"}, {"nodeId": ".2.139809251077184"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809234336928"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809234336928": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251077184"}, {"nodeId": ".2.139809251077184"}]}}, "139809254795616": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251077184"}, {"nodeId": ".2.139809251077184"}]}}, "139809251077536": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321545152"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809251077536"}, {"nodeId": ".2.139809251077536"}], "bases": [{"nodeId": "139809251072256", "args": [{"nodeId": ".1.139809251077536"}, {"nodeId": ".2.139809251077536"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": ".2.139809251077536"}]}], "isAbstract": false}}, ".1.139809251077536": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251077536", "variance": "COVARIANT"}}, ".2.139809251077536": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251077536", "variance": "COVARIANT"}}, "139809321545152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077536", "args": [{"nodeId": ".1.139809251077536"}, {"nodeId": ".2.139809251077536"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".2.139809251077536"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809251077888": {"type": "Concrete", "content": {"module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321545600"}, "name": "popitem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321546048"}, "name": "move_to_end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321546496"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321546944"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321547392"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321547840"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321548288"}, "name": "values"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234335696"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234337264"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}], "typeVars": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}], "bases": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": ".1.139809251077888"}]}], "isAbstract": false}}, ".1.139809251077888": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251077888", "variance": "INVARIANT"}}, ".2.139809251077888": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251077888", "variance": "INVARIANT"}}, "139809321545600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809234337152"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}}, "139809234337152": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}}, "139809321546048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, {"nodeId": ".1.139809251077888"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}}, "139809321546496": {"type": "Function", "content": {"typeVars": [".0.139809321546496"], "argTypes": [{"nodeId": ".0.139809321546496"}], "returnType": {"nodeId": ".0.139809321546496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809321546496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, "def": "139809321546496", "variance": "INVARIANT"}}, "139809321546944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251077888"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809321547392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}], "returnType": {"nodeId": "139809251076832", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809321547840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}], "returnType": {"nodeId": "139809251077184", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809321548288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}], "returnType": {"nodeId": "139809251077536", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809234335696": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809321548736"}, {"nodeId": "139809321549184"}]}}, "139809321548736": {"type": "Function", "content": {"typeVars": [".-1.139809321548736"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809321548736"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139809251077888", "args": [{"nodeId": ".-1.139809321548736"}, {"nodeId": "139809234337600"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139809321548736": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321548736", "variance": "INVARIANT"}}, "139809234337600": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809321549184": {"type": "Function", "content": {"typeVars": [".-1.139809321549184", ".-2.139809321549184"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809321549184"}]}, {"nodeId": ".-2.139809321549184"}], "returnType": {"nodeId": "139809251077888", "args": [{"nodeId": ".-1.139809321549184"}, {"nodeId": ".-2.139809321549184"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139809321549184": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321549184", "variance": "INVARIANT"}}, ".-2.139809321549184": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321549184", "variance": "INVARIANT"}}, "139809234337264": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809321648192"}, {"nodeId": "139809321648640"}]}}, "139809321648192": {"type": "Function", "content": {"typeVars": [".-1.139809321648192"], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": "139809229422768"}]}, {"nodeId": ".1.139809251077888"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809229422880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "139809229422768": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139809321648192"}, {"nodeId": "N"}]}}, ".-1.139809321648192": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321648192", "variance": "INVARIANT"}}, "139809229422880": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139809321648192"}, {"nodeId": "N"}]}}, "139809321648640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, {"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}], "returnType": {"nodeId": ".2.139809251077888"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "139809250917568": {"type": "Concrete", "content": {"module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809254795392"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234337376"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321652672"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321653120"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321653568"}, "name": "copy"}}], "typeVars": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}], "bases": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}], "isAbstract": false}}, ".1.139809250917568": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250917568", "variance": "INVARIANT"}}, ".2.139809250917568": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250917568", "variance": "INVARIANT"}}, "139809254795392": {"type": "Union", "content": {"items": [{"nodeId": "139809255095456"}, {"nodeId": "N"}]}}, "139809255095456": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": [], "argNames": []}}, "139809234337376": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809321649088"}, {"nodeId": "139809321649536"}, {"nodeId": "139809321649984"}, {"nodeId": "139809321650432"}, {"nodeId": "139809321650880"}, {"nodeId": "139809321651328"}, {"nodeId": "139809321651776"}, {"nodeId": "139809321652224"}]}}, "139809321649088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809321649536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": ".2.139809250917568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139809321649984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": "139809229423104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229423104": {"type": "Union", "content": {"items": [{"nodeId": "139809234276576"}, {"nodeId": "N"}]}}, "139809234276576": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": [], "argNames": []}}, "139809321650432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": "139809229423216"}, {"nodeId": ".2.139809250917568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809229423216": {"type": "Union", "content": {"items": [{"nodeId": "139809234276800"}, {"nodeId": "N"}]}}, "139809234276800": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": [], "argNames": []}}, "139809321650880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": "139809229423328"}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809229423328": {"type": "Union", "content": {"items": [{"nodeId": "139809234276128"}, {"nodeId": "N"}]}}, "139809234276128": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": [], "argNames": []}}, "139809321651328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": "139809229423440"}, {"nodeId": "139809262990816", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": ".2.139809250917568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "139809229423440": {"type": "Union", "content": {"items": [{"nodeId": "139809234277024"}, {"nodeId": "N"}]}}, "139809234277024": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": [], "argNames": []}}, "139809321651776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": "139809229423552"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809229423776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809229423552": {"type": "Union", "content": {"items": [{"nodeId": "139809234277248"}, {"nodeId": "N"}]}}, "139809234277248": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": [], "argNames": []}}, "139809229423776": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}}, "139809321652224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": "139809229423888"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809229424112"}]}, {"nodeId": ".2.139809250917568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "139809229423888": {"type": "Union", "content": {"items": [{"nodeId": "139809234277472"}, {"nodeId": "N"}]}}, "139809234277472": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": [], "argNames": []}}, "139809229424112": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250917568"}]}}, "139809321652672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": ".1.139809250917568"}], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809321653120": {"type": "Function", "content": {"typeVars": [".0.139809321653120"], "argTypes": [{"nodeId": ".0.139809321653120"}], "returnType": {"nodeId": ".0.139809321653120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809321653120": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250917568", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}, "def": "139809321653120", "variance": "INVARIANT"}}, "139809321653568": {"type": "Function", "content": {"typeVars": [".0.139809321653568"], "argTypes": [{"nodeId": ".0.139809321653568"}], "returnType": {"nodeId": ".0.139809321653568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809321653568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250917568", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}, "def": "139809321653568", "variance": "INVARIANT"}}, "139809251078240": {"type": "Concrete", "content": {"module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321654016"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321654464"}, "name": "new_child"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183056384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321655360"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321655808"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321656256"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321656704"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321657152"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321657600"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321658048"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321658496"}, "name": "__bool__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229422656"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229424336"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321660736"}, "name": "copy"}}, {"kind": "Variable", "content": {"name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809183059072"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229424560"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321662080"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321662528"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229424896"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}], "bases": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}], "isAbstract": false}}, ".1.139809251078240": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251078240", "variance": "INVARIANT"}}, ".2.139809251078240": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251078240", "variance": "INVARIANT"}}, "139809321654016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}}, "139809321654464": {"type": "Function", "content": {"typeVars": [".0.139809321654464"], "argTypes": [{"nodeId": ".0.139809321654464"}, {"nodeId": "139809229424448"}], "returnType": {"nodeId": ".0.139809321654464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, ".0.139809321654464": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, "def": "139809321654464", "variance": "INVARIANT"}}, "139809229424448": {"type": "Union", "content": {"items": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": "N"}]}}, "139809183056384": {"type": "Function", "content": {"typeVars": [".0.139809183056384"], "argTypes": [{"nodeId": ".0.139809183056384"}], "returnType": {"nodeId": ".0.139809183056384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809183056384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, "def": "139809183056384", "variance": "INVARIANT"}}, "139809321655360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809321655808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": ".1.139809251078240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321656256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": ".1.139809251078240"}], "returnType": {"nodeId": ".2.139809251078240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321656704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251078240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809321657152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809321657600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321658048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": ".1.139809251078240"}], "returnType": {"nodeId": ".2.139809251078240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "139809321658496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229422656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809321658944"}, {"nodeId": "139809321659392"}]}}, "139809321658944": {"type": "Function", "content": {"typeVars": [".-1.139809321658944"], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": "139809229424672"}]}, {"nodeId": ".1.139809251078240"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809229424784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "139809229424672": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139809321658944"}, {"nodeId": "N"}]}}, ".-1.139809321658944": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321658944", "variance": "INVARIANT"}}, "139809229424784": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139809321658944"}, {"nodeId": "N"}]}}, "139809321659392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}], "returnType": {"nodeId": ".2.139809251078240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "139809229424336": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809321659840"}, {"nodeId": "139809321660288"}]}}, "139809321659840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": ".1.139809251078240"}], "returnType": {"nodeId": ".2.139809251078240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "139809321660288": {"type": "Function", "content": {"typeVars": [".-1.139809321660288"], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": ".1.139809251078240"}, {"nodeId": "139809229425008"}], "returnType": {"nodeId": "139809229425120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "139809229425008": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809251078240"}, {"nodeId": ".-1.139809321660288"}]}}, ".-1.139809321660288": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321660288", "variance": "INVARIANT"}}, "139809229425120": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809251078240"}, {"nodeId": ".-1.139809321660288"}]}}, "139809321660736": {"type": "Function", "content": {"typeVars": [".0.139809321660736"], "argTypes": [{"nodeId": ".0.139809321660736"}], "returnType": {"nodeId": ".0.139809321660736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809321660736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, "def": "139809321660736", "variance": "INVARIANT"}}, "139809183059072": {"type": "Function", "content": {"typeVars": [".0.139809183059072"], "argTypes": [{"nodeId": ".0.139809183059072"}], "returnType": {"nodeId": ".0.139809183059072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809183059072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, "def": "139809183059072", "variance": "INVARIANT"}}, "139809229424560": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809321661184"}, {"nodeId": "139809321661632"}]}}, "139809321661184": {"type": "Function", "content": {"typeVars": [".-1.139809321661184"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809321661184"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139809251078240", "args": [{"nodeId": ".-1.139809321661184"}, {"nodeId": "139809229425456"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}}, ".-1.139809321661184": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321661184", "variance": "INVARIANT"}}, "139809229425456": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809321661632": {"type": "Function", "content": {"typeVars": [".-1.139809321661632", ".-2.139809321661632"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809321661632"}]}, {"nodeId": ".-2.139809321661632"}], "returnType": {"nodeId": "139809251078240", "args": [{"nodeId": ".-1.139809321661632"}, {"nodeId": ".-2.139809321661632"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.139809321661632": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321661632", "variance": "INVARIANT"}}, ".-2.139809321661632": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321661632", "variance": "INVARIANT"}}, "139809321662080": {"type": "Function", "content": {"typeVars": [".-1.139809321662080", ".-2.139809321662080"], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809321662080"}, {"nodeId": ".-2.139809321662080"}]}], "returnType": {"nodeId": "139809251078240", "args": [{"nodeId": "139809229425568"}, {"nodeId": "139809229425680"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809321662080": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321662080", "variance": "INVARIANT"}}, ".-2.139809321662080": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321662080", "variance": "INVARIANT"}}, "139809229425568": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".-1.139809321662080"}]}}, "139809229425680": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809251078240"}, {"nodeId": ".-2.139809321662080"}]}}, "139809321662528": {"type": "Function", "content": {"typeVars": [".-1.139809321662528", ".-2.139809321662528"], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809321662528"}, {"nodeId": ".-2.139809321662528"}]}], "returnType": {"nodeId": "139809251078240", "args": [{"nodeId": "139809229425792"}, {"nodeId": "139809229425904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809321662528": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321662528", "variance": "INVARIANT"}}, ".-2.139809321662528": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321662528", "variance": "INVARIANT"}}, "139809229425792": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".-1.139809321662528"}]}}, "139809229425904": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809251078240"}, {"nodeId": ".-2.139809321662528"}]}}, "139809229424896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809321662976"}, {"nodeId": "139809321663424"}]}}, "139809321662976": {"type": "Function", "content": {"typeVars": [".0.139809321662976"], "argTypes": [{"nodeId": ".0.139809321662976"}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}], "returnType": {"nodeId": ".0.139809321662976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809321662976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, "def": "139809321662976", "variance": "INVARIANT"}}, "139809321663424": {"type": "Function", "content": {"typeVars": [".0.139809321663424"], "argTypes": [{"nodeId": ".0.139809321663424"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809229426240"}]}], "returnType": {"nodeId": ".0.139809321663424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809321663424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, "def": "139809321663424", "variance": "INVARIANT"}}, "139809229426240": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}}, "139809338528288": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170844896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262731680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809263661936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170845568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170846240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305152192"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809170844896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528288"}], "returnType": {"nodeId": "139809225073808"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225073808": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809251081760"}]}, {"nodeId": "N"}]}}, "139809251081760": {"type": "Concrete", "content": {"module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313371552"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809313371552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081760"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809263661936": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809170845568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528288"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170846240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528288"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305152192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528288"}, {"nodeId": "139809338527232"}, {"nodeId": "139809225074144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809225074144": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809338538496": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229733136"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809229733136": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809322196928"}, {"nodeId": "139809322197376"}, {"nodeId": "139809322197824"}]}}, "139809322196928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538496"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809322197376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538496"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809322197824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251073312": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225078176"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305475136"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305475584"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305476032"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305476480"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305591872"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305592320"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305592768"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305593216"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305593664"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305594112"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305594560"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305595008"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305595456"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305595904"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305596352"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305596800"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305597248"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305597696"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305598144"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305598592"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809251073312"}], "bases": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809251073312"}]}], "isAbstract": false}}, ".1.139809251073312": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251073312", "variance": "COVARIANT"}}, "139809225078176": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305474240"}, {"nodeId": "139809305474688"}]}}, "139809305474240": {"type": "Function", "content": {"typeVars": [".0.139809305474240"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139809305474240"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139809305474240": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "def": "139809305474240", "variance": "INVARIANT"}}, "139809305474688": {"type": "Function", "content": {"typeVars": [".0.139809305474688"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": ".0.139809305474688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139809305474688": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "def": "139809305474688", "variance": "INVARIANT"}}, "139809305475136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305475584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139809305476032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139809305476480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305591872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305592320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305592768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305593216": {"type": "Function", "content": {"typeVars": [".-1.139809305593216"], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809305593216"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": "139809225080304"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.139809305593216": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305593216", "variance": "INVARIANT"}}, "139809225080304": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251073312"}, {"nodeId": ".-1.139809305593216"}]}}, "139809305593664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305594112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305594560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251073312"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305595008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305595456": {"type": "Function", "content": {"typeVars": [".-1.139809305595456"], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".-1.139809305595456"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": "139809225080416"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305595456": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305595456", "variance": "INVARIANT"}}, "139809225080416": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251073312"}, {"nodeId": ".-1.139809305595456"}]}}, "139809305595904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305596352": {"type": "Function", "content": {"typeVars": [".-1.139809305596352"], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".-1.139809305596352"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": "139809225080528"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305596352": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305596352", "variance": "INVARIANT"}}, "139809225080528": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251073312"}, {"nodeId": ".-1.139809305596352"}]}}, "139809305596800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305597248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305597696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305598144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305598592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809251073664": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305599040"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305599488"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305599936"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305600384"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809251073664"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": "139809266818672"}]}], "isAbstract": false}}, ".1.139809251073664": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251073664", "variance": "INVARIANT"}}, "139809305599040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073664", "args": [{"nodeId": ".1.139809251073664"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251073664"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}}, "139809305599488": {"type": "Function", "content": {"typeVars": [".0.139809305599488"], "argTypes": [{"nodeId": ".0.139809305599488"}], "returnType": {"nodeId": ".0.139809305599488"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809305599488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251073664", "args": [{"nodeId": ".1.139809251073664"}]}, "def": "139809305599488", "variance": "INVARIANT"}}, "139809305599936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073664", "args": [{"nodeId": ".1.139809251073664"}]}], "returnType": {"nodeId": "139809225441568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225441568": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": ".1.139809251073664"}]}}, "139809305600384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809266818672": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": ".1.139809251073664"}]}}, "139809250725376": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809171317792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809171318240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809171318464"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225079520"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305603072"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305603520"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305603968"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305604416"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305604864"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225441344"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305606208"}, "name": "__reversed__"}}], "typeVars": [], "bases": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809171317792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809171318240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809171318464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225079520": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305602176"}, {"nodeId": "139809305602624"}]}}, "139809305602176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305602624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809305603072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305603520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305603968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305604416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305604864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809225441344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305605312"}, {"nodeId": "139809305605760"}]}}, "139809305605312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305605760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809250725376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305606208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809250725728": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259358688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809301076832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259358016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305606656"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305607104"}, "name": "getter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305607552"}, "name": "setter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300496448"}, "name": "deleter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300496896"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300497344"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300497792"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809259358688": {"type": "Union", "content": {"items": [{"nodeId": "139809266691744"}, {"nodeId": "N"}]}}, "139809266691744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809301076832": {"type": "Union", "content": {"items": [{"nodeId": "139809266681888"}, {"nodeId": "N"}]}}, "139809266681888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809259358016": {"type": "Union", "content": {"items": [{"nodeId": "139809255094336"}, {"nodeId": "N"}]}}, "139809255094336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305606656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725728"}, {"nodeId": "139809225442016"}, {"nodeId": "139809225442352"}, {"nodeId": "139809225442688"}, {"nodeId": "139809225442912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}}, "139809225442016": {"type": "Union", "content": {"items": [{"nodeId": "139809224995360"}, {"nodeId": "N"}]}}, "139809224995360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809225442352": {"type": "Union", "content": {"items": [{"nodeId": "139809224995584"}, {"nodeId": "N"}]}}, "139809224995584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225442688": {"type": "Union", "content": {"items": [{"nodeId": "139809224995808"}, {"nodeId": "N"}]}}, "139809224995808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809225442912": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809305607104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725728"}, {"nodeId": "139809224994688"}], "returnType": {"nodeId": "139809250725728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809224994688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305607552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725728"}, {"nodeId": "139809224995136"}], "returnType": {"nodeId": "139809250725728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809224995136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809300496448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725728"}, {"nodeId": "139809224996032"}], "returnType": {"nodeId": "139809250725728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809224996032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809300496896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725728"}, {"nodeId": "A"}, {"nodeId": "139809225443696"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809225443696": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809300497344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725728"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809300497792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725728"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809250726080": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809241936320": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300501824"}, "name": "__fspath__"}}], "typeVars": [{"nodeId": ".1.139809241936320"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__fspath__"]}}, ".1.139809241936320": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809241936320", "variance": "COVARIANT"}}, "139809300501824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809241936320", "args": [{"nodeId": ".1.139809241936320"}]}], "returnType": {"nodeId": ".1.139809241936320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250726432": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300502720"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.139809250726432"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__anext__"]}}, ".1.139809250726432": {"type": "TypeVar", "content": {"varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "139809338533216", "args": [{"nodeId": "A"}]}, "def": "139809250726432", "variance": "COVARIANT"}}, "139809338533216": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "content": {"name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221197184"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338533216"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__await__"]}}, ".1.139809338533216": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338533216", "variance": "COVARIANT"}}, "139809221197184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533216", "args": [{"nodeId": ".1.139809338533216"}]}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.139809338533216"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809300502720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250726432", "args": [{"nodeId": ".1.139809250726432"}]}], "returnType": {"nodeId": ".1.139809250726432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251074016": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225445040"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300644800"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300645248"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139809251074016"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251074016"}]}], "isAbstract": false}}, ".1.139809251074016": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251074016", "variance": "INVARIANT"}}, "139809225445040": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809300512128"}, {"nodeId": "139809300643904"}, {"nodeId": "139809300644352"}]}}, "139809300512128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074016", "args": [{"nodeId": ".1.139809251074016"}]}, {"nodeId": "N"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809225448176"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809225448176": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251074016"}, {"nodeId": "N"}]}}, "139809300643904": {"type": "Function", "content": {"typeVars": [".-1.139809300643904"], "argTypes": [{"nodeId": "139809251074016", "args": [{"nodeId": ".1.139809251074016"}]}, {"nodeId": "139809224996928"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809300643904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809224996928": {"type": "Function", "content": {"typeVars": [".-1.139809224996928"], "argTypes": [{"nodeId": ".-1.139809224996928"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139809224996928": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809224996928", "variance": "INVARIANT"}}, ".-1.139809300643904": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300643904", "variance": "INVARIANT"}}, "139809300644352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074016", "args": [{"nodeId": ".1.139809251074016"}]}, {"nodeId": "139809224996704"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251074016"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809224996704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.139809251074016"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809300644800": {"type": "Function", "content": {"typeVars": [".0.139809300644800"], "argTypes": [{"nodeId": ".0.139809300644800"}], "returnType": {"nodeId": ".0.139809300644800"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809300644800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251074016", "args": [{"nodeId": ".1.139809251074016"}]}, "def": "139809300644800", "variance": "INVARIANT"}}, "139809300645248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074016", "args": [{"nodeId": ".1.139809251074016"}]}], "returnType": {"nodeId": ".1.139809251074016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250726784": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300651968"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139809250726784"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__getitem__"]}}, ".1.139809250726784": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250726784", "variance": "COVARIANT"}}, "139809300651968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250726784", "args": [{"nodeId": ".1.139809250726784"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809250726784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809251074368": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225448512"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300659136"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300659584"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139809251074368"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251074368"}]}], "isAbstract": false}}, ".1.139809251074368": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251074368", "variance": "INVARIANT"}}, "139809225448512": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809300656448"}, {"nodeId": "139809300656896"}, {"nodeId": "139809300657344"}, {"nodeId": "139809300657792"}, {"nodeId": "139809300658240"}, {"nodeId": "139809300658688"}]}}, "139809300656448": {"type": "Function", "content": {"typeVars": [".-1.139809300656448"], "argTypes": [{"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}, {"nodeId": "139809225540096"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809300656448"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809225540096": {"type": "Function", "content": {"typeVars": [".-1.139809225540096"], "argTypes": [{"nodeId": ".-1.139809225540096"}], "returnType": {"nodeId": ".1.139809251074368"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139809225540096": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540096", "variance": "INVARIANT"}}, ".-1.139809300656448": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300656448", "variance": "INVARIANT"}}, "139809300656896": {"type": "Function", "content": {"typeVars": [".-1.139809300656896", ".-2.139809300656896"], "argTypes": [{"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}, {"nodeId": "139809225539872"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809300656896"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809300656896"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "139809225539872": {"type": "Function", "content": {"typeVars": [".-1.139809225539872", ".-2.139809225539872"], "argTypes": [{"nodeId": ".-1.139809225539872"}, {"nodeId": ".-2.139809225539872"}], "returnType": {"nodeId": ".1.139809251074368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809225539872": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225539872", "variance": "INVARIANT"}}, ".-2.139809225539872": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225539872", "variance": "INVARIANT"}}, ".-1.139809300656896": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300656896", "variance": "INVARIANT"}}, ".-2.139809300656896": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300656896", "variance": "INVARIANT"}}, "139809300657344": {"type": "Function", "content": {"typeVars": [".-1.139809300657344", ".-2.139809300657344", ".-3.139809300657344"], "argTypes": [{"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}, {"nodeId": "139809225539648"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809300657344"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809300657344"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-3.139809300657344"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "139809225539648": {"type": "Function", "content": {"typeVars": [".-1.139809225539648", ".-2.139809225539648", ".-3.139809225539648"], "argTypes": [{"nodeId": ".-1.139809225539648"}, {"nodeId": ".-2.139809225539648"}, {"nodeId": ".-3.139809225539648"}], "returnType": {"nodeId": ".1.139809251074368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, ".-1.139809225539648": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225539648", "variance": "INVARIANT"}}, ".-2.139809225539648": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225539648", "variance": "INVARIANT"}}, ".-3.139809225539648": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225539648", "variance": "INVARIANT"}}, ".-1.139809300657344": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300657344", "variance": "INVARIANT"}}, ".-2.139809300657344": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300657344", "variance": "INVARIANT"}}, ".-3.139809300657344": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300657344", "variance": "INVARIANT"}}, "139809300657792": {"type": "Function", "content": {"typeVars": [".-1.139809300657792", ".-2.139809300657792", ".-3.139809300657792", ".-4.139809300657792"], "argTypes": [{"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}, {"nodeId": "139809225540320"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809300657792"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809300657792"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-3.139809300657792"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-4.139809300657792"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "139809225540320": {"type": "Function", "content": {"typeVars": [".-1.139809225540320", ".-2.139809225540320", ".-3.139809225540320", ".-4.139809225540320"], "argTypes": [{"nodeId": ".-1.139809225540320"}, {"nodeId": ".-2.139809225540320"}, {"nodeId": ".-3.139809225540320"}, {"nodeId": ".-4.139809225540320"}], "returnType": {"nodeId": ".1.139809251074368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, ".-1.139809225540320": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540320", "variance": "INVARIANT"}}, ".-2.139809225540320": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540320", "variance": "INVARIANT"}}, ".-3.139809225540320": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540320", "variance": "INVARIANT"}}, ".-4.139809225540320": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540320", "variance": "INVARIANT"}}, ".-1.139809300657792": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300657792", "variance": "INVARIANT"}}, ".-2.139809300657792": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300657792", "variance": "INVARIANT"}}, ".-3.139809300657792": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300657792", "variance": "INVARIANT"}}, ".-4.139809300657792": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300657792", "variance": "INVARIANT"}}, "139809300658240": {"type": "Function", "content": {"typeVars": [".-1.139809300658240", ".-2.139809300658240", ".-3.139809300658240", ".-4.139809300658240", ".-5.139809300658240"], "argTypes": [{"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}, {"nodeId": "139809225540544"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809300658240"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809300658240"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-3.139809300658240"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-4.139809300658240"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-5.139809300658240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null, null]}}, "139809225540544": {"type": "Function", "content": {"typeVars": [".-1.139809225540544", ".-2.139809225540544", ".-3.139809225540544", ".-4.139809225540544", ".-5.139809225540544"], "argTypes": [{"nodeId": ".-1.139809225540544"}, {"nodeId": ".-2.139809225540544"}, {"nodeId": ".-3.139809225540544"}, {"nodeId": ".-4.139809225540544"}, {"nodeId": ".-5.139809225540544"}], "returnType": {"nodeId": ".1.139809251074368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}}, ".-1.139809225540544": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540544", "variance": "INVARIANT"}}, ".-2.139809225540544": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540544", "variance": "INVARIANT"}}, ".-3.139809225540544": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540544", "variance": "INVARIANT"}}, ".-4.139809225540544": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540544", "variance": "INVARIANT"}}, ".-5.139809225540544": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540544", "variance": "INVARIANT"}}, ".-1.139809300658240": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300658240", "variance": "INVARIANT"}}, ".-2.139809300658240": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300658240", "variance": "INVARIANT"}}, ".-3.139809300658240": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300658240", "variance": "INVARIANT"}}, ".-4.139809300658240": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300658240", "variance": "INVARIANT"}}, ".-5.139809300658240": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300658240", "variance": "INVARIANT"}}, "139809300658688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}, {"nodeId": "139809225540768"}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, null, null, null, null, null, "iterables"]}}, "139809225540768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139809251074368"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809300659136": {"type": "Function", "content": {"typeVars": [".0.139809300659136"], "argTypes": [{"nodeId": ".0.139809300659136"}], "returnType": {"nodeId": ".0.139809300659136"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809300659136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}, "def": "139809300659136", "variance": "INVARIANT"}}, "139809300659584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}], "returnType": {"nodeId": ".1.139809251074368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809241936672": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300850816"}, "name": "flush"}}], "typeVars": [{"nodeId": ".1.139809241936672"}], "bases": [{"nodeId": "139809259143232", "args": [{"nodeId": ".1.139809241936672"}]}], "protocolMembers": ["flush", "write"]}}, ".1.139809241936672": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809241936672", "variance": "CONTRAVARIANT"}}, "139809300850816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809241936672", "args": [{"nodeId": ".1.139809241936672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809259143232": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313883296"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.139809259143232"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["write"]}}, ".1.139809259143232": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809259143232", "variance": "CONTRAVARIANT"}}, "139809313883296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259143232", "args": [{"nodeId": ".1.139809259143232"}]}, {"nodeId": ".1.139809259143232"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809250727136": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300852160"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.139809250727136"}, {"nodeId": ".2.139809250727136"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__pow__"]}}, ".1.139809250727136": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250727136", "variance": "CONTRAVARIANT"}}, ".2.139809250727136": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250727136", "variance": "COVARIANT"}}, "139809300852160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250727136", "args": [{"nodeId": ".1.139809250727136"}, {"nodeId": ".2.139809250727136"}]}, {"nodeId": ".1.139809250727136"}], "returnType": {"nodeId": ".2.139809250727136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809250727488": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300852608"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.139809250727488"}, {"nodeId": ".2.139809250727488"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__pow__"]}}, ".1.139809250727488": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250727488", "variance": "CONTRAVARIANT"}}, ".2.139809250727488": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250727488", "variance": "COVARIANT"}}, "139809300852608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250727488", "args": [{"nodeId": ".1.139809250727488"}, {"nodeId": ".2.139809250727488"}]}, {"nodeId": ".1.139809250727488"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.139809250727488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809250727840": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300853056"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.139809250727840"}, {"nodeId": ".2.139809250727840"}, {"nodeId": ".3.139809250727840"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__pow__"]}}, ".1.139809250727840": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250727840", "variance": "CONTRAVARIANT"}}, ".2.139809250727840": {"type": "TypeVar", "content": {"varName": "_M", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250727840", "variance": "CONTRAVARIANT"}}, ".3.139809250727840": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250727840", "variance": "COVARIANT"}}, "139809300853056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250727840", "args": [{"nodeId": ".1.139809250727840"}, {"nodeId": ".2.139809250727840"}, {"nodeId": ".3.139809250727840"}]}, {"nodeId": ".1.139809250727840"}, {"nodeId": ".2.139809250727840"}], "returnType": {"nodeId": ".3.139809250727840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809251074720": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225623920"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301016000"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301016448"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301016896"}, "name": "__length_hint__"}}], "typeVars": [{"nodeId": ".1.139809251074720"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251074720"}]}], "isAbstract": false}}, ".1.139809251074720": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251074720", "variance": "INVARIANT"}}, "139809225623920": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809301015104"}, {"nodeId": "139809301015552"}]}}, "139809301015104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074720", "args": [{"nodeId": ".1.139809251074720"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": ".1.139809251074720"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809301015552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074720", "args": [{"nodeId": ".1.139809251074720"}]}, {"nodeId": "139809262989760", "args": [{"nodeId": ".1.139809251074720"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809262989760": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317301024"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317301472"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139809262989760"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__getitem__", "__len__"]}}, ".1.139809262989760": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262989760", "variance": "COVARIANT"}}, "139809317301024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262989760", "args": [{"nodeId": ".1.139809262989760"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809317301472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262989760", "args": [{"nodeId": ".1.139809262989760"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809262989760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809301016000": {"type": "Function", "content": {"typeVars": [".0.139809301016000"], "argTypes": [{"nodeId": ".0.139809301016000"}], "returnType": {"nodeId": ".0.139809301016000"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809301016000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251074720", "args": [{"nodeId": ".1.139809251074720"}]}, "def": "139809301016000", "variance": "INVARIANT"}}, "139809301016448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074720", "args": [{"nodeId": ".1.139809251074720"}]}], "returnType": {"nodeId": ".1.139809251074720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809301016896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074720", "args": [{"nodeId": ".1.139809251074720"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250728192": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301017792"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.139809250728192"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__round__"]}}, ".1.139809250728192": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250728192", "variance": "COVARIANT"}}, "139809301017792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250728192", "args": [{"nodeId": ".1.139809250728192"}]}], "returnType": {"nodeId": ".1.139809250728192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250728544": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301018240"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.139809250728544"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__round__"]}}, ".1.139809250728544": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250728544", "variance": "COVARIANT"}}, "139809301018240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250728544", "args": [{"nodeId": ".1.139809250728544"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809250728544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809241937024": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "139809262986944", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "139809262987296", "args": [{"nodeId": "139809338538848"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}}, "139809262986944": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317297440"}, "name": "__add__"}}], "typeVars": [{"nodeId": ".1.139809262986944"}, {"nodeId": ".2.139809262986944"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__add__"]}}, ".1.139809262986944": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262986944", "variance": "CONTRAVARIANT"}}, ".2.139809262986944": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262986944", "variance": "COVARIANT"}}, "139809317297440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262986944", "args": [{"nodeId": ".1.139809262986944"}, {"nodeId": ".2.139809262986944"}]}, {"nodeId": ".1.139809262986944"}], "returnType": {"nodeId": ".2.139809262986944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262987296": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317297888"}, "name": "__radd__"}}], "typeVars": [{"nodeId": ".1.139809262987296"}, {"nodeId": ".2.139809262987296"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__radd__"]}}, ".1.139809262987296": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262987296", "variance": "CONTRAVARIANT"}}, ".2.139809262987296": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262987296", "variance": "COVARIANT"}}, "139809317297888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262987296", "args": [{"nodeId": ".1.139809262987296"}, {"nodeId": ".2.139809262987296"}]}, {"nodeId": ".1.139809262987296"}], "returnType": {"nodeId": ".2.139809262987296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809251075072": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225627392"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301226304"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301226752"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139809251075072"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251075072"}]}], "isAbstract": false}}, ".1.139809251075072": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251075072", "variance": "COVARIANT"}}, "139809225627392": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809301220928"}, {"nodeId": "139809301221376"}, {"nodeId": "139809301221824"}, {"nodeId": "139809301222272"}, {"nodeId": "139809301222720"}, {"nodeId": "139809301223168"}]}}, "139809301220928": {"type": "Function", "content": {"typeVars": [".-1.139809301220928"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809301220928"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809251075072", "args": [{"nodeId": "139809225628624"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}}, ".-1.139809301220928": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301220928", "variance": "INVARIANT"}}, "139809225628624": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139809301220928"}]}}, "139809301221376": {"type": "Function", "content": {"typeVars": [".-1.139809301221376", ".-2.139809301221376"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809301221376"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809301221376"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809251075072", "args": [{"nodeId": "139809225628848"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}}, ".-1.139809301221376": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301221376", "variance": "INVARIANT"}}, ".-2.139809301221376": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301221376", "variance": "INVARIANT"}}, "139809225628848": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139809301221376"}, {"nodeId": ".-2.139809301221376"}]}}, "139809301221824": {"type": "Function", "content": {"typeVars": [".-1.139809301221824", ".-2.139809301221824", ".-3.139809301221824"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809301221824"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809301221824"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-3.139809301221824"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809251075072", "args": [{"nodeId": "139809225629072"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}}, ".-1.139809301221824": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301221824", "variance": "INVARIANT"}}, ".-2.139809301221824": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301221824", "variance": "INVARIANT"}}, ".-3.139809301221824": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301221824", "variance": "INVARIANT"}}, "139809225629072": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139809301221824"}, {"nodeId": ".-2.139809301221824"}, {"nodeId": ".-3.139809301221824"}]}}, "139809301222272": {"type": "Function", "content": {"typeVars": [".-1.139809301222272", ".-2.139809301222272", ".-3.139809301222272", ".-4.139809301222272"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809301222272"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809301222272"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-3.139809301222272"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-4.139809301222272"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809251075072", "args": [{"nodeId": "139809225629296"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}}, ".-1.139809301222272": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222272", "variance": "INVARIANT"}}, ".-2.139809301222272": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222272", "variance": "INVARIANT"}}, ".-3.139809301222272": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222272", "variance": "INVARIANT"}}, ".-4.139809301222272": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222272", "variance": "INVARIANT"}}, "139809225629296": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139809301222272"}, {"nodeId": ".-2.139809301222272"}, {"nodeId": ".-3.139809301222272"}, {"nodeId": ".-4.139809301222272"}]}}, "139809301222720": {"type": "Function", "content": {"typeVars": [".-1.139809301222720", ".-2.139809301222720", ".-3.139809301222720", ".-4.139809301222720", ".-5.139809301222720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809301222720"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809301222720"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-3.139809301222720"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-4.139809301222720"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-5.139809301222720"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809251075072", "args": [{"nodeId": "139809225629520"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, "strict"]}}, ".-1.139809301222720": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222720", "variance": "INVARIANT"}}, ".-2.139809301222720": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222720", "variance": "INVARIANT"}}, ".-3.139809301222720": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222720", "variance": "INVARIANT"}}, ".-4.139809301222720": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222720", "variance": "INVARIANT"}}, ".-5.139809301222720": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222720", "variance": "INVARIANT"}}, "139809225629520": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139809301222720"}, {"nodeId": ".-2.139809301222720"}, {"nodeId": ".-3.139809301222720"}, {"nodeId": ".-4.139809301222720"}, {"nodeId": ".-5.139809301222720"}]}}, "139809301223168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809251075072", "args": [{"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, null, "iterables", "strict"]}}, "139809301226304": {"type": "Function", "content": {"typeVars": [".0.139809301226304"], "argTypes": [{"nodeId": ".0.139809301226304"}], "returnType": {"nodeId": ".0.139809301226304"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809301226304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075072", "args": [{"nodeId": ".1.139809251075072"}]}, "def": "139809301226304", "variance": "INVARIANT"}}, "139809301226752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075072", "args": [{"nodeId": ".1.139809251075072"}]}], "returnType": {"nodeId": ".1.139809251075072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250728896": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809250729600": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250729248"}], "isAbstract": false}}, "139809250729952": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250729248"}], "isAbstract": false}}, "139809250730304": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266826176"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250729248"}], "isAbstract": false}}, "139809266826176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262866544"}}}, "139809262866544": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809250730656": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250729248"}], "isAbstract": false}}, "139809250731008": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250731360": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "content": {"name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250731712": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250732064": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250732416": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301229888"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527232"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809301229888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250732416"}, {"nodeId": "139809338527232"}, {"nodeId": "139809225631984"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}}, "139809225631984": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250732768": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250733120": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250733472": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301230336"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266824720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266826512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809301230336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250733472"}, {"nodeId": "139809338527232"}, {"nodeId": "139809225632096"}, {"nodeId": "139809225632208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}}, "139809225632096": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809225632208": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809266824720": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809266826512": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250733824": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250734176": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250734528": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250734880": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250735232": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250735584": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250735936": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266826848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266826064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266823712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266824944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266825840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266825616"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809266826848": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809266826064": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809266823712": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809266824944": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809266825840": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809266825616": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809250736288": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250736640": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250736992": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250737344": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731712"}], "isAbstract": false}}, "139809250737696": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731712"}], "isAbstract": false}}, "139809250902080": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731712"}], "isAbstract": false}}, "139809250902432": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250733472"}], "isAbstract": false}}, "139809250902784": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250733824"}], "isAbstract": false}}, "139809250903136": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250733824"}], "isAbstract": false}}, "139809250903488": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250734528"}], "isAbstract": false}}, "139809250903840": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "content": {"name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250904192": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250904544": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250904896": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250904544"}], "isAbstract": false}}, "139809250905248": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250904544"}], "isAbstract": false}}, "139809250905600": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250904544"}], "isAbstract": false}}, "139809250905952": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250904544"}], "isAbstract": false}}, "139809250906304": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250906656": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250907008": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250907360": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250907712": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250908064": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250908416": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250908768": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250909120": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250735232"}], "isAbstract": false}}, "139809250909472": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250735232"}], "isAbstract": false}}, "139809250909824": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250735936"}], "isAbstract": false}}, "139809250910176": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250909824"}], "isAbstract": false}}, "139809250910528": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250736992"}], "isAbstract": false}}, "139809250910880": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301230784"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809250910528"}], "isAbstract": false}}, "139809301230784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250910880"}, {"nodeId": "139809250722560"}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "139809250911232": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301231232"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809250910528"}], "isAbstract": false}}, "139809301231232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250911232"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "139809250911584": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301231680"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809250910528"}], "isAbstract": false}}, "139809301231680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250911584"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "139809250911936": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250912288": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250912640": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250912992": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250913344": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250913696": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250914048": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250914400": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250914752": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250915104": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250915456": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250915808": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250306080": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "content": {"name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196347616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196348064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196348736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196348288"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": true}}, "139809196347616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306080"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809251070144", "args": [{"nodeId": "139809250722912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139809196348064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306080"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139809196348736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306080"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809196348288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306080"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250306432": {"type": "Protocol", "content": {"module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "content": {"name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196349632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196350080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196350304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196350976"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233727360"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809196350528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196351200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196351424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196351648"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}}, "139809196349632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809196350080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809196350304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250306432"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809196350976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250306432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}}, "139809233727360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809330323616"}, {"nodeId": "139809330324064"}, {"nodeId": "139809330324512"}, {"nodeId": "139809330324960"}, {"nodeId": "139809330325408"}, {"nodeId": "139809330325856"}, {"nodeId": "139809330326304"}]}}, "139809330323616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809233730048"}, {"nodeId": "139809338538848"}, {"nodeId": "139809233730160"}, {"nodeId": "139809233730272"}, {"nodeId": "139809233730384"}], "returnType": {"nodeId": "139809250297984"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809233730048": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254785088"}}}, "139809233730160": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233730272": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233730384": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809330324064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809233730496"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809262747168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809233730496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254599904"}}}, "139809330324512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809233729936"}, {"nodeId": "139809233731056"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250296928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809233729936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254601584"}}}, "139809233731056": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139809330324960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809233731168"}, {"nodeId": "139809233944640"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250296576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809233731168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254599792"}}}, "139809233944640": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139809330325408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809233944752"}, {"nodeId": "139809233945088"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250296224"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809233944752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809259359584"}}}, "139809233945088": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139809330325856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809233945200"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809251070496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809233945200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254599904"}}}, "139809330326304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809233945312"}, {"nodeId": "139809233945424"}, {"nodeId": "139809233945536"}], "returnType": {"nodeId": "139809251070144", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809233945312": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233945424": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233945536": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809196350528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809196351200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250306432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809196351424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809196351648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809233945760"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "139809233945760": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250306784": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "content": {"name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196353216"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330328992"}, "name": "open_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330329440"}, "name": "resource_path"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330329888"}, "name": "is_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330330336"}, "name": "contents"}}], "typeVars": [], "bases": [{"nodeId": "139809250306080"}], "isAbstract": true}}, "139809196353216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306784"}], "returnType": {"nodeId": "139809250306432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809330328992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306784"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250296224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139809330329440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306784"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139809330329888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306784"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809330330336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306784"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250299392": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195701216"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250902432"}], "isAbstract": false}}, "139809195701216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250299392"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250300096": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325599200"}, "name": "load"}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195692256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195691584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195692032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250175888"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325600992"}, "name": "matches"}}], "typeVars": [], "bases": [{"nodeId": "139809250299744"}], "isAbstract": false}}, "139809262744704": {"type": "Concrete", "content": {"module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213296064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213285312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213285760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213286432"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238238592"}, "items": [{"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "search"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238239824"}, "items": [{"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "match"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238240608"}, "items": [{"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fullmatch"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238241056"}, "items": [{"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "split"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238241504"}, "items": [{"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "findall"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238241952"}, "items": [{"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "finditer"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238242736"}, "items": [{"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sub"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238243072"}, "items": [{"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809283863072"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809283863520"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809283863968"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809262744704"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809262744704": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262744704", "variance": "INVARIANT"}}, "139809213296064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809213285312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}], "returnType": {"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809213285760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809213286432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}], "returnType": {"nodeId": ".1.139809262744704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238238592": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809283852320"}, {"nodeId": "139809266881856"}, {"nodeId": "139809283853216"}]}}, "139809283852320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238240720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238240720": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809262744352": {"type": "Concrete", "content": {"module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213375968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213374848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213373952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213373280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213372608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213371936"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238120064"}, "items": [{"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "expand"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238121408"}, "items": [{"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "group"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238122080"}, "items": [{"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groups"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238122192"}, "items": [{"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groupdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280487520"}, "name": "start"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280487968"}, "name": "end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280488416"}, "name": "span"}}, {"kind": "Variable", "content": {"name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213299648"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238238144"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280490208"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280490656"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280491104"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809262744352"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809262744352": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262744352", "variance": "INVARIANT"}}, "139809213375968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809213374848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809213373952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809238121856"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238121856": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809213373280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809238121968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238121968": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809213372608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": ".1.139809262744352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809213371936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238120064": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809280483040"}, {"nodeId": "139809266888128"}, {"nodeId": "139809280483936"}]}}, "139809280483040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "139809266888128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "139809280483936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": ".1.139809262744352"}], "returnType": {"nodeId": ".1.139809262744352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "139809238121408": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809280484384"}, {"nodeId": "139809280484832"}, {"nodeId": "139809280485280"}]}}, "139809280484384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.139809262744352"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809280484832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "139809238237248"}], "returnType": {"nodeId": "139809238237472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809238237248": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809238237472": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744352"}, {"nodeId": "A"}]}}, "139809280485280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "139809238237584"}, {"nodeId": "139809238237696"}, {"nodeId": "139809238237808"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809238238032"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}}, "139809238237584": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809238237696": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809238237808": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809238238032": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744352"}, {"nodeId": "A"}]}}, "139809238122080": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809280485728"}, {"nodeId": "139809280486176"}]}}, "139809280485728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809238238368"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238238368": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744352"}, {"nodeId": "A"}]}}, "139809280486176": {"type": "Function", "content": {"typeVars": [".-1.139809280486176"], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": ".-1.139809280486176"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809238238480"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.139809280486176": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809280486176", "variance": "INVARIANT"}}, "139809238238480": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744352"}, {"nodeId": ".-1.139809280486176"}]}}, "139809238122192": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809280486624"}, {"nodeId": "139809280487072"}]}}, "139809280486624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809238238816"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238238816": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744352"}, {"nodeId": "A"}]}}, "139809280487072": {"type": "Function", "content": {"typeVars": [".-1.139809280487072"], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": ".-1.139809280487072"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809238238928"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.139809280487072": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809280487072", "variance": "INVARIANT"}}, "139809238238928": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744352"}, {"nodeId": ".-1.139809280487072"}]}}, "139809280487520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "139809238239040"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809238239040": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809280487968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "139809238239152"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809238239152": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809280488416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "139809238239264"}], "returnType": {"nodeId": "139809238239488"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809238239264": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809238239488": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809213299648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809238239712"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238239712": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809238238144": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809280489312"}, {"nodeId": "139809280489760"}]}}, "139809280489312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.139809262744352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809280489760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "139809238240048"}], "returnType": {"nodeId": "139809238240272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809238240048": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809238240272": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744352"}, {"nodeId": "A"}]}}, "139809280490208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809280490656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809280491104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139809266881856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238240832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238240832": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "N"}]}}, "139809283853216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238240944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238240944": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": "N"}]}}, "139809238239824": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809283853664"}, {"nodeId": "139809266883872"}, {"nodeId": "139809283854560"}]}}, "139809283853664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238241168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238241168": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809266883872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238241280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238241280": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "N"}]}}, "139809283854560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238241392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238241392": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": "N"}]}}, "139809238240608": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809283855008"}, {"nodeId": "139809266883200"}, {"nodeId": "139809283855904"}]}}, "139809283855008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238241616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238241616": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809266883200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238241728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238241728": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "N"}]}}, "139809283855904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238241840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238241840": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": "N"}]}}, "139809238241056": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809283856352"}, {"nodeId": "139809266882976"}, {"nodeId": "139809283857248"}]}}, "139809283856352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809238242176"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "139809238242176": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}}, "139809266882976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809238242400"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "139809238242400": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "A"}]}}, "139809283857248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809238242624"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "139809238242624": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744704"}, {"nodeId": "A"}]}}, "139809238241504": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809283857696"}, {"nodeId": "139809266882528"}, {"nodeId": "139809283858592"}]}}, "139809283857696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809266882528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809283858592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809262744704"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238241952": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809283859040"}, {"nodeId": "139809266882304"}, {"nodeId": "139809283859936"}]}}, "139809283859040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722560"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809266882304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722912"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809283859936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744704"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238242736": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809266881408"}, {"nodeId": "139809283860384"}, {"nodeId": "139809283861280"}]}}, "139809266881408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809238243296"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139809238243296": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809284059680"}]}}, "139809284059680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809283860384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809238243408"}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139809238243408": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809284059904"}]}}, "139809284059904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722912"}]}], "returnType": {"nodeId": "139809251081408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809283861280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": "139809238243520"}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809262744704"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139809238243520": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744704"}, {"nodeId": "139809284058784"}]}}, "139809284058784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744704"}]}], "returnType": {"nodeId": ".1.139809262744704"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809238243072": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809266882752"}, {"nodeId": "139809283861728"}, {"nodeId": "139809283862624"}]}}, "139809266882752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809238243744"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238243968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139809238243744": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809284059008"}]}}, "139809284059008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809238243968": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809283861728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809238244080"}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238244304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139809238244080": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809284058336"}]}}, "139809284058336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722912"}]}], "returnType": {"nodeId": "139809251081408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809238244304": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}]}}, "139809283862624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": "139809238244416"}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238244640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139809238244416": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744704"}, {"nodeId": "139809284058560"}]}}, "139809284058560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744704"}]}], "returnType": {"nodeId": ".1.139809262744704"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809238244640": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}]}}, "139809283863072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}], "returnType": {"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809283863520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809283863968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139809325599200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233719184"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233719184": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809195692256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233719408"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233719408": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809195691584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233719520"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233719520": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809195692032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233719632"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233719632": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809250175888": {"type": "Union", "content": {"items": [{"nodeId": "139809250301504"}, {"nodeId": "N"}]}}, "139809325600992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233719744"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "139809233719744": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809250299744": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250177568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250177344"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266683456"}, "name": "_replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266684800"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266686144"}, "name": "_asdict"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266685696"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}], "isAbstract": false}}, "139809250177568": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809250177344": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809266683456": {"type": "Function", "content": {"typeVars": [".-1.139809266683456"], "argTypes": [{"nodeId": ".-1.139809266683456"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".-1.139809266683456"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}}, ".-1.139809266683456": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139809250177680"}, "def": "139809266683456", "variance": "INVARIANT"}}, "139809250177680": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809266684800": {"type": "Function", "content": {"typeVars": [".-1.139809266684800"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".-1.139809266684800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}}, ".-1.139809266684800": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139809250177680"}, "def": "139809266684800", "variance": "INVARIANT"}}, "139809266686144": {"type": "Function", "content": {"typeVars": [".-1.139809266686144"], "argTypes": [{"nodeId": ".-1.139809266686144"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}}, ".-1.139809266686144": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139809250177680"}, "def": "139809266686144", "variance": "INVARIANT"}}, "139809266685696": {"type": "Function", "content": {"typeVars": [".-1.139809266685696"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.139809266685696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["_cls", "iterable"]}}, ".-1.139809266685696": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139809250177680"}, "def": "139809266685696", "variance": "INVARIANT"}}, "139809250300800": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "content": {"name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195665088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195664640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195664416"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233718512"}, "items": [{"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "select"}}], "typeVars": [], "bases": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809250300448"}]}], "isAbstract": false}}, "139809195665088": {"type": "Function", "content": {"typeVars": [".0.139809195665088"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809233720080"}]}], "returnType": {"nodeId": ".0.139809195665088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}}, "139809233720080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242144816"}}}, ".0.139809195665088": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250300800"}, "def": "139809195665088", "variance": "INVARIANT"}}, "139809195664640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250300800"}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809195664416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250300800"}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233718512": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809325604576"}, {"nodeId": "139809325605024"}]}}, "139809325604576": {"type": "Function", "content": {"typeVars": [".0.139809325604576"], "argTypes": [{"nodeId": ".0.139809325604576"}], "returnType": {"nodeId": ".0.139809325604576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809325604576": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250300800"}, "def": "139809325604576", "variance": "INVARIANT"}}, "139809325605024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250300800"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809250300448"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "139809242108448": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "content": {"type": {"nodeId": "139809242108800"}}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195658816"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250305024"}], "isAbstract": true}}, "139809195658816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242108448"}, {"nodeId": "139809242108800"}], "returnType": {"nodeId": "139809338531808", "args": [{"nodeId": "139809250301504"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}}, "139809242109152": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195657024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325730272"}, "name": "invalidate_caches"}}], "typeVars": [], "bases": [{"nodeId": "139809242108448"}], "isAbstract": false}}, "139809195657024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809242108800"}], "returnType": {"nodeId": "139809338531808", "args": [{"nodeId": "139809250301856"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}}, "139809325730272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242109152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139809262739424": {"type": "Protocol", "content": {"module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325737888"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["find_spec"]}}, "139809325737888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262739424"}, {"nodeId": "139809250722560"}, {"nodeId": "139809237740208"}, {"nodeId": "139809237740320"}], "returnType": {"nodeId": "139809237740432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "139809237740208": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809237740320": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809237740432": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809241938432": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "content": {"name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217468608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217470176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217470400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217470624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217470848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217471072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217471296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217471520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217471744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217471968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217472192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217472416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217472640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217472864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217473088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217473760"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "A"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809217468608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237740656"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237740656": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217470176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237740768"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237740768": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217470400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237740880"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237740880": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217470624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237740992"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237740992": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217470848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741104"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741104": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217471072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741216"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741216": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217471296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741328"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741328": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217471520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741440"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741440": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217471744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741552"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741552": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217471968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741664"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741664": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217472192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741776"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741776": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217472416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741888"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741888": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217472640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742000"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742000": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217472864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742112"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742112": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217473088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742224"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742224": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217473760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742336"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742336": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809259144992": {"type": "Concrete", "content": {"module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "content": {"name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313886432"}, "name": "__new__"}}], "typeVars": [{"nodeId": ".1.139809259144992"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809259144992": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809259144992", "variance": "COVARIANT"}}, "139809313886432": {"type": "Function", "content": {"typeVars": [".-1.139809313886432"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809259144992"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.139809313886432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}}, ".-1.139809313886432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809313886432", "variance": "INVARIANT"}}, "139809241938784": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "content": {"name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217467264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217476000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217476224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217476448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217476672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217476896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217477120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217477344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217477568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217477792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217478016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338539200"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}], "isAbstract": false}}, "139809217467264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742448"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742448": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217476000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742560"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742560": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217476224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742672"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742672": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217476448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742784"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742784": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217476672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742896"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742896": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217476896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743008"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743008": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217477120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743120"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743120": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217477344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743232"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743232": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217477568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743344"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743344": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217477792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743456"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743456": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217478016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743568"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743568": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809241939136": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "content": {"name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217562208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217562432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217562656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217562880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217563104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217563328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217563552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217563776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217564000"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809263659024"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}], "isAbstract": false}}, "139809217562208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743680": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217562432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743792"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743792": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217562656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743904"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743904": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217562880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744016"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744016": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217563104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744128"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744128": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217563328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744240"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744240": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217563552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744352"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744352": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217563776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744464"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744464": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217564000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744576"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744576": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809263659024": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "139809338538848"}]}}, "139809262739776": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809263659136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313057568"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809263659136": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242267232"}}}, "139809242267232": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809313057568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262739776"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809241939488": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "content": {"name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217566464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217566688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217566912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217567136"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809217566464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744800"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744800": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217566688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744912"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744912": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217566912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237745024"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237745024": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217567136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237745136"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237745136": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809242103872": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_thread_info", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217567584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217568928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217569152"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "A"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}], "isAbstract": false}}, "139809217567584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237745360"}], "returnType": {"nodeId": "139809237745472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237745360": {"type": "Tuple", "content": {"items": [{"nodeId": "139809263654656"}, {"nodeId": "139809263654544"}, {"nodeId": "139809237745248"}]}}, "139809263654656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262870016"}}}, "139809262870016": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809263654544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262869568"}}}, "139809262869568": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "139809237745248": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809237745472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262870016"}}}, "139809217568928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237860528"}], "returnType": {"nodeId": "139809237860640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237860528": {"type": "Tuple", "content": {"items": [{"nodeId": "139809263654656"}, {"nodeId": "139809263654544"}, {"nodeId": "139809237860416"}]}}, "139809237860416": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809237860640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262869568"}}}, "139809217569152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237860864"}], "returnType": {"nodeId": "139809237860976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237860864": {"type": "Tuple", "content": {"items": [{"nodeId": "139809263654656"}, {"nodeId": "139809263654544"}, {"nodeId": "139809237860752"}]}}, "139809237860752": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809237860976": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809242104224": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "content": {"name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217568480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217570944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217571168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217571392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217571616"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "A"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}], "isAbstract": false}}, "139809217568480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237861088"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237861088": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809217570944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237861200"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237861200": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809217571168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237861312"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237861312": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809217571392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237861424"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237861424": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809217571616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237861536"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237861536": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809262740128": {"type": "Protocol", "content": {"module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242322912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809263663280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809263663504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527232"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["err_msg", "exc_traceback", "exc_type", "exc_value", "object"]}}, "139809242322912": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809263663280": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809263663504": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809242104576": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "content": {"name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217575424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217575872"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809242321008"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250180032"}]}], "isAbstract": false}}, "139809217575424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237864000"}], "returnType": {"nodeId": "139809237864112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237864000": {"type": "Tuple", "content": {"items": [{"nodeId": "139809263663616"}, {"nodeId": "139809263654432"}]}}, "139809263663616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262871808"}}}, "139809262871808": {"type": "Union", "content": {"items": [{"nodeId": "139809266692640"}, {"nodeId": "N"}]}}, "139809266692640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809338534624": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297050400"}, "name": "__anext__"}}, {"kind": "Variable", "content": {"name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221276864"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242444768"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297052192"}, "name": "aclose"}}, {"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221275968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221277760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221277984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221278208"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}], "bases": [{"nodeId": "139809338534272", "args": [{"nodeId": ".1.139809338534624"}]}], "isAbstract": true}}, ".1.139809338534624": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338534624", "variance": "COVARIANT"}}, ".2.139809338534624": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338534624", "variance": "CONTRAVARIANT"}}, "139809297050400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".1.139809338534624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221276864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}, {"nodeId": ".2.139809338534624"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".1.139809338534624"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809242444768": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809297051296"}, {"nodeId": "139809297051744"}]}}, "139809297051296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}, {"nodeId": "0"}, {"nodeId": "139809242446560"}, {"nodeId": "139809242446672"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".1.139809338534624"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242446560": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "139809338527232"}]}}, "139809242446672": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809297051744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}, {"nodeId": "139809250729248"}, {"nodeId": "N"}, {"nodeId": "139809242446784"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".1.139809338534624"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242446784": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809297052192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221275968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221277760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}], "returnType": {"nodeId": "139809262731680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221277984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}], "returnType": {"nodeId": "139809262737312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221278208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338534272": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "content": {"name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221274176"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297049952"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.139809338534272"}], "bases": [{"nodeId": "139809338533920", "args": [{"nodeId": ".1.139809338534272"}]}], "protocolMembers": ["__aiter__", "__anext__"]}}, ".1.139809338534272": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338534272", "variance": "COVARIANT"}}, "139809221274176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534272", "args": [{"nodeId": ".1.139809338534272"}]}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".1.139809338534272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297049952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534272", "args": [{"nodeId": ".1.139809338534272"}]}], "returnType": {"nodeId": "139809338534272", "args": [{"nodeId": ".1.139809338534272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338533920": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "content": {"name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221268352"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338533920"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__aiter__"]}}, ".1.139809338533920": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338533920", "variance": "COVARIANT"}}, "139809221268352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533920", "args": [{"nodeId": ".1.139809338533920"}]}], "returnType": {"nodeId": "139809338534272", "args": [{"nodeId": ".1.139809338533920"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809263654432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262871808"}}}, "139809237864112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262871808"}}}, "139809217575872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237864224"}], "returnType": {"nodeId": "139809237864336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237864224": {"type": "Tuple", "content": {"items": [{"nodeId": "139809263663616"}, {"nodeId": "139809263654432"}]}}, "139809237864336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262871808"}}}, "139809242321008": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262871808"}}}, "139809250180032": {"type": "Union", "content": {"items": [{"nodeId": "139809225548160"}, {"nodeId": "N"}]}}, "139809225548160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809262731328": {"type": "Concrete", "content": {"module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216800448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262731680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259096656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216800896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216801568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313373344"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313373792"}, "name": "__call__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242686272"}, "items": [{"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809216800448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731328"}], "returnType": {"nodeId": "139809242688960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242688960": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809251081760"}]}, {"nodeId": "N"}]}}, "139809259096656": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809216800896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731328"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216801568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731328"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809313373344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731328"}, {"nodeId": "139809262731680"}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, {"nodeId": "139809242689408"}, {"nodeId": "139809242689520"}, {"nodeId": "139809242689632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}}, "139809242689408": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809242689520": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}, {"nodeId": "N"}]}}, "139809242689632": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809251081760"}]}, {"nodeId": "N"}]}}, "139809313373792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731328"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809242686272": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809313521952"}, {"nodeId": "139809313522400"}]}}, "139809313521952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731328"}, {"nodeId": "N"}, {"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809262731328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809313522400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731328"}, {"nodeId": "139809338527232"}, {"nodeId": "139809242690192"}], "returnType": {"nodeId": "139809262734848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809242690192": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809262734848": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217170112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217170560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217170784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217171008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217171232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217171456"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317589216"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317589664"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217170112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}], "returnType": {"nodeId": "139809237731360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237731360": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809251081760"}]}, {"nodeId": "N"}]}}, "139809217170560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}], "returnType": {"nodeId": "139809237731584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237731584": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809217170784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}], "returnType": {"nodeId": "139809262734496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262734496": {"type": "Concrete", "content": {"module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317586080"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809317586080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734496"}, {"nodeId": "139809338527232"}, {"nodeId": "139809237731248"}], "returnType": {"nodeId": "139809262731328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}}, "139809237731248": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809217171008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217171232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217171456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317589216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}, {"nodeId": "139809259292928"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809259292928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809317589664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809262732384": {"type": "Concrete", "content": {"module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317801312"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317801760"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317802208"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317802656"}, "name": "__delattr__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809317801312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732384"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139809317801760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732384"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809317802208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732384"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809317802656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732384"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262733440": {"type": "Concrete", "content": {"module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216937568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317805792"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317806240"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317806688"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242687952"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}], "bases": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}], "isAbstract": false}}, ".1.139809262733440": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262733440", "variance": "COVARIANT"}}, ".2.139809262733440": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262733440", "variance": "CONTRAVARIANT"}}, ".3.139809262733440": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262733440", "variance": "COVARIANT"}}, "139809216937568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}], "returnType": {"nodeId": "139809242692096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242692096": {"type": "Union", "content": {"items": [{"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809317805792": {"type": "Function", "content": {"typeVars": [".0.139809317805792"], "argTypes": [{"nodeId": ".0.139809317805792"}], "returnType": {"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809317805792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}, "def": "139809317805792", "variance": "INVARIANT"}}, "139809317806240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}], "returnType": {"nodeId": ".1.139809262733440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317806688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}, {"nodeId": ".2.139809262733440"}], "returnType": {"nodeId": ".1.139809262733440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809242687952": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809317807136"}, {"nodeId": "139809317807584"}]}}, "139809317807136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}, {"nodeId": "0"}, {"nodeId": "139809242692432"}, {"nodeId": "139809242692544"}], "returnType": {"nodeId": ".1.139809262733440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242692432": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "139809338527232"}]}}, "139809242692544": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809317807584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}, {"nodeId": "139809250729248"}, {"nodeId": "N"}, {"nodeId": "139809242692656"}], "returnType": {"nodeId": ".1.139809262733440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242692656": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809262733792": {"type": "Concrete", "content": {"module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217059680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317808928"}, "name": "__aiter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317809376"}, "name": "__anext__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317809824"}, "name": "asend"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242692208"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317811168"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317811616"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}], "bases": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}], "isAbstract": false}}, ".1.139809262733792": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262733792", "variance": "COVARIANT"}}, ".2.139809262733792": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262733792", "variance": "CONTRAVARIANT"}}, "139809217059680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}], "returnType": {"nodeId": "139809242692880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242692880": {"type": "Union", "content": {"items": [{"nodeId": "139809338533216", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809317808928": {"type": "Function", "content": {"typeVars": [".0.139809317808928"], "argTypes": [{"nodeId": ".0.139809317808928"}], "returnType": {"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809317808928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}, "def": "139809317808928", "variance": "INVARIANT"}}, "139809317809376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139809262733792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338533568": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221265888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221266112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221266336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221266560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221266784"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242444656"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221267008"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}], "bases": [{"nodeId": "139809338533216", "args": [{"nodeId": ".3.139809338533568"}]}], "isAbstract": true}}, ".1.139809338533568": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338533568", "variance": "COVARIANT"}}, ".2.139809338533568": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338533568", "variance": "CONTRAVARIANT"}}, ".3.139809338533568": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338533568", "variance": "COVARIANT"}}, "139809221265888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}], "returnType": {"nodeId": "139809242445888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242445888": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809221266112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}], "returnType": {"nodeId": "139809262731680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221266336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}], "returnType": {"nodeId": "139809262737312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221266560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221266784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}, {"nodeId": ".2.139809338533568"}], "returnType": {"nodeId": ".1.139809338533568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809242444656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809297047712"}, {"nodeId": "139809297048160"}]}}, "139809297047712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}, {"nodeId": "0"}, {"nodeId": "139809242446112"}, {"nodeId": "139809242446224"}], "returnType": {"nodeId": ".1.139809338533568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242446112": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "139809338527232"}]}}, "139809242446224": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809297048160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}, {"nodeId": "139809250729248"}, {"nodeId": "N"}, {"nodeId": "139809242446336"}], "returnType": {"nodeId": ".1.139809338533568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242446336": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809221267008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317809824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}, {"nodeId": ".2.139809262733792"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139809262733792"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809242692208": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809259293824"}, {"nodeId": "139809317810272"}]}}, "139809259293824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}, {"nodeId": "0"}, {"nodeId": "139809237729456"}, {"nodeId": "139809237729568"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139809262733792"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809237729456": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "139809338527232"}]}}, "139809237729568": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809317810272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}, {"nodeId": "139809250729248"}, {"nodeId": "N"}, {"nodeId": "139809237729792"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139809262733792"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809237729792": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809317811168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317811616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809262734144": {"type": "Concrete", "content": {"module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217065952"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317812960"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317813408"}, "name": "__await__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317813856"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809237729680"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}], "bases": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}]}], "isAbstract": false}}, ".1.139809262734144": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262734144", "variance": "COVARIANT"}}, ".2.139809262734144": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262734144", "variance": "CONTRAVARIANT"}}, ".3.139809262734144": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262734144", "variance": "COVARIANT"}}, "139809217065952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734144", "args": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}]}], "returnType": {"nodeId": "139809237730576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237730576": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809237730464"}]}, {"nodeId": "N"}]}}, "139809237730464": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809317812960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734144", "args": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317813408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734144", "args": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}]}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.139809262734144"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317813856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734144", "args": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}]}, {"nodeId": ".2.139809262734144"}], "returnType": {"nodeId": ".1.139809262734144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809237729680": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809317585184"}, {"nodeId": "139809317585632"}]}}, "139809317585184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734144", "args": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}]}, {"nodeId": "0"}, {"nodeId": "139809237730912"}, {"nodeId": "139809237731024"}], "returnType": {"nodeId": ".1.139809262734144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809237730912": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "139809338527232"}]}}, "139809237731024": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809317585632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734144", "args": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}]}, {"nodeId": "139809250729248"}, {"nodeId": "N"}, {"nodeId": "139809237731136"}], "returnType": {"nodeId": ".1.139809262734144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809237731136": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809262735200": {"type": "Concrete", "content": {"module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217173024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217173248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217173472"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317591456"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217173024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735200"}], "returnType": {"nodeId": "139809237732256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237732256": {"type": "Union", "content": {"items": [{"nodeId": "139809338527232"}, {"nodeId": "139809262733088"}]}}, "139809217173248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735200"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217173472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735200"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317591456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735200"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809262735552": {"type": "Concrete", "content": {"module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217175264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217175712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217175936"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317593248"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317593696"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217175264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735552"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217175712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735552"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217175936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735552"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317593248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735552"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809317593696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735552"}, {"nodeId": "A"}, {"nodeId": "139809237733152"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809237733152": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809262735904": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217177728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217177952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217178176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217178400"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317595936"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317596384"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317596832"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217177728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735904"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217177952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735904"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217178176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735904"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217178400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735904"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317595936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735904"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809317596384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735904"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809317596832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735904"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262736256": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217181088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217181312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217181536"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317598624"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317599072"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217181088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736256"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217181312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736256"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217181536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736256"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317598624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736256"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809317599072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736256"}, {"nodeId": "A"}, {"nodeId": "139809237734160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809237734160": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809262736608": {"type": "Concrete", "content": {"module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217182432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217265728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217265952"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317600864"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317470496"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217182432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736608"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217265728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736608"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217265952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736608"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317600864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736608"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809317470496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736608"}, {"nodeId": "A"}, {"nodeId": "139809237734832"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809237734832": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809262737664": {"type": "Concrete", "content": {"module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217273120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217272896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217273344"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317477664"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317478112"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317478560"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217273120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737664"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217272896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737664"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217273344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737664"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317477664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737664"}, {"nodeId": "A"}, {"nodeId": "139809237735952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809237735952": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809317478112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737664"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809317478560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737664"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809262738016": {"type": "Concrete", "content": {"module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217275136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217275360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217275584"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317480352"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317480800"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317481248"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217275136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738016"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217275360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738016"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217275584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738016"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317480352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738016"}, {"nodeId": "A"}, {"nodeId": "139809237736624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809237736624": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809317480800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738016"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809317481248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738016"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809262738720": {"type": "Concrete", "content": {"module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317291616"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809317291616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738720"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262984128": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317294304"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, "139809317294304": {"type": "Function", "content": {"typeVars": [".-1.139809317294304"], "argTypes": [{"nodeId": "139809262984128"}, {"nodeId": ".-1.139809317294304"}], "returnType": {"nodeId": ".-1.139809317294304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139809317294304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809317294304", "variance": "INVARIANT"}}, "139809262984480": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317294752"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139809262984480"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__next__"]}}, ".1.139809262984480": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262984480", "variance": "COVARIANT"}}, "139809317294752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262984480", "args": [{"nodeId": ".1.139809262984480"}]}], "returnType": {"nodeId": ".1.139809262984480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262984832": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317295200"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.139809262984832"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__anext__"]}}, ".1.139809262984832": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262984832", "variance": "COVARIANT"}}, "139809317295200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262984832", "args": [{"nodeId": ".1.139809262984832"}]}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".1.139809262984832"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262985888": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317296544"}, "name": "__le__"}}], "typeVars": [{"nodeId": ".1.139809262985888"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__le__"]}}, ".1.139809262985888": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262985888", "variance": "CONTRAVARIANT"}}, "139809317296544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262985888", "args": [{"nodeId": ".1.139809262985888"}]}, {"nodeId": ".1.139809262985888"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262986240": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317296992"}, "name": "__ge__"}}], "typeVars": [{"nodeId": ".1.139809262986240"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__ge__"]}}, ".1.139809262986240": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262986240", "variance": "CONTRAVARIANT"}}, "139809317296992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262986240", "args": [{"nodeId": ".1.139809262986240"}]}, {"nodeId": ".1.139809262986240"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262986592": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "139809262985184", "args": [{"nodeId": "A"}]}, {"nodeId": "139809262985536", "args": [{"nodeId": "A"}]}, {"nodeId": "139809262985888", "args": [{"nodeId": "A"}]}, {"nodeId": "139809262986240", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}}, "139809262987648": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317298336"}, "name": "__sub__"}}], "typeVars": [{"nodeId": ".1.139809262987648"}, {"nodeId": ".2.139809262987648"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__sub__"]}}, ".1.139809262987648": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262987648", "variance": "CONTRAVARIANT"}}, ".2.139809262987648": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262987648", "variance": "COVARIANT"}}, "139809317298336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262987648", "args": [{"nodeId": ".1.139809262987648"}, {"nodeId": ".2.139809262987648"}]}, {"nodeId": ".1.139809262987648"}], "returnType": {"nodeId": ".2.139809262987648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262988000": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317298784"}, "name": "__rsub__"}}], "typeVars": [{"nodeId": ".1.139809262988000"}, {"nodeId": ".2.139809262988000"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__rsub__"]}}, ".1.139809262988000": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262988000", "variance": "CONTRAVARIANT"}}, ".2.139809262988000": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262988000", "variance": "COVARIANT"}}, "139809317298784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262988000", "args": [{"nodeId": ".1.139809262988000"}, {"nodeId": ".2.139809262988000"}]}, {"nodeId": ".1.139809262988000"}], "returnType": {"nodeId": ".2.139809262988000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262988352": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317299232"}, "name": "__divmod__"}}], "typeVars": [{"nodeId": ".1.139809262988352"}, {"nodeId": ".2.139809262988352"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__divmod__"]}}, ".1.139809262988352": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262988352", "variance": "CONTRAVARIANT"}}, ".2.139809262988352": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262988352", "variance": "COVARIANT"}}, "139809317299232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262988352", "args": [{"nodeId": ".1.139809262988352"}, {"nodeId": ".2.139809262988352"}]}, {"nodeId": ".1.139809262988352"}], "returnType": {"nodeId": ".2.139809262988352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262988704": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317299680"}, "name": "__rdivmod__"}}], "typeVars": [{"nodeId": ".1.139809262988704"}, {"nodeId": ".2.139809262988704"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__rdivmod__"]}}, ".1.139809262988704": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262988704", "variance": "CONTRAVARIANT"}}, ".2.139809262988704": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262988704", "variance": "COVARIANT"}}, "139809317299680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262988704", "args": [{"nodeId": ".1.139809262988704"}, {"nodeId": ".2.139809262988704"}]}, {"nodeId": ".1.139809262988704"}], "returnType": {"nodeId": ".2.139809262988704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809262989056": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317300128"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.139809262989056"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__iter__"]}}, ".1.139809262989056": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262989056", "variance": "COVARIANT"}}, "139809317300128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262989056", "args": [{"nodeId": ".1.139809262989056"}]}], "returnType": {"nodeId": ".1.139809262989056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809262989408": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317300576"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.139809262989408"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__aiter__"]}}, ".1.139809262989408": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262989408", "variance": "COVARIANT"}}, "139809317300576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262989408", "args": [{"nodeId": ".1.139809262989408"}]}], "returnType": {"nodeId": ".1.139809262989408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262991168": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317303712"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317304160"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139809262991168"}, {"nodeId": ".2.139809262991168"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__contains__", "__getitem__"]}}, ".1.139809262991168": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262991168", "variance": "CONTRAVARIANT"}}, ".2.139809262991168": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262991168", "variance": "COVARIANT"}}, "139809317303712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262991168", "args": [{"nodeId": ".1.139809262991168"}, {"nodeId": ".2.139809262991168"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809317304160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262991168", "args": [{"nodeId": ".1.139809262991168"}, {"nodeId": ".2.139809262991168"}]}, {"nodeId": ".1.139809262991168"}], "returnType": {"nodeId": ".2.139809262991168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262991520": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317304608"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317305056"}, "name": "__delitem__"}}], "typeVars": [{"nodeId": ".1.139809262991520"}, {"nodeId": ".2.139809262991520"}], "bases": [{"nodeId": "139809262991168", "args": [{"nodeId": ".1.139809262991520"}, {"nodeId": ".2.139809262991520"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}}, ".1.139809262991520": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262991520", "variance": "CONTRAVARIANT"}}, ".2.139809262991520": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262991520", "variance": "INVARIANT"}}, "139809317304608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262991520", "args": [{"nodeId": ".1.139809262991520"}, {"nodeId": ".2.139809262991520"}]}, {"nodeId": ".1.139809262991520"}, {"nodeId": ".2.139809262991520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809317305056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262991520", "args": [{"nodeId": ".1.139809262991520"}, {"nodeId": ".2.139809262991520"}]}, {"nodeId": ".1.139809262991520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262991872": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317305504"}, "name": "fileno"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["fileno"]}}, "139809317305504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262991872"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262992224": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317305952"}, "name": "read"}}], "typeVars": [{"nodeId": ".1.139809262992224"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["read"]}}, ".1.139809262992224": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262992224", "variance": "COVARIANT"}}, "139809317305952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262992224", "args": [{"nodeId": ".1.139809262992224"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809262992224"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809262992576": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313882400"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.139809262992576"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["readline"]}}, ".1.139809262992576": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262992576", "variance": "COVARIANT"}}, "139809313882400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262992576", "args": [{"nodeId": ".1.139809262992576"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809262992576"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809262992928": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313882848"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.139809262992928"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["readline"]}}, ".1.139809262992928": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262992928", "variance": "COVARIANT"}}, "139809313882848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262992928", "args": [{"nodeId": ".1.139809262992928"}]}], "returnType": {"nodeId": ".1.139809262992928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809259143584": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SliceableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313883744"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809251081408"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "139809313883744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259143584"}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809338535680", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809259143936": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IndexableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313884192"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809251081408"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "139809313884192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259143936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809259144288": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItemBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313884640"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229426352"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809259143584"}, {"nodeId": "139809259143936"}], "protocolMembers": ["__buffer__", "__contains__", "__getitem__"]}}, "139809313884640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259144288"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809229426352": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809313885088"}, {"nodeId": "139809313885536"}]}}, "139809313885088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259144288"}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809338535680", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313885536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259144288"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809259144640": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SizedBuffer", "members": [], "typeVars": [], "bases": [{"nodeId": "139809251067680"}, {"nodeId": "139809251081408"}], "protocolMembers": ["__buffer__", "__len__"]}}, "139809259145344": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "DataclassInstance", "members": [{"kind": "Variable", "content": {"name": "__dataclass_fields__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809254746848", "args": [{"nodeId": "A"}]}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__dataclass_fields__"]}}, "139809254746848": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "Field", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250167376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250165696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250165584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262732032", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250164800"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284060576"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284061472"}, "name": "__set_name__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284061920"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809254746848"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809254746848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809254746848", "variance": "INVARIANT"}}, "139809250167376": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809254746848"}, {"nodeId": "0"}]}}, "139809250165696": {"type": "Union", "content": {"items": [{"nodeId": "139809254746496", "args": [{"nodeId": ".1.139809254746848"}]}, {"nodeId": "0"}]}}, "139809254746496": {"type": "Protocol", "content": {"module": "dataclasses", "simpleName": "_DefaultFactory", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284060128"}, "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139809254746496"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, ".1.139809254746496": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809254746496", "variance": "COVARIANT"}}, "139809284060128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254746496", "args": [{"nodeId": ".1.139809254746496"}]}], "returnType": {"nodeId": ".1.139809254746496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250165584": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809250164800": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "0"}]}}, "139809284060576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254746848", "args": [{"nodeId": ".1.139809254746848"}]}, {"nodeId": ".1.139809254746848"}, {"nodeId": "139809233566656"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809234164688"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338537088", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "default", "default_factory", "init", "repr", "hash", "compare", "metadata", "kw_only"]}}, "139809233566656": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".1.139809254746848"}, "argKinds": [], "argNames": []}}, "139809234164688": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809284061472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254746848", "args": [{"nodeId": ".1.139809254746848"}]}, {"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}}, "139809284061920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139809251080352": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225816576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220739136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220739360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220739584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220739808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220740032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318039648"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220740256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220740480"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809225816576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220739136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809242438832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242438832": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809220739360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220739584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220739808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220740032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809242439056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242439056": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809318039648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}, {"nodeId": "139809250722560"}, {"nodeId": "139809242439280"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809242439504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant", "default"]}}, "139809242439280": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139809250722560"}]}}, "139809242439504": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809220740256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809338529344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338529344": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220946496"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313898080"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809220946496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338529344"}], "returnType": {"nodeId": "139809338530048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338530048": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220949408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220950528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220950752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220950976"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296879392"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220951648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220951200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296881632"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296882080"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809220949408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220950528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}], "returnType": {"nodeId": "139809242443088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242443088": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809220950752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220950976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296879392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}, {"nodeId": "139809250722560"}, {"nodeId": "139809242443312"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}}, "139809242443312": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809220951648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}], "returnType": {"nodeId": "139809338529344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220951200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}], "returnType": {"nodeId": "139809338529696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338529696": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220947616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296876256"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809220947616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338529696"}], "returnType": {"nodeId": "139809338530048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296876256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338529696"}, {"nodeId": "139809338530048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "139809296881632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809338528992": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313893152"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313893600"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313894048"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809313893152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528992"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313893600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528992"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313894048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528992"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809296882080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313898080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338529344"}, {"nodeId": "139809338530048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "139809220740480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809338529696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338528640": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220940224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220940672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220940896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220941120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220941344"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313891360"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313891808"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313892256"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809220940224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220940672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}], "returnType": {"nodeId": "139809242441856"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242441856": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809220940896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220941120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220941344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809313891360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}, {"nodeId": "139809242442304"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant"]}}, "139809242442304": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809313891808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313892256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809338530400": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296882528"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296882976"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296883424"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296883872"}, "name": "__ror__"}}, {"kind": "Variable", "content": {"name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809296882528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530400"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}}, "139809296882976": {"type": "Function", "content": {"typeVars": [".-1.139809296882976"], "argTypes": [{"nodeId": "139809338530400"}, {"nodeId": ".-1.139809296882976"}], "returnType": {"nodeId": ".-1.139809296882976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139809296882976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809296882976", "variance": "INVARIANT"}}, "139809296883424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530400"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809296883872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530400"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809338530752": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296885664"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809296885664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809250917920": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250916160"}], "isAbstract": false}}, "139809250916160": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "content": {"name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809251073312", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296674912"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296675360"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296675808"}, "name": "__subclasscheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296676256"}, "name": "_dump_registry"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296676704"}, "name": "register"}}], "typeVars": [], "bases": [{"nodeId": "139809338538144"}], "isAbstract": false}}, "139809296674912": {"type": "Function", "content": {"typeVars": [".-1.139809296674912"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139809296674912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}}, ".-1.139809296674912": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809296674912", "variance": "INVARIANT"}}, "139809296675360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250916160"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}}, "139809296675808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250916160"}, {"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "139809296676256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250916160"}, {"nodeId": "139809229436096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}}, "139809229436096": {"type": "Union", "content": {"items": [{"nodeId": "139809259143232", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809296676704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250916160"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "139809251067328": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221093056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__index__"]}}, "139809221093056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251067328"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338531104": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221095072"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338531104"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__abs__"]}}, ".1.139809338531104": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338531104", "variance": "COVARIANT"}}, "139809221095072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338531104", "args": [{"nodeId": ".1.139809338531104"}]}], "returnType": {"nodeId": ".1.139809338531104"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809338531456": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242254240"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}], "typeVars": [{"nodeId": ".1.139809338531456"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__round__"]}}, ".1.139809338531456": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338531456", "variance": "COVARIANT"}}, "139809242254240": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809296889248"}, {"nodeId": "139809296889696"}]}}, "139809296889248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338531456", "args": [{"nodeId": ".1.139809338531456"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296889696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338531456", "args": [{"nodeId": ".1.139809338531456"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809338531456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809251068032": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221183744"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__hash__"]}}, "139809221183744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251068032"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251068384": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.139809251068384"}, {"nodeId": ".2.139809251068384"}, {"nodeId": ".3.139809251068384"}, {"nodeId": ".4.139809251068384"}], "bases": [{"nodeId": "139809338533216", "args": [{"nodeId": ".3.139809251068384"}]}, {"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809251068384"}, {"nodeId": ".2.139809251068384"}, {"nodeId": ".3.139809251068384"}]}], "isAbstract": true}}, ".1.139809251068384": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251068384", "variance": "COVARIANT"}}, ".2.139809251068384": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251068384", "variance": "CONTRAVARIANT"}}, ".3.139809251068384": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251068384", "variance": "COVARIANT"}}, ".4.139809251068384": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251068384", "variance": "INVARIANT"}}, "139809251071200": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242685712"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221747968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809259293376"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292468512"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "139809242685712": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809254530560"}, {"nodeId": "139809254533920"}]}}, "139809254530560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071200"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809242687280"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809242687280": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}}, "139809254533920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071200"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "139809221747968": {"type": "Function", "content": {"typeVars": [".0.139809221747968"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139809221747968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.139809221747968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251071200"}, "def": "139809221747968", "variance": "INVARIANT"}}, "139809259293376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071200"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809292468512": {"type": "Function", "content": {"typeVars": [".0.139809292468512"], "argTypes": [{"nodeId": ".0.139809292468512"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809292468512"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.139809292468512": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251071200"}, "def": "139809292468512", "variance": "INVARIANT"}}, "139809251071552": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809251073312", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809251073312", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292468960"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292469408"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292469856"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292470304"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292470752"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292471200"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292471648"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292472096"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292472544"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292472992"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}], "isAbstract": true}}, "139809292468960": {"type": "Function", "content": {"typeVars": [".0.139809292468960"], "argTypes": [{"nodeId": ".0.139809292468960"}], "returnType": {"nodeId": ".0.139809292468960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809292468960": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251071552"}, "def": "139809292468960", "variance": "INVARIANT"}}, "139809292469408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071552"}, {"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "139809292469856": {"type": "Function", "content": {"typeVars": [".-1.139809292469856"], "argTypes": [{"nodeId": "139809251071552"}, {"nodeId": "0"}, {"nodeId": ".-1.139809292469856"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.139809292469856": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292469856", "variance": "INVARIANT"}}, "139809292470304": {"type": "Function", "content": {"typeVars": [".-1.139809292470304"], "argTypes": [{"nodeId": ".-1.139809292470304"}, {"nodeId": ".-1.139809292470304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139809292470304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292470304", "variance": "INVARIANT"}}, "139809292470752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071552"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292471200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071552"}], "returnType": {"nodeId": "139809251072608", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809292471648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071552"}], "returnType": {"nodeId": "139809251071904", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809292472096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071552"}], "returnType": {"nodeId": "139809251072256", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809292472544": {"type": "Function", "content": {"typeVars": [".0.139809292472544"], "argTypes": [{"nodeId": ".0.139809292472544"}, {"nodeId": ".0.139809292472544"}], "returnType": {"nodeId": ".0.139809292472544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809292472544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251071552"}, "def": "139809292472544", "variance": "INVARIANT"}}, "139809292472992": {"type": "Function", "content": {"typeVars": [".0.139809292472992"], "argTypes": [{"nodeId": ".0.139809292472992"}, {"nodeId": ".0.139809292472992"}], "returnType": {"nodeId": ".0.139809292472992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809292472992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251071552"}, "def": "139809292472992", "variance": "INVARIANT"}}, "139809338537792": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "content": {"name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262731680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250859088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250868608"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292473440"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292474336"}, "name": "_evaluate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292475232"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809250859088": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809250868608": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809292473440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537792"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}, {"nodeId": "139809242688176"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}}, "139809242688176": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809292474336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537792"}, {"nodeId": "139809242688400"}, {"nodeId": "139809242688624"}, {"nodeId": "139809251073312", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809242688848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}}, "139809242688400": {"type": "Union", "content": {"items": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809242688624": {"type": "Union", "content": {"items": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809242688848": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809292475232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537792"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809251078592": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313572896"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313573344"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313573792"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809313572896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078592"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313573344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078592"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809251078592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313573792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078592"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809251078592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809251078944": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809251073312", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809251073312", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313575584"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313576032"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313576480"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313576928"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313577376"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313577824"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313578272"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313578720"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313579168"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313579616"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}], "isAbstract": true}}, "139809313575584": {"type": "Function", "content": {"typeVars": [".0.139809313575584"], "argTypes": [{"nodeId": ".0.139809313575584"}], "returnType": {"nodeId": ".0.139809313575584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809313575584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078944"}, "def": "139809313575584", "variance": "INVARIANT"}}, "139809313576032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078944"}, {"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "139809313576480": {"type": "Function", "content": {"typeVars": [".-1.139809313576480"], "argTypes": [{"nodeId": "139809251078944"}, {"nodeId": "0"}, {"nodeId": ".-1.139809313576480"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.139809313576480": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809313576480", "variance": "INVARIANT"}}, "139809313576928": {"type": "Function", "content": {"typeVars": [".-1.139809313576928"], "argTypes": [{"nodeId": ".-1.139809313576928"}, {"nodeId": ".-1.139809313576928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139809313576928": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809313576928", "variance": "INVARIANT"}}, "139809313577376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078944"}], "returnType": {"nodeId": "139809251072608", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809313577824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078944"}], "returnType": {"nodeId": "139809251071904", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809313578272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078944"}], "returnType": {"nodeId": "139809251072256", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809313578720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078944"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313579168": {"type": "Function", "content": {"typeVars": [".0.139809313579168"], "argTypes": [{"nodeId": ".0.139809313579168"}, {"nodeId": ".0.139809313579168"}], "returnType": {"nodeId": ".0.139809313579168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809313579168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078944"}, "def": "139809313579168", "variance": "INVARIANT"}}, "139809313579616": {"type": "Function", "content": {"typeVars": [".0.139809313579616"], "argTypes": [{"nodeId": ".0.139809313579616"}, {"nodeId": ".0.139809313579616"}], "returnType": {"nodeId": ".0.139809313579616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809313579616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078944"}, "def": "139809313579616", "variance": "INVARIANT"}}, "139809251079648": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242260064"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809225812768"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318030688"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318031584"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "139809242260064": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809318029344"}, {"nodeId": "139809318029792"}]}}, "139809318029344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251079648"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809242436368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}}, "139809242436368": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}}, "139809318029792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251079648"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}}, "139809225812768": {"type": "Function", "content": {"typeVars": [".0.139809225812768"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139809225812768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.139809225812768": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251079648"}, "def": "139809225812768", "variance": "INVARIANT"}}, "139809318030688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251079648"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809318031584": {"type": "Function", "content": {"typeVars": [".0.139809318031584"], "argTypes": [{"nodeId": ".0.139809318031584"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809318031584"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.139809318031584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251079648"}, "def": "139809318031584", "variance": "INVARIANT"}}, "139809251080000": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225813664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225814112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225814336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225814560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225814784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225815008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225815232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318035168"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318035616"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318036064"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809225813664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225814112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}], "returnType": {"nodeId": "139809242437264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242437264": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809225814336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225814560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225814784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225815008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225815232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}], "returnType": {"nodeId": "139809242437600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242437600": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809318035168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}, {"nodeId": "139809242437936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809242438160"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant", "default", "infer_variance"]}}, "139809242437936": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809242438160": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809318035616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809251078592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809318036064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809251078592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809251080704": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220742048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220742272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318041888"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318042336"}, "name": "__iter__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809220742048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080704"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220742272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080704"}], "returnType": {"nodeId": "139809242439728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242439728": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809318041888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080704"}, {"nodeId": "139809250722560"}, {"nodeId": "139809242439952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}}, "139809242439952": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809318042336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809251081056": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeAliasType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296564960"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__value__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220744064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__type_params__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220744512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220744736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220744960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220745184"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296567648"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296568096"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296568544"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809296564960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809242440736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "type_params"]}}, "139809242440736": {"type": "Union", "content": {"items": [{"nodeId": "139809251080000"}, {"nodeId": "139809251080352"}, {"nodeId": "139809251080704"}]}}, "139809220744064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220744512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809242440960"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242440960": {"type": "Union", "content": {"items": [{"nodeId": "139809251080000"}, {"nodeId": "139809251080352"}, {"nodeId": "139809251080704"}]}}, "139809220744736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220744960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220745184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}], "returnType": {"nodeId": "139809242441184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242441184": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809296567648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809296568096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809251078592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809296568544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809251078592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809259147456": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179172224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146400"}], "isAbstract": false}}, "139809179172224": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259149216": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179358416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241929984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242267008"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179358416": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241929984": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174800416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241930336"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241930336"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241930336"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259106848"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242317312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809174800416": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241930336": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174801648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242317424"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809174801648": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242317424": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259107968": {"type": "Union", "content": {"items": [{"nodeId": "139809241930336"}, {"nodeId": "N"}]}}, "139809259106848": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809242317312": {"type": "Union", "content": {"items": [{"nodeId": "139809241930336"}, {"nodeId": "N"}]}}, "139809242267008": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259149568": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179360992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241929984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242267344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179360992": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242267344": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259149920": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179363344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241930688"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179363344": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241930688": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174802544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259106624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809174802544": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259106624": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809259150272": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179364352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242267456"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179364352": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809242267456": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259150624": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179365248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179365248": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259150976": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179366592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179366592": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259151328": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179367712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242262752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241836256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179367712": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242262752": {"type": "Union", "content": {"items": [{"nodeId": "139809241832736"}, {"nodeId": "139809241831328"}, {"nodeId": "139809241832032"}]}}, "139809241832736": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179773392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241833792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179773392": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241833792": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809241831328": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179768016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241833792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179768016": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241832032": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179771488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241833792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179771488": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241836256": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259151680": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179369056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242317536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242317648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179369056": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242317536": {"type": "Union", "content": {"items": [{"nodeId": "139809241832736"}, {"nodeId": "139809241831328"}, {"nodeId": "139809241832032"}]}}, "139809242317648": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259152032": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179485344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179485344": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259152384": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179486688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179486688": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259152736": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179487584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179487584": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259153088": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179488704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179488704": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259153440": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179489824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241931392"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179489824": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241931392": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174804560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259104944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809174804560": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259104944": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259153792": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179490944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241931392"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179490944": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259154144": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179491840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242316976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242316864"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179491840": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242316976": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809242316864": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259154496": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179493296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241929632"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179493296": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241929632": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174798400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241929280"}], "isAbstract": false}}, "139809174798400": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259107632": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259107744": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809241929280": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259154848": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179494640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242317088"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179494640": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242317088": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259155200": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179495424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241931040"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179495424": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809241931040": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174803552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809174803552": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259107856": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809259155552": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179496768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242317200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241931040"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179496768": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242317200": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809259155904": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179497440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179497440": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259156256": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179498336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179498336": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259156608": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179499232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179499232": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259156960": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809259157312": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809259157664": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809259158368": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179500352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241835200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179500352": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241835200": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259158720": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179632800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241836256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179632800": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259159072": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179633696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241841184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179633696": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241841184": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809241825344": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179634704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241929984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179634704": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241825696": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179635936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179635936": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241826048": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179636832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259109648"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179636832": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259109648": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809241826400": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179637616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179637616": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809241826752": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179638736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241928928"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179638736": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241928928": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179777984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809179777984": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241827104": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179639744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241928928"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179639744": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241827456": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179640976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241928928"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179640976": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241827808": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179641872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241928928"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179641872": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241828160": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179642656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179642656": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809241828512": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179643552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259109536"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179643552": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259109536": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809241828864": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179644448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179644448": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809241829216": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179645792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241925056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179645792": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241925056": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809241829568": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179646912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241930688"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179646912": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241829920": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179762864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259109984"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179762864": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259109984": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809241830272": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179763536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179763536": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809241830624": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179765216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259109872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179765216": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259109872": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809259107072": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539552"}]}}, "139809241830976": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179766784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241832736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179766784": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241831680": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179769808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107520"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179769808": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259107296": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259107408": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259107520": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809241832384": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179772384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241833792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179772384": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241833088": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179774400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241833792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179774400": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241833440": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179775408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241833792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179775408": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241834144": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241833792"}], "isAbstract": false}}, "139809241834496": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241833792"}], "isAbstract": false}}, "139809241834848": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241833792"}], "isAbstract": false}}, "139809241835552": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241835200"}], "isAbstract": false}}, "139809241835904": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241835200"}], "isAbstract": false}}, "139809241836608": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241836960": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241837312": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241837664": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241838016": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241838368": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241838720": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241839072": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241839424": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241839776": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241840128": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241840480": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241840832": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241923648": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241841184"}], "isAbstract": false}}, "139809241924000": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241841184"}], "isAbstract": false}}, "139809241924352": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241841184"}], "isAbstract": false}}, "139809241924704": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241841184"}], "isAbstract": false}}, "139809241925408": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241925760": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241926112": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241926464": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241926816": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241927168": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241927520": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241927872": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241928224": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241928576": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241931744": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174805568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241932448"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809174805568": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241932448": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174806240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241932096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259105056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809174806240": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241932096": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259105056": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809241932800": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174806352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174806352": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809241933152": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174806688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259105168"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174806688": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259105168": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "139809241933504": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174807024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241932096"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174807024": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809241933856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174807360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259105504"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174807360": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259105504": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809241934208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174808144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241932096"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259105616"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174808144": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259105616": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809241934560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174808928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241932096"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241932096"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174808928": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241934912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174809152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259105728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259105840"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174809152": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259105728": {"type": "Union", "content": {"items": [{"nodeId": "139809241932096"}, {"nodeId": "N"}]}}, "139809259105840": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809241935264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174809376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241932096"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174809376": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809262745760": {"type": "Concrete", "content": {"module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}, {"nodeId": "139809250736992"}], "isAbstract": false}}, "139809250295872": {"type": "Concrete", "content": {"module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296736416"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296736864"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296737312"}, "name": "getvalue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296737760"}, "name": "getbuffer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296738208"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "139809262746816"}, {"nodeId": "139809251070496"}], "isAbstract": false}}, "139809296736416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250295872"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}}, "139809296736864": {"type": "Function", "content": {"typeVars": [".0.139809296736864"], "argTypes": [{"nodeId": ".0.139809296736864"}], "returnType": {"nodeId": ".0.139809296736864"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809296736864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250295872"}, "def": "139809296736864", "variance": "INVARIANT"}}, "139809296737312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250295872"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296737760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250295872"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296738208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250295872"}, {"nodeId": "139809233534448"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809233534448": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809250297280": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296742240"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296742688"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "139809262746816"}], "isAbstract": false}}, "139809296742240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297280"}, {"nodeId": "139809262746464"}, {"nodeId": "139809262746464"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}}, "139809296742688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297280"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809250298336": {"type": "Concrete", "content": {"module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296670880"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296671328"}, "name": "getvalue"}}], "typeVars": [], "bases": [{"nodeId": "139809250297984"}], "isAbstract": false}}, "139809296670880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250298336"}, {"nodeId": "139809233716384"}, {"nodeId": "139809233716496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}}, "139809233716384": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233716496": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809296671328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250298336"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242116544": {"type": "Concrete", "content": {"module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296671776"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296672224"}, "name": "decode"}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809200783872"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296673120"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "139809262983424"}], "isAbstract": false}}, "139809296671776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242116544"}, {"nodeId": "139809233716608"}, {"nodeId": "139809338527936"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}}, "139809233716608": {"type": "Union", "content": {"items": [{"nodeId": "139809262983424"}, {"nodeId": "N"}]}}, "139809262983424": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275712608"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809183283488"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275713504"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275713952"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275714400"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": true}}, "139809275712608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983424"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139809183283488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983424"}, {"nodeId": "139809251081408"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139809275713504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275713952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983424"}], "returnType": {"nodeId": "139809229431616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229431616": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}]}}, "139809275714400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983424"}, {"nodeId": "139809229431840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139809229431840": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}]}}, "139809296672224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242116544"}, {"nodeId": "139809233716720"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139809233716720": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809250722560"}]}}, "139809200783872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242116544"}], "returnType": {"nodeId": "139809233716832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233716832": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809296673120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242116544"}, {"nodeId": "139809233717056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809233717056": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}]}}, "139809250916512": {"type": "Concrete", "content": {"module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250725728"}], "isAbstract": false}}, "139809250916864": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809250299040": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288016096"}, "name": "joinpath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288016544"}, "name": "parent"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288016992"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288017440"}, "name": "__truediv__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}}, "139809288016096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250299040"}], "returnType": {"nodeId": "139809250299040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288016544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250299040"}], "returnType": {"nodeId": "139809250299040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288016992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250299040"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288017440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250299040"}], "returnType": {"nodeId": "139809250299040"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809250310656": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250309600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242329856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242149296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809254738048"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288018784"}, "name": "is_multipart"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288019232"}, "name": "set_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288019680"}, "name": "get_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288020128"}, "name": "attach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288020576"}, "name": "get_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288021024"}, "name": "set_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288021472"}, "name": "set_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288021920"}, "name": "get_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288022368"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288022816"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288023264"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288023712"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288024160"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288024608"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288025056"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288025504"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288025952"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233946544"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233951360"}, "items": [{"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288143136"}, "name": "add_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288143584"}, "name": "replace_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288144032"}, "name": "get_content_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288144480"}, "name": "get_content_maintype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288144928"}, "name": "get_content_subtype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288145376"}, "name": "get_default_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288145824"}, "name": "set_default_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233954832"}, "items": [{"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_params"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233955392"}, "items": [{"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288148064"}, "name": "del_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288148512"}, "name": "set_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233956176"}, "items": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_filename"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233957744"}, "items": [{"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_boundary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288150752"}, "name": "set_boundary"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233957632"}, "items": [{"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_content_charset"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233957856"}, "items": [{"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_charsets"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288152992"}, "name": "walk"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288153440"}, "name": "get_content_disposition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288153888"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288154336"}, "name": "as_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288154784"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288155232"}, "name": "set_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288155680"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288156128"}, "name": "set_raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288156576"}, "name": "raw_items"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809250309600": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250170848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250171296"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276038048"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276038496"}, "name": "clone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276038944"}, "name": "handle_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276039392"}, "name": "register_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276039840"}, "name": "header_max_count"}}, {"kind": "Variable", "content": {"name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191589280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191588832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191588608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191588384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191586368"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": true}}, "139809250170848": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809250171296": {"type": "Union", "content": {"items": [{"nodeId": "139809255095904"}, {"nodeId": "N"}]}}, "139809255095904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}], "returnType": {"nodeId": "139809250310656"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809276038048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809233951136"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809233951248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory"]}}, "139809233951136": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809233951248": {"type": "Union", "content": {"items": [{"nodeId": "139809233556576"}, {"nodeId": "N"}]}}, "139809233556576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}], "returnType": {"nodeId": "139809250310656"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809276038496": {"type": "Function", "content": {"typeVars": [".0.139809276038496"], "argTypes": [{"nodeId": ".0.139809276038496"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809276038496"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}}, ".0.139809276038496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250309600"}, "def": "139809276038496", "variance": "INVARIANT"}}, "139809276038944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250310656"}, {"nodeId": "139809254738048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "139809254738048": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276036480"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809250736992"}], "isAbstract": false}}, "139809276036480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254738048"}, {"nodeId": "139809234161328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}}, "139809234161328": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809276039392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250310656"}, {"nodeId": "139809254738048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "139809276039840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233951584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "139809233951584": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809191589280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809233951808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "139809233951808": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809191588832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233952032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809233952032": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809191588608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809191588384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809191586368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809242329856": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809242149296": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288018784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288019232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}}, "139809288019680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809233953376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233953376": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288020128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250310656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}}, "139809288020576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809233953488"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}}, "139809233953488": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809288021024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809233953712"}, {"nodeId": "139809233953936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}}, "139809233953712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250171072"}}}, "139809250171072": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250310656"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}]}}, "139809233953936": {"type": "Union", "content": {"items": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809254745440": {"type": "Concrete", "content": {"module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250169280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250169392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250169056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275978336"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275978784"}, "name": "get_body_encoding"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275979232"}, "name": "get_output_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275979680"}, "name": "header_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275980128"}, "name": "header_encode_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275980576"}, "name": "body_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275981024"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275981472"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809250169280": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250169392": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250169056": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809275978336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}}, "139809275978784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275979232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}], "returnType": {"nodeId": "139809234162896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809234162896": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809275979680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "139809275980128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338532160", "args": [{"nodeId": "139809338538848"}]}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}}, "139809275980576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "139809275981024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809275981472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288021472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809233953824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}}, "139809233953824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242149072"}}}, "139809242149072": {"type": "Union", "content": {"items": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288021920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809233954048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233954048": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242149072"}}}, "139809288022368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809288022816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288023264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809288023712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233954160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809233954160": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288024160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233954272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809233954272": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288024608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288025056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288025504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809233954384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233954384": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288025952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809233954720"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233954720": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809233954496"}]}}, "139809233954496": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809233946544": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288026400"}, {"nodeId": "139809288026848"}]}}, "139809288026400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809233955056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "139809233955056": {"type": "Union", "content": {"items": [{"nodeId": "139809233954944"}, {"nodeId": "N"}]}}, "139809233954944": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288026848": {"type": "Function", "content": {"typeVars": [".-1.139809288026848"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288026848"}], "returnType": {"nodeId": "139809233955280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.139809288026848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288026848", "variance": "INVARIANT"}}, "139809233955280": {"type": "Union", "content": {"items": [{"nodeId": "139809233955168"}, {"nodeId": ".-1.139809288026848"}]}}, "139809233955168": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809233951360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288027296"}, {"nodeId": "139809288027744"}]}}, "139809288027296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809233955616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "139809233955616": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809233955504"}]}, {"nodeId": "N"}]}}, "139809233955504": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288027744": {"type": "Function", "content": {"typeVars": [".-1.139809288027744"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288027744"}], "returnType": {"nodeId": "139809233955840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.139809288027744": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288027744", "variance": "INVARIANT"}}, "139809233955840": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809233955728"}]}, {"nodeId": ".-1.139809288027744"}]}}, "139809233955728": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288143136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233955952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}}, "139809233955952": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250166256"}}}, "139809250166256": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}, {"nodeId": "139809250166480"}]}}, "139809250166480": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250166032"}, {"nodeId": "139809250722560"}]}}, "139809250166032": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288143584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233956064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}}, "139809233956064": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288144032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288144480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288144928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288145376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288145824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}}, "139809233954832": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288146272"}, {"nodeId": "139809288146720"}]}}, "139809288146272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "N"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809233956512"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, "139809233956512": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809233956400"}]}, {"nodeId": "N"}]}}, "139809233956400": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809288146720": {"type": "Function", "content": {"typeVars": [".-1.139809288146720"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": ".-1.139809288146720"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809233956848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, ".-1.139809288146720": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288146720", "variance": "INVARIANT"}}, "139809233956848": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809233956736"}]}, {"nodeId": ".-1.139809288146720"}]}}, "139809233956736": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809233955392": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288147168"}, {"nodeId": "139809288147616"}]}}, "139809288147168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809233957184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, "139809233957184": {"type": "Union", "content": {"items": [{"nodeId": "139809233957072"}, {"nodeId": "N"}]}}, "139809233957072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250169504"}}}, "139809250169504": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250168608"}]}}, "139809250168608": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250165808"}, {"nodeId": "139809250167712"}, {"nodeId": "139809250722560"}]}}, "139809250165808": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250167712": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288147616": {"type": "Function", "content": {"typeVars": [".-1.139809288147616"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288147616"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809233957520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, ".-1.139809288147616": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288147616", "variance": "INVARIANT"}}, "139809233957520": {"type": "Union", "content": {"items": [{"nodeId": "139809233956960"}, {"nodeId": ".-1.139809288147616"}]}}, "139809233956960": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250169504"}}}, "139809288148064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}}, "139809288148512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}}, "139809233956176": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288148960"}, {"nodeId": "139809288149408"}]}}, "139809288148960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809233957296"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "139809233957296": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288149408": {"type": "Function", "content": {"typeVars": [".-1.139809288149408"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": ".-1.139809288149408"}], "returnType": {"nodeId": "139809233957408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139809288149408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288149408", "variance": "INVARIANT"}}, "139809233957408": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288149408"}]}}, "139809233957744": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288149856"}, {"nodeId": "139809288150304"}]}}, "139809288149856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809233957968"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "139809233957968": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288150304": {"type": "Function", "content": {"typeVars": [".-1.139809288150304"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": ".-1.139809288150304"}], "returnType": {"nodeId": "139809233958080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139809288150304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288150304", "variance": "INVARIANT"}}, "139809233958080": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288150304"}]}}, "139809288150752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}}, "139809233957632": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288151200"}, {"nodeId": "139809288151648"}]}}, "139809288151200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809233958304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233958304": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288151648": {"type": "Function", "content": {"typeVars": [".-1.139809288151648"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": ".-1.139809288151648"}], "returnType": {"nodeId": "139809233958416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139809288151648": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288151648", "variance": "INVARIANT"}}, "139809233958416": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288151648"}]}}, "139809233957856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288152096"}, {"nodeId": "139809288152544"}]}}, "139809288152096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809233958640"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "139809233958640": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288152544": {"type": "Function", "content": {"typeVars": [".-1.139809288152544"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": ".-1.139809288152544"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809233958752"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139809288152544": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288152544", "variance": "INVARIANT"}}, "139809233958752": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288152544"}]}}, "139809288152992": {"type": "Function", "content": {"typeVars": [".0.139809288152992"], "argTypes": [{"nodeId": ".0.139809288152992"}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": ".0.139809288152992"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809288152992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250310656"}, "def": "139809288152992", "variance": "INVARIANT"}}, "139809288153440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809233958976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233958976": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288153888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809233959088"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "139809233959088": {"type": "Union", "content": {"items": [{"nodeId": "139809250309600"}, {"nodeId": "N"}]}}, "139809288154336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809338527936"}, {"nodeId": "139809233959200"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}}, "139809233959200": {"type": "Union", "content": {"items": [{"nodeId": "139809250309600"}, {"nodeId": "N"}]}}, "139809288154784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288155232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}, {"nodeId": "139809233959312"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "value", "header", "requote", "charset", "language", "replace"]}}, "139809233959312": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288155680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250309600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "139809288156128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233959424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809233959424": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288156576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809233959760"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233959760": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809233959536"}]}}, "139809233959536": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809250311008": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288157024"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288157472"}, "name": "get_body"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288157920"}, "name": "iter_attachments"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288158368"}, "name": "iter_parts"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288158816"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288274208"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288274656"}, "name": "make_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288275104"}, "name": "make_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288275552"}, "name": "make_mixed"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288276000"}, "name": "add_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288276448"}, "name": "add_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288276896"}, "name": "add_attachment"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288277344"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288277792"}, "name": "clear_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288278240"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288278688"}, "name": "is_attachment"}}], "typeVars": [], "bases": [{"nodeId": "139809250310656"}], "isAbstract": false}}, "139809288157024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "139809233959872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "139809233959872": {"type": "Union", "content": {"items": [{"nodeId": "139809250309600"}, {"nodeId": "N"}]}}, "139809288157472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809233959984"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}}, "139809233959984": {"type": "Union", "content": {"items": [{"nodeId": "139809250310656"}, {"nodeId": "N"}]}}, "139809288157920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250310656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288158368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250310656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288158816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "A"}, {"nodeId": "139809233960208"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139809233960208": {"type": "Union", "content": {"items": [{"nodeId": "139809254745088"}, {"nodeId": "N"}]}}, "139809254745088": {"type": "Concrete", "content": {"module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275984160"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275984608"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275985056"}, "name": "add_get_handler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275985504"}, "name": "add_set_handler"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809275984160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745088"}, {"nodeId": "139809250310656"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}}, "139809275984608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745088"}, {"nodeId": "139809250310656"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "obj", "args", "kw"]}}, "139809275985056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745088"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233560384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}}, "139809233560384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809275985504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745088"}, {"nodeId": "139809338538144"}, {"nodeId": "139809233560160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}}, "139809233560160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809288274208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "A"}, {"nodeId": "139809233960656"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139809233960656": {"type": "Union", "content": {"items": [{"nodeId": "139809254745088"}, {"nodeId": "N"}]}}, "139809288274656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "139809234157632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "139809234157632": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288275104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "139809234157744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "139809234157744": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288275552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "139809234157856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "139809234157856": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288276000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "A"}, {"nodeId": "139809234158080"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139809234158080": {"type": "Union", "content": {"items": [{"nodeId": "139809254745088"}, {"nodeId": "N"}]}}, "139809288276448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "A"}, {"nodeId": "139809234158416"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139809234158416": {"type": "Union", "content": {"items": [{"nodeId": "139809254745088"}, {"nodeId": "N"}]}}, "139809288276896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "A"}, {"nodeId": "139809234158752"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139809234158752": {"type": "Union", "content": {"items": [{"nodeId": "139809254745088"}, {"nodeId": "N"}]}}, "139809288277344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288277792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288278240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "139809338527936"}, {"nodeId": "139809234158976"}, {"nodeId": "139809234159088"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "139809234158976": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809234159088": {"type": "Union", "content": {"items": [{"nodeId": "139809250309600"}, {"nodeId": "N"}]}}, "139809288278688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250311360": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250311008"}], "isAbstract": false}}, "139809242115136": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139809242114432"}], "isAbstract": false}}, "139809242115840": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139809242115488"}, {"nodeId": "139809242114784"}], "isAbstract": false}}, "139809242116192": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139809242115488"}, {"nodeId": "139809242115136"}], "isAbstract": false}}, "139809262745056": {"type": "Concrete", "content": {"module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288421664"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288422560"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288423008"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288423456"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288423904"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288424352"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288424800"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288425248"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288425696"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288426144"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238389184"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139809262745056"}], "bases": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".1.139809262745056"}]}], "isAbstract": false}}, ".1.139809262745056": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262745056", "variance": "INVARIANT"}}, "139809288421664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, {"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".1.139809262745056"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "data", "encodekey", "decodekey", "encodevalue", "decodevalue"]}}, "139809288422560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, {"nodeId": ".1.139809262745056"}, {"nodeId": ".1.139809262745056"}], "returnType": {"nodeId": ".1.139809262745056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}}, "139809288423008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".1.139809262745056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288423456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, {"nodeId": ".1.139809262745056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288423904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, {"nodeId": ".1.139809262745056"}], "returnType": {"nodeId": ".1.139809262745056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288424352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, {"nodeId": ".1.139809262745056"}, {"nodeId": ".1.139809262745056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809288424800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809262745056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809288425248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809288425696": {"type": "Function", "content": {"typeVars": [".-1.139809288425696", ".-2.139809288425696"], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809288425696"}, {"nodeId": ".-2.139809288425696"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809238394448"}, {"nodeId": "139809238394560"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809288425696": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288425696", "variance": "INVARIANT"}}, ".-2.139809288425696": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288425696", "variance": "INVARIANT"}}, "139809238394448": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".-1.139809288425696"}]}}, "139809238394560": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".-2.139809288425696"}]}}, "139809288426144": {"type": "Function", "content": {"typeVars": [".-1.139809288426144", ".-2.139809288426144"], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809288426144"}, {"nodeId": ".-2.139809288426144"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809238394672"}, {"nodeId": "139809238394784"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809288426144": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288426144", "variance": "INVARIANT"}}, ".-2.139809288426144": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288426144", "variance": "INVARIANT"}}, "139809238394672": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".-1.139809288426144"}]}}, "139809238394784": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".-2.139809288426144"}]}}, "139809238389184": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288426592"}, {"nodeId": "139809288427040"}]}}, "139809288426592": {"type": "Function", "content": {"typeVars": [".0.139809288426592"], "argTypes": [{"nodeId": ".0.139809288426592"}, {"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".1.139809262745056"}]}], "returnType": {"nodeId": ".0.139809288426592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809288426592": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, "def": "139809288426592", "variance": "INVARIANT"}}, "139809288427040": {"type": "Function", "content": {"typeVars": [".0.139809288427040"], "argTypes": [{"nodeId": ".0.139809288427040"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809238395232"}]}], "returnType": {"nodeId": ".0.139809288427040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809288427040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, "def": "139809288427040", "variance": "INVARIANT"}}, "139809238395232": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".1.139809262745056"}]}}, "139809241937376": {"type": "Concrete", "content": {"module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809204652960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204321888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204320992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204320096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204319872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204317856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204319424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204319648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204318976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204319200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204318528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204318752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204318080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204318304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204313824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204316288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204316736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338539200"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}], "isAbstract": false}}, "139809204652960": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204321888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238395456"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238395456": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204320992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238395568"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238395568": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204320096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238395680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238395680": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204319872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238395792"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238395792": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204317856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238395904"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238395904": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204319424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396016"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396016": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204319648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396128"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396128": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204318976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396240"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396240": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204319200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396352"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396352": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204318528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396464"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396464": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204318752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396576"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396576": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204318080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396688"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396688": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204318304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396800"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396800": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204313824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396912"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396912": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204316288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238397024"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238397024": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204316736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238397136"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238397136": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809262745408": {"type": "Concrete", "content": {"module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204312032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204309344"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809279461408"}, "name": "inode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809279461856"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809279462304"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809279462752"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809279463200"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809279463648"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809279464096"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809262745408"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809262745408": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262745408", "variance": "INVARIANT"}}, "139809204312032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}], "returnType": {"nodeId": ".1.139809262745408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809204309344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}], "returnType": {"nodeId": ".1.139809262745408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809279461408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809279461856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139809279462304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139809279462752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809279463200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809238397584"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139809238397584": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242326832"}}}, "139809279463648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}], "returnType": {"nodeId": ".1.139809262745408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809279464096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139809242105632": {"type": "Concrete", "content": {"module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809204661248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204302368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204301248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204301472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204300800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204300576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204299904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204299680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204298336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204297664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204296992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204296320"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809204661248": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204302368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238397920"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238397920": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204301248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398032"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398032": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204301472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398144"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398144": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204300800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398256"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398256": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204300576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398368"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398368": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204299904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398480"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398480": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204299680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398592"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398592": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204298336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398704"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398704": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204297664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398816"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398816": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204296992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398928"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398928": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204296320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238399040"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238399040": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809242105984": {"type": "Concrete", "content": {"module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809204662928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204294752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204292960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204292736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204291840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204292288"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}], "isAbstract": false}}, "139809204662928": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204294752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238399600"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238399600": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204292960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238399712"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238399712": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204292736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238399824"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238399824": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204291840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238399936"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238399936": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204292288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238400048"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238400048": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242106336": {"type": "Concrete", "content": {"module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809204849680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204253664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204252320"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809204849680": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204253664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233394416"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233394416": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204252320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233394528"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233394528": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809242106688": {"type": "Concrete", "content": {"module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280037984"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280038432"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280038880"}, "name": "close"}}], "typeVars": [{"nodeId": ".1.139809242106688"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809242106688"}]}]}, {"nodeId": "139809254747904", "args": [{"nodeId": "139809242106688", "args": [{"nodeId": ".1.139809242106688"}]}]}], "isAbstract": false}}, ".1.139809242106688": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809242106688", "variance": "INVARIANT"}}, "139809280037984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242106688", "args": [{"nodeId": ".1.139809242106688"}]}], "returnType": {"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809242106688"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809280038432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242106688", "args": [{"nodeId": ".1.139809242106688"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139809280038880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242106688", "args": [{"nodeId": ".1.139809242106688"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809254747904": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284170336"}, "name": "__enter__"}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809192244416"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809254747904"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__enter__", "__exit__"]}}, ".1.139809254747904": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809254747904", "variance": "COVARIANT"}}, "139809284170336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254747904", "args": [{"nodeId": ".1.139809254747904"}]}], "returnType": {"nodeId": ".1.139809254747904"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809192244416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254747904", "args": [{"nodeId": ".1.139809254747904"}]}, {"nodeId": "139809234169168"}, {"nodeId": "139809234169280"}, {"nodeId": "139809234169392"}], "returnType": {"nodeId": "139809234169504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809234169168": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234169280": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234169392": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809234169504": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809242107040": {"type": "Concrete", "content": {"module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280169056"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280169504"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139809250297984"}], "isAbstract": false}}, "139809280169056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242107040"}, {"nodeId": "139809250297984"}, {"nodeId": "139809262741888", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}}, "139809262741888": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242319552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242326048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242137872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262873824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262873936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809237865120"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250394176"}, "name": "poll"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250394624"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250395072"}, "name": "communicate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250395520"}, "name": "send_signal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250395968"}, "name": "terminate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250396416"}, "name": "kill"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250396864"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250397312"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250397760"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809262741888"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809262741888": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262741888", "variance": "INVARIANT"}}, "139809242319552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809242137312": {"type": "Union", "content": {"items": [{"nodeId": "139809263664960"}, {"nodeId": "139809338535680", "args": [{"nodeId": "139809242136864"}]}]}}, "139809263664960": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809242136864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809242326048": {"type": "Union", "content": {"items": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809262741888"}]}, {"nodeId": "N"}]}}, "139809242137872": {"type": "Union", "content": {"items": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809262741888"}]}, {"nodeId": "N"}]}}, "139809262873824": {"type": "Union", "content": {"items": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809262741888"}]}, {"nodeId": "N"}]}}, "139809262873936": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "A"}]}}, "139809237865120": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809266887232"}, {"nodeId": "139809255088512"}, {"nodeId": "139809255088960"}, {"nodeId": "139809255089408"}, {"nodeId": "139809255089856"}, {"nodeId": "139809255090304"}]}}, "139809266887232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809238067104"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238067328"}, {"nodeId": "139809238067552"}, {"nodeId": "139809238067776"}, {"nodeId": "139809238068000"}, {"nodeId": "139809238068112"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809238068448"}, {"nodeId": "139809238068672"}, {"nodeId": "139809238068784"}, {"nodeId": "139809238069008"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338535328", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809238069120"}, {"nodeId": "139809250722560"}, {"nodeId": "139809238069232"}, {"nodeId": "139809238069344"}, {"nodeId": "139809238069456"}, {"nodeId": "139809238069680"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139809238067104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238067328": {"type": "Union", "content": {"items": [{"nodeId": "139809238067216"}, {"nodeId": "N"}]}}, "139809238067216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238067552": {"type": "Union", "content": {"items": [{"nodeId": "139809238067440"}, {"nodeId": "N"}]}}, "139809238067440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809262872368": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139809338538848"}, {"nodeId": "139809251070144", "args": [{"nodeId": "A"}]}]}}, "139809238067776": {"type": "Union", "content": {"items": [{"nodeId": "139809238067664"}, {"nodeId": "N"}]}}, "139809238067664": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238068000": {"type": "Union", "content": {"items": [{"nodeId": "139809238067888"}, {"nodeId": "N"}]}}, "139809238067888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238068112": {"type": "Union", "content": {"items": [{"nodeId": "139809266885664"}, {"nodeId": "N"}]}}, "139809266885664": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139809238068448": {"type": "Union", "content": {"items": [{"nodeId": "139809238068336"}, {"nodeId": "N"}]}}, "139809238068336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238068672": {"type": "Union", "content": {"items": [{"nodeId": "139809238068560"}, {"nodeId": "N"}]}}, "139809238068560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242138096"}}}, "139809242138096": {"type": "Union", "content": {"items": [{"nodeId": "139809338537088", "args": [{"nodeId": "139809250722912"}, {"nodeId": "139809242137648"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809242137200"}]}]}}, "139809242137648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809242137200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238068784": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238069008": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809238069120": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238069232": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238069344": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238069456": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238069680": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809238069568"}]}, {"nodeId": "N"}]}}, "139809238069568": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809255088512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809238069792"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238070016"}, {"nodeId": "139809238070240"}, {"nodeId": "139809238070464"}, {"nodeId": "139809238070688"}, {"nodeId": "139809238070800"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809238071136"}, {"nodeId": "139809238071360"}, {"nodeId": "139809238071472"}, {"nodeId": "139809238071696"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338535328", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809238071808"}, {"nodeId": "139809238071920"}, {"nodeId": "139809250722560"}, {"nodeId": "139809238072032"}, {"nodeId": "139809238072144"}, {"nodeId": "139809238072368"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139809238069792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238070016": {"type": "Union", "content": {"items": [{"nodeId": "139809238069904"}, {"nodeId": "N"}]}}, "139809238069904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238070240": {"type": "Union", "content": {"items": [{"nodeId": "139809238070128"}, {"nodeId": "N"}]}}, "139809238070128": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238070464": {"type": "Union", "content": {"items": [{"nodeId": "139809238070352"}, {"nodeId": "N"}]}}, "139809238070352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238070688": {"type": "Union", "content": {"items": [{"nodeId": "139809238070576"}, {"nodeId": "N"}]}}, "139809238070576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238070800": {"type": "Union", "content": {"items": [{"nodeId": "139809266887456"}, {"nodeId": "N"}]}}, "139809266887456": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139809238071136": {"type": "Union", "content": {"items": [{"nodeId": "139809238071024"}, {"nodeId": "N"}]}}, "139809238071024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238071360": {"type": "Union", "content": {"items": [{"nodeId": "139809238071248"}, {"nodeId": "N"}]}}, "139809238071248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242138096"}}}, "139809238071472": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238071696": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809238071808": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238071920": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238072032": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238072144": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238072368": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809238072256"}]}, {"nodeId": "N"}]}}, "139809238072256": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809255088960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809238072480"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238072704"}, {"nodeId": "139809238072928"}, {"nodeId": "139809238073152"}, {"nodeId": "139809238106288"}, {"nodeId": "139809238106400"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809238106736"}, {"nodeId": "139809238106960"}, {"nodeId": "0"}, {"nodeId": "139809238107296"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338535328", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809238107408"}, {"nodeId": "139809238107520"}, {"nodeId": "139809238107632"}, {"nodeId": "139809238107744"}, {"nodeId": "139809238107856"}, {"nodeId": "139809238108080"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139809238072480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238072704": {"type": "Union", "content": {"items": [{"nodeId": "139809238072592"}, {"nodeId": "N"}]}}, "139809238072592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238072928": {"type": "Union", "content": {"items": [{"nodeId": "139809238072816"}, {"nodeId": "N"}]}}, "139809238072816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238073152": {"type": "Union", "content": {"items": [{"nodeId": "139809238073040"}, {"nodeId": "N"}]}}, "139809238073040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238106288": {"type": "Union", "content": {"items": [{"nodeId": "139809238106176"}, {"nodeId": "N"}]}}, "139809238106176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238106400": {"type": "Union", "content": {"items": [{"nodeId": "139809266887008"}, {"nodeId": "N"}]}}, "139809266887008": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139809238106736": {"type": "Union", "content": {"items": [{"nodeId": "139809238106624"}, {"nodeId": "N"}]}}, "139809238106624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238106960": {"type": "Union", "content": {"items": [{"nodeId": "139809238106848"}, {"nodeId": "N"}]}}, "139809238106848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242138096"}}}, "139809238107296": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809238107408": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238107520": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238107632": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238107744": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238107856": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238108080": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809238107968"}]}, {"nodeId": "N"}]}}, "139809238107968": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809255089408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809238108192"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238108416"}, {"nodeId": "139809238108640"}, {"nodeId": "139809238108864"}, {"nodeId": "139809238109088"}, {"nodeId": "139809238109200"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809238109536"}, {"nodeId": "139809238109760"}, {"nodeId": "139809238109872"}, {"nodeId": "139809238110096"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338535328", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "0"}, {"nodeId": "139809238110320"}, {"nodeId": "139809238110432"}, {"nodeId": "139809238110544"}, {"nodeId": "139809238110656"}, {"nodeId": "139809238110880"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139809238108192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238108416": {"type": "Union", "content": {"items": [{"nodeId": "139809238108304"}, {"nodeId": "N"}]}}, "139809238108304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238108640": {"type": "Union", "content": {"items": [{"nodeId": "139809238108528"}, {"nodeId": "N"}]}}, "139809238108528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238108864": {"type": "Union", "content": {"items": [{"nodeId": "139809238108752"}, {"nodeId": "N"}]}}, "139809238108752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238109088": {"type": "Union", "content": {"items": [{"nodeId": "139809238108976"}, {"nodeId": "N"}]}}, "139809238108976": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238109200": {"type": "Union", "content": {"items": [{"nodeId": "139809266886560"}, {"nodeId": "N"}]}}, "139809266886560": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139809238109536": {"type": "Union", "content": {"items": [{"nodeId": "139809238109424"}, {"nodeId": "N"}]}}, "139809238109424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238109760": {"type": "Union", "content": {"items": [{"nodeId": "139809238109648"}, {"nodeId": "N"}]}}, "139809238109648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242138096"}}}, "139809238109872": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238110096": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809238110320": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238110432": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238110544": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238110656": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238110880": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809238110768"}]}, {"nodeId": "N"}]}}, "139809238110768": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809255089856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809238110992"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238111216"}, {"nodeId": "139809238111440"}, {"nodeId": "139809238111664"}, {"nodeId": "139809238111888"}, {"nodeId": "139809238112000"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809238112336"}, {"nodeId": "139809238112560"}, {"nodeId": "139809238112896"}, {"nodeId": "139809238113008"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338535328", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809238113344"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "139809238113232"}, {"nodeId": "139809238113456"}, {"nodeId": "139809238113680"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139809238110992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238111216": {"type": "Union", "content": {"items": [{"nodeId": "139809238111104"}, {"nodeId": "N"}]}}, "139809238111104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238111440": {"type": "Union", "content": {"items": [{"nodeId": "139809238111328"}, {"nodeId": "N"}]}}, "139809238111328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238111664": {"type": "Union", "content": {"items": [{"nodeId": "139809238111552"}, {"nodeId": "N"}]}}, "139809238111552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238111888": {"type": "Union", "content": {"items": [{"nodeId": "139809238111776"}, {"nodeId": "N"}]}}, "139809238111776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238112000": {"type": "Union", "content": {"items": [{"nodeId": "139809266886336"}, {"nodeId": "N"}]}}, "139809266886336": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139809238112336": {"type": "Union", "content": {"items": [{"nodeId": "139809238112224"}, {"nodeId": "N"}]}}, "139809238112224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238112560": {"type": "Union", "content": {"items": [{"nodeId": "139809238112448"}, {"nodeId": "N"}]}}, "139809238112448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242138096"}}}, "139809238112896": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809238113008": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809238113344": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809238113232": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238113456": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238113680": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809238113568"}]}, {"nodeId": "N"}]}}, "139809238113568": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809255090304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": "A"}]}, {"nodeId": "139809238113904"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238114128"}, {"nodeId": "139809238114352"}, {"nodeId": "139809238114576"}, {"nodeId": "139809238114800"}, {"nodeId": "139809238114912"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809238115248"}, {"nodeId": "139809238115472"}, {"nodeId": "139809238115584"}, {"nodeId": "139809238115808"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338535328", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809238115920"}, {"nodeId": "139809238116032"}, {"nodeId": "139809238116144"}, {"nodeId": "139809238116256"}, {"nodeId": "139809238116368"}, {"nodeId": "139809238116592"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139809238113904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238114128": {"type": "Union", "content": {"items": [{"nodeId": "139809238114016"}, {"nodeId": "N"}]}}, "139809238114016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238114352": {"type": "Union", "content": {"items": [{"nodeId": "139809238114240"}, {"nodeId": "N"}]}}, "139809238114240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238114576": {"type": "Union", "content": {"items": [{"nodeId": "139809238114464"}, {"nodeId": "N"}]}}, "139809238114464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238114800": {"type": "Union", "content": {"items": [{"nodeId": "139809238114688"}, {"nodeId": "N"}]}}, "139809238114688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238114912": {"type": "Union", "content": {"items": [{"nodeId": "139809266885440"}, {"nodeId": "N"}]}}, "139809266885440": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139809238115248": {"type": "Union", "content": {"items": [{"nodeId": "139809238115136"}, {"nodeId": "N"}]}}, "139809238115136": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238115472": {"type": "Union", "content": {"items": [{"nodeId": "139809238115360"}, {"nodeId": "N"}]}}, "139809238115360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242138096"}}}, "139809238115584": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238115808": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809238115920": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238116032": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238116144": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238116256": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238116368": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238116592": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809238116480"}]}, {"nodeId": "N"}]}}, "139809238116480": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809250394176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}], "returnType": {"nodeId": "139809238116704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238116704": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809250394624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}, {"nodeId": "139809238116816"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "139809238116816": {"type": "Union", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "N"}]}}, "139809250395072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}, {"nodeId": "139809238116928"}, {"nodeId": "139809238117040"}], "returnType": {"nodeId": "139809238117264"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}}, "139809238116928": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262741888"}, {"nodeId": "N"}]}}, "139809238117040": {"type": "Union", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "N"}]}}, "139809238117264": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809262741888"}, {"nodeId": ".1.139809262741888"}]}}, "139809250395520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}}, "139809250395968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250396416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250396864": {"type": "Function", "content": {"typeVars": [".0.139809250396864"], "argTypes": [{"nodeId": ".0.139809250396864"}], "returnType": {"nodeId": ".0.139809250396864"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809250396864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}, "def": "139809250396864", "variance": "INVARIANT"}}, "139809250397312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}, {"nodeId": "139809238117488"}, {"nodeId": "139809238117600"}, {"nodeId": "139809238117712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809238117488": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809238117600": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809238117712": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809250397760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139809280169504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242107040"}], "returnType": {"nodeId": "139809233522576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233522576": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809242107392": {"type": "Concrete", "content": {"module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809204862672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204466208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204467104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204467328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204467552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204467776"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338539200"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338539200"}]}], "isAbstract": false}}, "139809204862672": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204466208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233524144"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233524144": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204467104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233523584"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233523584": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204467328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233523920"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233523920": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204467552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233524256"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233524256": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204467776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233524368"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233524368": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809242107744": {"type": "Concrete", "content": {"module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809199835392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809199849536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809199850432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809199850656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809199850880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809199851104"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809199835392": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809199849536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233525824"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233525824": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809199850432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233526160"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233526160": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809199850656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233526496"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233526496": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809199850880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233526608"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233526608": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809199851104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233526720"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233526720": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809242108096": {"type": "Concrete", "content": {"module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809199837296"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280335584"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809199852896"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809199837296": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809280335584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809233530416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}}, "139809233530416": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}]}}, "139809199852896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233530192"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233530192": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}]}}, "139809242104928": {"type": "Concrete", "content": {"module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "content": {"name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250308896"}], "isAbstract": false}}, "139809250308896": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258638016"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258638464"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258638912"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258639360"}, "name": "__xor__"}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191451936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191454624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191455744"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338538848"}, {"nodeId": "139809250308544"}], "isAbstract": false}}, "139809258638016": {"type": "Function", "content": {"typeVars": [".0.139809258638016"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809258638016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.139809258638016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308896"}, "def": "139809258638016", "variance": "INVARIANT"}}, "139809258638464": {"type": "Function", "content": {"typeVars": [".0.139809258638464"], "argTypes": [{"nodeId": ".0.139809258638464"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809258638464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809258638464": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308896"}, "def": "139809258638464", "variance": "INVARIANT"}}, "139809258638912": {"type": "Function", "content": {"typeVars": [".0.139809258638912"], "argTypes": [{"nodeId": ".0.139809258638912"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809258638912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809258638912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308896"}, "def": "139809258638912", "variance": "INVARIANT"}}, "139809258639360": {"type": "Function", "content": {"typeVars": [".0.139809258639360"], "argTypes": [{"nodeId": ".0.139809258639360"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809258639360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809258639360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308896"}, "def": "139809258639360", "variance": "INVARIANT"}}, "139809191451936": {"type": "Function", "content": {"typeVars": [".0.139809191451936"], "argTypes": [{"nodeId": ".0.139809191451936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809191451936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809191451936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308896"}, "def": "139809191451936", "variance": "INVARIANT"}}, "139809191454624": {"type": "Function", "content": {"typeVars": [".0.139809191454624"], "argTypes": [{"nodeId": ".0.139809191454624"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809191454624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809191454624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308896"}, "def": "139809191454624", "variance": "INVARIANT"}}, "139809191455744": {"type": "Function", "content": {"typeVars": [".0.139809191455744"], "argTypes": [{"nodeId": ".0.139809191455744"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809191455744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809191455744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308896"}, "def": "139809191455744", "variance": "INVARIANT"}}, "139809250308544": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250170624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809196571808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809191445216"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258759424"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258759872"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258760320"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258760768"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258761216"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258761664"}, "name": "__invert__"}}], "typeVars": [], "bases": [{"nodeId": "139809250307840"}], "isAbstract": false}}, "139809250170624": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809196571808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250308544"}], "returnType": {"nodeId": "139809233950576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233950576": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809191445216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250308544"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809258759424": {"type": "Function", "content": {"typeVars": [".0.139809258759424"], "argTypes": [{"nodeId": ".0.139809258759424"}, {"nodeId": ".0.139809258759424"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809258759424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308544"}, "def": "139809258759424", "variance": "INVARIANT"}}, "139809258759872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250308544"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809258760320": {"type": "Function", "content": {"typeVars": [".0.139809258760320"], "argTypes": [{"nodeId": ".0.139809258760320"}, {"nodeId": ".0.139809258760320"}], "returnType": {"nodeId": ".0.139809258760320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809258760320": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308544"}, "def": "139809258760320", "variance": "INVARIANT"}}, "139809258760768": {"type": "Function", "content": {"typeVars": [".0.139809258760768"], "argTypes": [{"nodeId": ".0.139809258760768"}, {"nodeId": ".0.139809258760768"}], "returnType": {"nodeId": ".0.139809258760768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809258760768": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308544"}, "def": "139809258760768", "variance": "INVARIANT"}}, "139809258761216": {"type": "Function", "content": {"typeVars": [".0.139809258761216"], "argTypes": [{"nodeId": ".0.139809258761216"}, {"nodeId": ".0.139809258761216"}], "returnType": {"nodeId": ".0.139809258761216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809258761216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308544"}, "def": "139809258761216", "variance": "INVARIANT"}}, "139809258761664": {"type": "Function", "content": {"typeVars": [".0.139809258761664"], "argTypes": [{"nodeId": ".0.139809258761664"}], "returnType": {"nodeId": ".0.139809258761664"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809258761664": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308544"}, "def": "139809258761664", "variance": "INVARIANT"}}, "139809250307840": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809196567328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809196568000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250170064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196568224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196568448"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258755392"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258755840"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258756288"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258756736"}, "name": "__reduce_ex__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809196567328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307840"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809196568000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250170064": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}]}}, "139809196568224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, "139809196568448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250724672", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}}, "139809258755392": {"type": "Function", "content": {"typeVars": [".0.139809258755392"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": ".0.139809258755392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.139809258755392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250307840"}, "def": "139809258755392", "variance": "INVARIANT"}}, "139809258755840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307840"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809258756288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307840"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}}, "139809258756736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307840"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}}, "139809254745792": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "_MISSING_TYPE", "members": [{"kind": "Variable", "content": {"name": "MISSING", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250309248"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250307840"}], "isAbstract": false}}, "139809250309248": {"type": "Concrete", "content": {"module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809191457312"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258640256"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139809250308896"}], "isAbstract": false}}, "139809191457312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809258640256": {"type": "Function", "content": {"typeVars": [".0.139809258640256"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139809258640256"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139809258640256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250309248"}, "def": "139809258640256", "variance": "INVARIANT"}}, "139809254746144": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "KW_ONLY", "members": [], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809254747200": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "FrozenInstanceError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250732416"}], "isAbstract": false}}, "139809254747552": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "InitVar", "members": [{"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284165856"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234165248"}, "items": [{"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809254747552"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809254747552": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809254747552", "variance": "INVARIANT"}}, "139809284165856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254747552", "args": [{"nodeId": ".1.139809254747552"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}}, "139809234165248": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809284166304"}, {"nodeId": "139809284166752"}]}}, "139809284166304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139809254747552", "args": [{"nodeId": ".1.139809254747552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "139809284166752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809254747552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "139809254748256": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809233566432"}, "name": "__aenter__"}}, {"kind": "Variable", "content": {"name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809192117856"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809254748256"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__aenter__", "__aexit__"]}}, ".1.139809254748256": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809254748256", "variance": "COVARIANT"}}, "139809233566432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254748256", "args": [{"nodeId": ".1.139809254748256"}]}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139809254748256"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809192117856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254748256", "args": [{"nodeId": ".1.139809254748256"}]}, {"nodeId": "139809234169728"}, {"nodeId": "139809234169840"}, {"nodeId": "139809234169952"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139809234170064"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "139809234169728": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234169840": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234169952": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809234170064": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809254748608": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284172128"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809284172128": {"type": "Function", "content": {"typeVars": [".-1.139809284172128"], "argTypes": [{"nodeId": "139809254748608"}, {"nodeId": ".-1.139809284172128"}], "returnType": {"nodeId": ".-1.139809284172128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.139809284172128": {"type": "TypeVar", "content": {"varName": "_F", "values": [], "upperBound": {"nodeId": "139809266691296"}, "def": "139809284172128", "variance": "INVARIANT"}}, "139809266691296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809254748960": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284172576"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809254748960"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809255095232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284173024"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139809254748960"}], "bases": [{"nodeId": "139809254747904", "args": [{"nodeId": ".1.139809254748960"}]}, {"nodeId": "139809254748608"}], "isAbstract": false}}, ".1.139809254748960": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809254748960", "variance": "COVARIANT"}}, "139809284172576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254748960", "args": [{"nodeId": ".1.139809254748960"}]}, {"nodeId": "139809234272320"}, {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "139809234272320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809254748960"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809255095232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809254748960"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809284173024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254748960", "args": [{"nodeId": ".1.139809254748960"}]}, {"nodeId": "139809234170624"}, {"nodeId": "139809234170736"}, {"nodeId": "139809234170848"}], "returnType": {"nodeId": "139809234170960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809234170624": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234170736": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234170848": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809234170960": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809254749312": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284174368"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809284174368": {"type": "Function", "content": {"typeVars": [".-1.139809284174368"], "argTypes": [{"nodeId": "139809254749312"}, {"nodeId": ".-1.139809284174368"}], "returnType": {"nodeId": ".-1.139809284174368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.139809284174368": {"type": "TypeVar", "content": {"varName": "_AF", "values": [], "upperBound": {"nodeId": "139809266687040"}, "def": "139809284174368", "variance": "INVARIANT"}}, "139809266687040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809254749664": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284174816"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809254749664"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266689056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809233566208"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.139809254749664"}], "bases": [{"nodeId": "139809254748256", "args": [{"nodeId": ".1.139809254749664"}]}, {"nodeId": "139809254749312"}], "isAbstract": false}}, ".1.139809254749664": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809254749664", "variance": "COVARIANT"}}, "139809284174816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254749664", "args": [{"nodeId": ".1.139809254749664"}]}, {"nodeId": "139809234273216"}, {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "139809234273216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338534272", "args": [{"nodeId": ".1.139809254749664"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809266689056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809254749664"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809233566208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254749664", "args": [{"nodeId": ".1.139809254749664"}]}, {"nodeId": "139809234171856"}, {"nodeId": "139809234171968"}, {"nodeId": "139809234172080"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139809234172192"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}}, "139809234171856": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234171968": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234172080": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809234172192": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809254750016": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284177056"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["close"]}}, "139809284177056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254750016"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809254750368": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284177504"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275363616"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139809254750368"}], "bases": [{"nodeId": "139809254747904", "args": [{"nodeId": ".1.139809254750368"}]}], "isAbstract": false}}, ".1.139809254750368": {"type": "TypeVar", "content": {"varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "139809254750016"}, "def": "139809254750368", "variance": "INVARIANT"}}, "139809284177504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254750368", "args": [{"nodeId": ".1.139809254750368"}]}, {"nodeId": ".1.139809254750368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "139809275363616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254750368", "args": [{"nodeId": ".1.139809254750368"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139809254750720": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275364064"}, "name": "aclose"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["aclose"]}}, "139809275364064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254750720"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809254751072": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275364512"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809234274560"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.139809254751072"}], "bases": [{"nodeId": "139809254748256", "args": [{"nodeId": ".1.139809254751072"}]}], "isAbstract": false}}, ".1.139809254751072": {"type": "TypeVar", "content": {"varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "139809254750720"}, "def": "139809254751072", "variance": "INVARIANT"}}, "139809275364512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254751072", "args": [{"nodeId": ".1.139809254751072"}]}, {"nodeId": ".1.139809254751072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "139809234274560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254751072", "args": [{"nodeId": ".1.139809254751072"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}}, "139809254751424": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275365408"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275365856"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139809254747904", "args": [{"nodeId": "N"}]}], "isAbstract": false}}, "139809275365408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254751424"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}}, "139809275365856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254751424"}, {"nodeId": "139809234172976"}, {"nodeId": "139809234173088"}, {"nodeId": "139809234173200"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809234172976": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234173088": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234173200": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809254751776": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275366304"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275366752"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139809254751776"}], "bases": [{"nodeId": "139809254747904", "args": [{"nodeId": ".1.139809254751776"}]}], "isAbstract": false}}, ".1.139809254751776": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "139809242149520"}, "def": "139809254751776", "variance": "INVARIANT"}}, "139809242149520": {"type": "Union", "content": {"items": [{"nodeId": "139809251070144", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809275366304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254751776", "args": [{"nodeId": ".1.139809254751776"}]}, {"nodeId": ".1.139809254751776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}}, "139809275366752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254751776", "args": [{"nodeId": ".1.139809254751776"}]}, {"nodeId": "139809234173312"}, {"nodeId": "139809234173424"}, {"nodeId": "139809234173536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809234173312": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234173424": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234173536": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809262977088": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.139809262977088"}], "bases": [{"nodeId": "139809254751776", "args": [{"nodeId": ".1.139809262977088"}]}], "isAbstract": false}}, ".1.139809262977088": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "139809242149520"}, "def": "139809262977088", "variance": "INVARIANT"}}, "139809262977440": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.139809262977440"}], "bases": [{"nodeId": "139809254751776", "args": [{"nodeId": ".1.139809262977440"}]}], "isAbstract": false}}, ".1.139809262977440": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "139809242149520"}, "def": "139809262977440", "variance": "INVARIANT"}}, "139809262977792": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275367200"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275367648"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275368096"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275368544"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275368992"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275369440"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275369888"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809275367200": {"type": "Function", "content": {"typeVars": [".-1.139809275367200"], "argTypes": [{"nodeId": "139809262977792"}, {"nodeId": "139809254747904", "args": [{"nodeId": ".-1.139809275367200"}]}], "returnType": {"nodeId": ".-1.139809275367200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.139809275367200": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809275367200", "variance": "INVARIANT"}}, "139809275367648": {"type": "Function", "content": {"typeVars": [".-1.139809275367648"], "argTypes": [{"nodeId": "139809262977792"}, {"nodeId": ".-1.139809275367648"}], "returnType": {"nodeId": ".-1.139809275367648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.139809275367648": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "139809242150640"}, "def": "139809275367648", "variance": "INVARIANT"}}, "139809242150640": {"type": "Union", "content": {"items": [{"nodeId": "139809254747904", "args": [{"nodeId": "A"}]}, {"nodeId": "139809242150080"}]}}, "139809242150080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809266686368"}}}, "139809266686368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809255226080"}, {"nodeId": "139809255226864"}, {"nodeId": "139809255227088"}], "returnType": {"nodeId": "139809255227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809255226080": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809255226864": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809255227088": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809255227200": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809275368096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262977792"}, {"nodeId": "139809234273888"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139809234274784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "139809234273888": {"type": "Function", "content": {"typeVars": [".-2.139809234273888"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139809234273888"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139809234273888": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809234273888", "variance": "INVARIANT"}}, "139809234274784": {"type": "Function", "content": {"typeVars": [".-2.139809234274784"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139809234274784"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139809234274784": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809234274784", "variance": "INVARIANT"}}, "139809275368544": {"type": "Function", "content": {"typeVars": [".0.139809275368544"], "argTypes": [{"nodeId": ".0.139809275368544"}], "returnType": {"nodeId": ".0.139809275368544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809275368544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262977792"}, "def": "139809275368544", "variance": "INVARIANT"}}, "139809275368992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262977792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275369440": {"type": "Function", "content": {"typeVars": [".0.139809275369440"], "argTypes": [{"nodeId": ".0.139809275369440"}], "returnType": {"nodeId": ".0.139809275369440"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275369440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262977792"}, "def": "139809275369440", "variance": "INVARIANT"}}, "139809275369888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262977792"}, {"nodeId": "139809234322144"}, {"nodeId": "139809234322256"}, {"nodeId": "139809234322368"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809234322144": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234322256": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234322368": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809262978144": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275370336"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275364960"}, "name": "enter_async_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275371232"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275371680"}, "name": "push_async_exit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275372128"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275372576"}, "name": "push_async_callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275373024"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275370784"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275373472"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275373920"}, "name": "__aexit__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809275370336": {"type": "Function", "content": {"typeVars": [".-1.139809275370336"], "argTypes": [{"nodeId": "139809262978144"}, {"nodeId": "139809254747904", "args": [{"nodeId": ".-1.139809275370336"}]}], "returnType": {"nodeId": ".-1.139809275370336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.139809275370336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809275370336", "variance": "INVARIANT"}}, "139809275364960": {"type": "Function", "content": {"typeVars": [".-1.139809275364960"], "argTypes": [{"nodeId": "139809262978144"}, {"nodeId": "139809254748256", "args": [{"nodeId": ".-1.139809275364960"}]}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.139809275364960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.139809275364960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809275364960", "variance": "INVARIANT"}}, "139809275371232": {"type": "Function", "content": {"typeVars": [".-1.139809275371232"], "argTypes": [{"nodeId": "139809262978144"}, {"nodeId": ".-1.139809275371232"}], "returnType": {"nodeId": ".-1.139809275371232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.139809275371232": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "139809242150640"}, "def": "139809275371232", "variance": "INVARIANT"}}, "139809275371680": {"type": "Function", "content": {"typeVars": [".-1.139809275371680"], "argTypes": [{"nodeId": "139809262978144"}, {"nodeId": ".-1.139809275371680"}], "returnType": {"nodeId": ".-1.139809275371680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.139809275371680": {"type": "TypeVar", "content": {"varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "139809242151200"}, "def": "139809275371680", "variance": "INVARIANT"}}, "139809242151200": {"type": "Union", "content": {"items": [{"nodeId": "139809254748256", "args": [{"nodeId": "A"}]}, {"nodeId": "139809242151424"}]}}, "139809242151424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809266688832"}}}, "139809266688832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809255222720"}, {"nodeId": "139809255222048"}, {"nodeId": "139809255223840"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": "139809254796288"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809255222720": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809255222048": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809255223840": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809254796288": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809275372128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978144"}, {"nodeId": "139809234274336"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139809234275232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "139809234274336": {"type": "Function", "content": {"typeVars": [".-2.139809234274336"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139809234274336"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139809234274336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809234274336", "variance": "INVARIANT"}}, "139809234275232": {"type": "Function", "content": {"typeVars": [".-2.139809234275232"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139809234275232"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139809234275232": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809234275232", "variance": "INVARIANT"}}, "139809275372576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978144"}, {"nodeId": "139809234275008"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139809234275680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "139809234275008": {"type": "Function", "content": {"typeVars": [".-2.139809234275008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".-2.139809234275008"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139809234275008": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809234275008", "variance": "INVARIANT"}}, "139809234275680": {"type": "Function", "content": {"typeVars": [".-2.139809234275680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".-2.139809234275680"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139809234275680": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809234275680", "variance": "INVARIANT"}}, "139809275373024": {"type": "Function", "content": {"typeVars": [".0.139809275373024"], "argTypes": [{"nodeId": ".0.139809275373024"}], "returnType": {"nodeId": ".0.139809275373024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809275373024": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262978144"}, "def": "139809275373024", "variance": "INVARIANT"}}, "139809275370784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978144"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275373472": {"type": "Function", "content": {"typeVars": [".0.139809275373472"], "argTypes": [{"nodeId": ".0.139809275373472"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".0.139809275373472"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809275373472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262978144"}, "def": "139809275373472", "variance": "INVARIANT"}}, "139809275373920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978144"}, {"nodeId": "139809234324496"}, {"nodeId": "139809234324608"}, {"nodeId": "139809234324720"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139809338527936"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "139809234324496": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234324608": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234324720": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809262978496": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139809262978496"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234324384"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275375712"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275376160"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809234275456"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809234276352"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.139809262978496"}], "bases": [{"nodeId": "139809254747904", "args": [{"nodeId": ".1.139809262978496"}]}, {"nodeId": "139809254748256", "args": [{"nodeId": ".1.139809262978496"}]}], "isAbstract": false}}, ".1.139809262978496": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262978496", "variance": "INVARIANT"}}, "139809234324384": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809275374368"}, {"nodeId": "139809275374816"}]}}, "139809275374368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978496", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}}, "139809275374816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978496", "args": [{"nodeId": ".1.139809262978496"}]}, {"nodeId": ".1.139809262978496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}}, "139809275375712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978496", "args": [{"nodeId": ".1.139809262978496"}]}], "returnType": {"nodeId": ".1.139809262978496"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809275376160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978496", "args": [{"nodeId": ".1.139809262978496"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139809234275456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978496", "args": [{"nodeId": ".1.139809262978496"}]}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139809262978496"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809234276352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978496", "args": [{"nodeId": ".1.139809262978496"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}}, "139809262979904": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275496480"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275496928"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275497376"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["close", "seek", "write"]}}, "139809275496480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262979904"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809275496928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262979904"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809275497376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262979904"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262980256": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275497824"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275498272"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275498720"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["close", "read", "seek"]}}, "139809275497824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262980256"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809275498272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262980256"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809275498720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262980256"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242111968": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "139809262979904"}, {"nodeId": "139809262980256"}], "protocolMembers": ["close", "read", "seek", "write"]}}, "139809262980608": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275499168"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, "139809275499168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262980608"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809229426688"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139809229426688": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}]}}, "139809262980960": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275499616"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, "139809275499616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262980960"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809229426912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139809229426912": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809262981312": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275500064"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, "139809275500064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262981312"}, {"nodeId": "139809262980256"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809242113728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139809242113728": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262980256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275720672"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275721120"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275721568"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275722016"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275722464"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275722912"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275723360"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275904288"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275904736"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275905184"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139809262982720"}], "isAbstract": false}}, "139809275720672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}, {"nodeId": "139809262980256"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139809275721120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}}, "139809275721568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}, {"nodeId": "139809229433072"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}}, "139809229433072": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275722016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}, {"nodeId": "139809229433184"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}}, "139809229433184": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275722464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275722912": {"type": "Function", "content": {"typeVars": [".0.139809275722912"], "argTypes": [{"nodeId": ".0.139809275722912"}], "returnType": {"nodeId": ".0.139809275722912"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275722912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242113728"}, "def": "139809275722912", "variance": "INVARIANT"}}, "139809275723360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}, {"nodeId": "139809229433408"}, {"nodeId": "139809229433520"}, {"nodeId": "139809229433632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809229433408": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809229433520": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809229433632": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809275904288": {"type": "Function", "content": {"typeVars": [".0.139809275904288"], "argTypes": [{"nodeId": ".0.139809275904288"}], "returnType": {"nodeId": ".0.139809275904288"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275904288": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242113728"}, "def": "139809275904288", "variance": "INVARIANT"}}, "139809275904736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275905184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}, {"nodeId": "139809250722560"}, {"nodeId": "139809234278368"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809234278368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809262982720": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275709472"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275709920"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809275709472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262982720"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809229430944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139809229430944": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}]}}, "139809275709920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262982720"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809229431168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139809229431168": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809262981664": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275500512"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, "139809275500512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262981664"}, {"nodeId": "139809262979904"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809242113376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139809242113376": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262979904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275717536"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275717984"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275718432"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275718880"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275719328"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275719776"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275720224"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139809262982720"}], "isAbstract": false}}, "139809275717536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113376"}, {"nodeId": "139809262979904"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139809275717984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113376"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}}, "139809275718432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113376"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "139809275718880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275719328": {"type": "Function", "content": {"typeVars": [".0.139809275719328"], "argTypes": [{"nodeId": ".0.139809275719328"}], "returnType": {"nodeId": ".0.139809275719328"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275719328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242113376"}, "def": "139809275719328", "variance": "INVARIANT"}}, "139809275719776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113376"}, {"nodeId": "139809229432512"}, {"nodeId": "139809229432624"}, {"nodeId": "139809229432736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809229432512": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809229432624": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809229432736": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809275720224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113376"}, {"nodeId": "139809250722560"}, {"nodeId": "139809234277920"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809234277920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809262982016": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275500960"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, "139809275500960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262982016"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809262983072"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139809262983072": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275710368"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809183284384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275711264"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275711712"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275712160"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": true}}, "139809275710368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983072"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139809183284384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983072"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139809275711264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275711712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983072"}], "returnType": {"nodeId": "139809229431280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229431280": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809275712160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983072"}, {"nodeId": "139809229431392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139809229431392": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809262982368": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275501408"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, "139809275501408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262982368"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809262983424"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139809242112320": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183377312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183374176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183373952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183373056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183373504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183371712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275504544"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}], "isAbstract": false}}, "139809183377312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809229427136"}], "returnType": {"nodeId": "139809262980608"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229427136": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}]}}, "139809183374176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809229427248"}], "returnType": {"nodeId": "139809262980960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229427248": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}]}}, "139809183373952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809229427360"}], "returnType": {"nodeId": "139809262981312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229427360": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}]}}, "139809183373056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809229427472"}], "returnType": {"nodeId": "139809262981664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229427472": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}]}}, "139809183373504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809229427584"}], "returnType": {"nodeId": "139809262982016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229427584": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}]}}, "139809183371712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809229427696"}], "returnType": {"nodeId": "139809262982368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229427696": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}]}}, "139809275504544": {"type": "Function", "content": {"typeVars": [".0.139809275504544"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809229427920"}, {"nodeId": "139809229428032"}, {"nodeId": "139809229428144"}, {"nodeId": "139809229428256"}, {"nodeId": "139809229428368"}, {"nodeId": "139809229428480"}], "returnType": {"nodeId": ".0.139809275504544"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name", "_is_text_encoding"]}}, "139809229427920": {"type": "Union", "content": {"items": [{"nodeId": "139809262981312"}, {"nodeId": "N"}]}}, "139809229428032": {"type": "Union", "content": {"items": [{"nodeId": "139809262981664"}, {"nodeId": "N"}]}}, "139809229428144": {"type": "Union", "content": {"items": [{"nodeId": "139809262982016"}, {"nodeId": "N"}]}}, "139809229428256": {"type": "Union", "content": {"items": [{"nodeId": "139809262982368"}, {"nodeId": "N"}]}}, "139809229428368": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809229428480": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, ".0.139809275504544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809229426464"}, "def": "139809275504544", "variance": "INVARIANT"}}, "139809229426464": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}]}}, "139809242112672": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275714848"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809183282592"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275715744"}, "name": "encode"}}], "typeVars": [], "bases": [{"nodeId": "139809262983072"}], "isAbstract": true}}, "139809275714848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242112672"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139809183282592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242112672"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809229432064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "139809229432064": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}]}}, "139809275715744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242112672"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139809242113024": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722912"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275716192"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809183281472"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275717088"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "139809262983424"}], "isAbstract": true}}, "139809275716192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113024"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139809183281472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113024"}, {"nodeId": "139809251081408"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809229432288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "139809229432288": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809275717088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113024"}, {"nodeId": "139809251081408"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139809242114080": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242111968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275905632"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275906080"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275906528"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275906976"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275907424"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275907872"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275908320"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275908768"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275909216"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275909664"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275910112"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275910560"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275911008"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275911456"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275911904"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275912352"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275912800"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275913248"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275913696"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275914144"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275914592"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275915040"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "139809251070848"}], "isAbstract": false}}, "139809275905632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809242111968"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}}, "139809275906080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139809275906528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809229433968"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139809229433968": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275906976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809229434080"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "139809229434080": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275907424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275907872": {"type": "Function", "content": {"typeVars": [".0.139809275907872"], "argTypes": [{"nodeId": ".0.139809275907872"}], "returnType": {"nodeId": ".0.139809275907872"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275907872": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114080"}, "def": "139809275907872", "variance": "INVARIANT"}}, "139809275908320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "139809275908768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "139809275909216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275909664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "139809275910112": {"type": "Function", "content": {"typeVars": [".0.139809275910112"], "argTypes": [{"nodeId": ".0.139809275910112"}], "returnType": {"nodeId": ".0.139809275910112"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275910112": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114080"}, "def": "139809275910112", "variance": "INVARIANT"}}, "139809275910560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809229434304"}, {"nodeId": "139809229434416"}, {"nodeId": "139809229434528"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809229434304": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809229434416": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809229434528": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809275911008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809275911456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275911904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275912352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275912800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275913248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275913696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809229434752"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139809229434752": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275914144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275914592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275915040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262983776": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275915488"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275915936"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275916384"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275916832"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275917280"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275917728"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275918176"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275918624"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275919072"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275919520"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275919968"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275969824"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275970272"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275970720"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275971168"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275971616"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275972064"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275972512"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275972960"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275973408"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275973856"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275974304"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "139809251070496"}], "isAbstract": false}}, "139809275915488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809242111968"}, {"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"]}}, "139809275915936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139809275916384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809229434864"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139809229434864": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275916832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809229434976"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722912"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "139809229434976": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275917280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275917728": {"type": "Function", "content": {"typeVars": [".0.139809275917728"], "argTypes": [{"nodeId": ".0.139809275917728"}], "returnType": {"nodeId": ".0.139809275917728"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275917728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262983776"}, "def": "139809275917728", "variance": "INVARIANT"}}, "139809275918176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "139809275918624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722912"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "139809275919072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275919520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809275919968": {"type": "Function", "content": {"typeVars": [".0.139809275919968"], "argTypes": [{"nodeId": ".0.139809275919968"}], "returnType": {"nodeId": ".0.139809275919968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275919968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262983776"}, "def": "139809275919968", "variance": "INVARIANT"}}, "139809275969824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809229435312"}, {"nodeId": "139809229435424"}, {"nodeId": "139809229435536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809229435312": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809229435424": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809229435536": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809275970272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "139809275970720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275971168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275971616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275972064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275972512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275972960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809229435648"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139809229435648": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275973408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275973856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275974304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809254735936": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809254736288": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254735936"}], "isAbstract": false}}, "139809254736640": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254736288"}], "isAbstract": false}}, "139809254736992": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254736288"}], "isAbstract": false}}, "139809254737344": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254735936"}, {"nodeId": "139809250736640"}], "isAbstract": false}}, "139809254737696": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254735936"}], "isAbstract": false}}, "139809254738400": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254738752": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254739104": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254739456": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254739808": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254740160": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254740512": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254740864": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254741216": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254741568": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254741920": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254742272": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254742624": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254742976": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254742624"}], "isAbstract": false}}, "139809254743328": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254742624"}], "isAbstract": false}}, "139809254743680": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276036928"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809254742624"}], "isAbstract": false}}, "139809276036928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254743680"}, {"nodeId": "139809234161440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}}, "139809234161440": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809254744032": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254742624"}], "isAbstract": false}}, "139809254744384": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254742624"}], "isAbstract": false}}, "139809254744736": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254742624"}], "isAbstract": false}}, "139809250309952": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276042528"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276042976"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276043424"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276043872"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276044320"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "139809250309600"}], "isAbstract": false}}, "139809276042528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309952"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809233952256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "139809233952256": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809276042976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309952"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233952480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809233952480": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809276043424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309952"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233952592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809233952592": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250311712"}]}}, "139809250311712": {"type": "Concrete", "content": {"module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267520384"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267520832"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267521280"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267521728"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267522176"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809267520384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311712"}, {"nodeId": "139809234159200"}, {"nodeId": "139809234159312"}, {"nodeId": "139809234159424"}, {"nodeId": "139809234159536"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "maxlinelen", "header_name", "continuation_ws", "errors"]}}, "139809234159200": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809234159312": {"type": "Union", "content": {"items": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809234159424": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809234159536": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809267520832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311712"}, {"nodeId": "139809234159648"}, {"nodeId": "139809234159760"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}}, "139809234159648": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}, {"nodeId": "139809250722560"}]}}, "139809234159760": {"type": "Union", "content": {"items": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809267521280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311712"}, {"nodeId": "139809250722560"}, {"nodeId": "139809234159872"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}}, "139809234159872": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809267521728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311712"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809267522176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311712"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809276043872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309952"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809276044320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309952"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809250310304": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809255095680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809254745088"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276044768"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276045216"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276045664"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276046112"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276046560"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276047008"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "139809250309600"}], "isAbstract": false}}, "139809255095680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809276044768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310304"}, {"nodeId": "139809233952704"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809233952816"}, {"nodeId": "139809338527936"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233561504"}, {"nodeId": "139809254745088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory", "utf8", "refold_source", "header_factory", "content_manager"]}}, "139809233952704": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809233952816": {"type": "Union", "content": {"items": [{"nodeId": "139809233561280"}, {"nodeId": "N"}]}}, "139809233561280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}], "returnType": {"nodeId": "139809250310656"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809233561504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809276045216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310304"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809233953040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "139809233953040": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809276045664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310304"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233953264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809233953264": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809276046112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310304"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809276046560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310304"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809276047008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310304"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809262740480": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139809262740480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139809262740480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276049472"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276049920"}, "name": "check_returncode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276050368"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809262740480"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809262740480": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262740480", "variance": "INVARIANT"}}, "139809276049472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262740480", "args": [{"nodeId": ".1.139809262740480"}]}, {"nodeId": "139809237864672"}, {"nodeId": "139809338538848"}, {"nodeId": "139809237864784"}, {"nodeId": "139809237864896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}}, "139809237864672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809237864784": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262740480"}, {"nodeId": "N"}]}}, "139809237864896": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262740480"}, {"nodeId": "N"}]}}, "139809276049920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262740480", "args": [{"nodeId": ".1.139809262740480"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809276050368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139809262740832": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809262741184": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809254534144"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338539200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242320224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242138208"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809262740832"}], "isAbstract": false}}, "139809254534144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741184"}, {"nodeId": "139809238066320"}, {"nodeId": "139809338539200"}, {"nodeId": "139809238066432"}, {"nodeId": "139809238066544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}}, "139809238066320": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238066432": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809238066544": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809242320224": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809242138208": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809262741536": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809254534592"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809262740832"}], "isAbstract": false}}, "139809254534592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741536"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238066656"}, {"nodeId": "139809238066768"}, {"nodeId": "139809238066880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}}, "139809238066656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238066768": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809238066880": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809250307136": {"type": "Concrete", "content": {"module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250403136"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250403584"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}], "isAbstract": false}}, "139809250403136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250403584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307136"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809250307488": {"type": "Concrete", "content": {"module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250405376"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196561728"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250407168"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250407616"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250408960"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250409856"}, "name": "__getitem__"}}, {"kind": "Variable", "content": {"name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809196565984"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258750464"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258750912"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258751360"}, "name": "__dir__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233730832"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "Variable", "content": {"name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809250307840"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "A"}, {"nodeId": "139809250307840"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250916160"}], "isAbstract": false}}, "139809250405376": {"type": "Function", "content": {"typeVars": [".-1.139809250405376"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, {"nodeId": "139809250307136"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139809250405376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}}, ".-1.139809250405376": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250405376", "variance": "INVARIANT"}}, "139809196561728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809250307136"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}}, "139809250407168": {"type": "Function", "content": {"typeVars": [".-1.139809250407168"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".-1.139809250407168"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139809250407168": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250407168", "variance": "INVARIANT"}}, "139809250407616": {"type": "Function", "content": {"typeVars": [".-1.139809250407616"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".-1.139809250407616"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139809250407616": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250407616", "variance": "INVARIANT"}}, "139809250408960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809250409856": {"type": "Function", "content": {"typeVars": [".-1.139809250409856"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".-1.139809250409856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809250409856": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250409856", "variance": "INVARIANT"}}, "139809196565984": {"type": "Function", "content": {"typeVars": [".-1.139809196565984"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "139809262732032", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".-1.139809196565984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139809196565984": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809196565984", "variance": "INVARIANT"}}, "139809258750464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307488"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809258750912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307488"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809258751360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307488"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233730832": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809258751808"}, {"nodeId": "139809258752704"}]}}, "139809258751808": {"type": "Function", "content": {"typeVars": [".-1.139809258751808"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.139809258751808"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}}, ".-1.139809258751808": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809258751808", "variance": "INVARIANT"}}, "139809258752704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307488"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233949344"}, {"nodeId": "139809233949456"}, {"nodeId": "139809233949568"}, {"nodeId": "139809233949680"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "value", "names", "module", "qualname", "type", "start"]}}, "139809233949344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250170288"}}}, "139809250170288": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809250172192"}]}]}, {"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}]}}, "139809250172192": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}}, "139809233949456": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233949568": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233949680": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809250308192": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809196570688"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258757632"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139809338538848"}, {"nodeId": "139809250307840"}], "isAbstract": false}}, "139809196570688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250308192"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809258757632": {"type": "Function", "content": {"typeVars": [".0.139809258757632"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809258757632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.139809258757632": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308192"}, "def": "139809258757632", "variance": "INVARIANT"}}, "139809262743648": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262877408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262877520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258644736"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809262877408": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809262877520": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809258644736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743648"}, {"nodeId": "139809250722560"}, {"nodeId": "139809238121296"}, {"nodeId": "139809238120960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}}, "139809238121296": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809238120960": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809262744000": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258645184"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139809338538848"}], "isAbstract": false}}, "139809258645184": {"type": "Function", "content": {"typeVars": [".0.139809258645184"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809258645184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}}, ".0.139809258645184": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262744000"}, "def": "139809258645184", "variance": "INVARIANT"}}, "139809259145696": {"type": "Concrete", "content": {"module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258646528"}, "name": "size"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809258646528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259145696"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262742240": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809262742592": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809262872704"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242321344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213134688"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267591744"}, "name": "opengroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267592192"}, "name": "closegroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267592640"}, "name": "checkgroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267593088"}, "name": "checklookbehindgroup"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809262872704": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809242321344": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809213134688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742592"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809267591744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742592"}, {"nodeId": "139809238118496"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139809238118496": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809267592192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742592"}, {"nodeId": "139809338538848"}, {"nodeId": "139809262742944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}}, "139809262742944": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809242324032"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242261744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262742592"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267593536"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267594432"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267594880"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267595328"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267595776"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267596224"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267596672"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266942016"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266942464"}, "name": "getwidth"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809242324032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242325264"}}}, "139809242325264": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262744000"}, {"nodeId": "139809242324144"}]}}, "139809242324144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242325040"}}}, "139809242325040": {"type": "Union", "content": {"items": [{"nodeId": "139809242323248"}, {"nodeId": "139809242323808"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809262742944"}]}, {"nodeId": "139809242324704"}, {"nodeId": "139809242324928"}]}}, "139809242323248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250724672", "args": [{"nodeId": "139809262874496"}]}}}, "139809262874496": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262744000"}, {"nodeId": "139809338538848"}]}}, "139809242323808": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242139328"}}}, "139809242139328": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809262742944"}]}]}}, "139809242324704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242139216"}}}, "139809242139216": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809262742944"}, {"nodeId": "139809262742944"}]}}, "139809242324928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242320112"}}}, "139809242320112": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262873152"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809262742944"}]}}, "139809262873152": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809242261744": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809267593536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}, {"nodeId": "139809262742592"}, {"nodeId": "139809238118720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}}, "139809238118720": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809238118608"}]}, {"nodeId": "N"}]}}, "139809238118608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242325264"}}}, "139809267594432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}}, "139809267594880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809267595328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}, {"nodeId": "139809238118832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809238118832": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250723968"}]}}, "139809267595776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}, {"nodeId": "139809238119056"}], "returnType": {"nodeId": "139809238117376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809238119056": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250723968"}]}}, "139809238117376": {"type": "Union", "content": {"items": [{"nodeId": "139809262742944"}, {"nodeId": "139809238118944"}]}}, "139809238118944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242325264"}}}, "139809267596224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}, {"nodeId": "139809238119280"}, {"nodeId": "139809238119504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809238119280": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250723968"}]}}, "139809238119504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242325264"}}}, "139809267596672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238119392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}}, "139809238119392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242325264"}}}, "139809266942016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}, {"nodeId": "139809238119728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}}, "139809238119728": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242325264"}}}, "139809266942464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}], "returnType": {"nodeId": "139809238119840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238119840": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809267592640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742592"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}}, "139809267593088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742592"}, {"nodeId": "139809338538848"}, {"nodeId": "139809262743296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}}, "139809262743296": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "content": {"name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242325376"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266942912"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266943360"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266943808"}, "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266944256"}, "name": "getwhile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266944704"}, "name": "getuntil"}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213129984"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266946048"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266946496"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266946944"}, "name": "error"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809242325376": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809266942912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "139809266943360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}}, "139809266943808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}], "returnType": {"nodeId": "139809238119952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238119952": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809266944256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}}, "139809266944704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}}, "139809213129984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809266946048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809266946496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}}, "139809266946944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809262743648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}}, "139809171320704": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "139809250302560"}, "argKinds": [], "argNames": []}}}, "exprTypes": {"import_test": [{"startOffset": 105, "endOffset": 134, "line": 6, "type": {"nodeId": "139809171320704"}}]}, "definitions": {"import_test": {"__name__": {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": false}}, "__doc__": {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": false}}, "__file__": {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": false}}, "__package__": {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": false}}, "__annotations__": {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": false}}, "A": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242117248"}}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250302208"}}}, "BuiltinImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242109504"}}}, "FrozenImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242109856"}}}, "WindowsRegistryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242110208"}}}, "PathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250302560"}}}, "FileFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242110560"}}}, "SourceFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242110912"}}}, "SourcelessFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242111264"}}}, "ExtensionFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242111616"}}}}, "importlib": {"Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250303264"}}}}, "collections": {"UserDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251075424"}}}, "UserList": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251075776"}}}, "UserString": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251076128"}}}, "deque": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251076480"}}}, "Counter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250917216"}}}, "_OrderedDictKeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262978848"}}}, "_OrderedDictItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262979200"}}}, "_OrderedDictValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262979552"}}}, "_odict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251076832"}}}, "_odict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251077184"}}}, "_odict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251077536"}}}, "OrderedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251077888"}}}, "defaultdict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250917568"}}}, "ChainMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251078240"}}}}, "builtins": {"object": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338527232"}}}, "bool": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338527936"}}}, "function": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338528288"}}}, "staticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "classmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "type": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338538144"}}}, "super": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338538496"}}}, "int": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338538848"}}}, "float": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338539200"}}}, "complex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338539552"}}}, "_FormatMapMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250721856"}}}, "_TranslateTable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250722208"}}}, "str": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250722560"}}}, "bytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250722912"}}}, "bytearray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250723264"}}}, "memoryview": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250723616"}}}, "slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250723968"}}}, "tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250724320"}}}, "list": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250724672"}}}, "dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250725024"}}}, "set": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251072960"}}}, "frozenset": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251073312"}}}, "enumerate": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251073664"}}}, "range": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250725376"}}}, "property": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250725728"}}}, "_NotImplementedType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250726080"}}}, "_PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241936320"}}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250726432"}}}, "filter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251074016"}}}, "_GetItemIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250726784"}}}, "map": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251074368"}}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241936672"}}}, "_SupportsPow2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250727136"}}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250727488"}}}, "_SupportsPow3": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250727840"}}}, "reversed": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251074720"}}}, "_SupportsRound1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250728192"}}}, "_SupportsRound2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250728544"}}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241937024"}}}, "zip": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251075072"}}}, "ellipsis": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250728896"}}}, "BaseException": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250729248"}}}, "GeneratorExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250729600"}}}, "KeyboardInterrupt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250729952"}}}, "SystemExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250730304"}}}, "Exception": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250730656"}}}, "StopIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250731008"}}}, "OSError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250731360"}}}, "ArithmeticError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250731712"}}}, "AssertionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250732064"}}}, "AttributeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250732416"}}}, "BufferError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250732768"}}}, "EOFError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250733120"}}}, "ImportError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250733472"}}}, "LookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250733824"}}}, "MemoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250734176"}}}, "NameError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250734528"}}}, "ReferenceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250734880"}}}, "RuntimeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250735232"}}}, "StopAsyncIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250735584"}}}, "SyntaxError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250735936"}}}, "SystemError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250736288"}}}, "TypeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250736640"}}}, "ValueError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250736992"}}}, "FloatingPointError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250737344"}}}, "OverflowError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250737696"}}}, "ZeroDivisionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250902080"}}}, "ModuleNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250902432"}}}, "IndexError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250902784"}}}, "KeyError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250903136"}}}, "UnboundLocalError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250903488"}}}, "BlockingIOError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250903840"}}}, "ChildProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250904192"}}}, "ConnectionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250904544"}}}, "BrokenPipeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250904896"}}}, "ConnectionAbortedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250905248"}}}, "ConnectionRefusedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250905600"}}}, "ConnectionResetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250905952"}}}, "FileExistsError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250906304"}}}, "FileNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250906656"}}}, "InterruptedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250907008"}}}, "IsADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250907360"}}}, "NotADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250907712"}}}, "PermissionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250908064"}}}, "ProcessLookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250908416"}}}, "TimeoutError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250908768"}}}, "NotImplementedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250909120"}}}, "RecursionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250909472"}}}, "IndentationError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250909824"}}}, "TabError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250910176"}}}, "UnicodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250910528"}}}, "UnicodeDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250910880"}}}, "UnicodeEncodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250911232"}}}, "UnicodeTranslateError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250911584"}}}, "Warning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250911936"}}}, "UserWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250912288"}}}, "DeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250912640"}}}, "SyntaxWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250912992"}}}, "RuntimeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250913344"}}}, "FutureWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250913696"}}}, "PendingDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250914048"}}}, "ImportWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250914400"}}}, "UnicodeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250914752"}}}, "BytesWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250915104"}}}, "ResourceWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250915456"}}}, "EncodingWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250915808"}}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250302912"}}}, "Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250303264"}}}, "ResourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250303616"}}}, "InspectLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250303968"}}}, "ExecutionLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250304320"}}}, "SourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250304672"}}}, "MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250305024"}}}, "PathEntryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250305376"}}}, "FileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250305728"}}}, "ResourceReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250306080"}}}, "Traversable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250306432"}}}, "TraversableResources": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250306784"}}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250298688"}}}, "PackageNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250299392"}}}, "EntryPoint": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250300096"}}}, "EntryPoints": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250300448"}}}, "SelectableGroups": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250300800"}}}, "PackagePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242116896"}}}, "FileHash": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250301152"}}}, "Distribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250301504"}}}, "DistributionFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242108448"}}}, "MetadataPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242109152"}}}, "PathDistribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250301856"}}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262739424"}}}, "_flags": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241938432"}}}, "_float_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241938784"}}}, "_hash_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241939136"}}}, "_implementation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262739776"}}}, "_int_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241939488"}}}, "_thread_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242103872"}}}, "_version_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242104224"}}}, "UnraisableHookArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262740128"}}}, "_asyncgen_hooks": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242104576"}}}}, "types": {"_Cell": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251081760"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262731328"}}}, "CodeType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262731680"}}}, "MappingProxyType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262732032"}}}, "SimpleNamespace": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262732384"}}}, "_LoaderProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262732736"}}}, "ModuleType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262733088"}}}, "GeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262733440"}}}, "AsyncGeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262733792"}}}, "CoroutineType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262734144"}}}, "_StaticFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262734496"}}}, "MethodType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262734848"}}}, "BuiltinFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262735200"}}}, "WrapperDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262735552"}}}, "MethodWrapperType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262735904"}}}, "MethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262736256"}}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262736608"}}}, "TracebackType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262736960"}}}, "FrameType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262737312"}}}, "GetSetDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262737664"}}}, "MemberDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262738016"}}}, "GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262738368"}}}, "NoneType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262738720"}}}, "UnionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262739072"}}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262984128"}}}, "SupportsNext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262984480"}}}, "SupportsAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262984832"}}}, "SupportsDunderLT": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262985184"}}}, "SupportsDunderGT": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262985536"}}}, "SupportsDunderLE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262985888"}}}, "SupportsDunderGE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262986240"}}}, "SupportsAllComparisons": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262986592"}}}, "SupportsAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262986944"}}}, "SupportsRAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262987296"}}}, "SupportsSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262987648"}}}, "SupportsRSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262988000"}}}, "SupportsDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262988352"}}}, "SupportsRDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262988704"}}}, "SupportsIter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262989056"}}}, "SupportsAiter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262989408"}}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262989760"}}}, "SupportsTrunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262990112"}}}, "SupportsItems": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262990464"}}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262990816"}}}, "SupportsGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262991168"}}}, "SupportsItemAccess": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262991520"}}}, "HasFileno": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262991872"}}}, "SupportsRead": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262992224"}}}, "SupportsReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262992576"}}}, "SupportsNoArgReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262992928"}}}, "SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259143232"}}}, "SliceableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259143584"}}}, "IndexableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259143936"}}}, "SupportsGetItemBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259144288"}}}, "SizedBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259144640"}}}, "structseq": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259144992"}}}, "DataclassInstance": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259145344"}}}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251080352"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338528640"}}}, "_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338528992"}}}, "ParamSpecArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338529344"}}}, "ParamSpecKwargs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338529696"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338530048"}}}, "NewType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338530400"}}}, "_Alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338530752"}}}, "_ProtocolMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250917920"}}}, "SupportsInt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251065920"}}}, "SupportsFloat": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251066272"}}}, "SupportsComplex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251066624"}}}, "SupportsBytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251066976"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251067328"}}}, "SupportsAbs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338531104"}}}, "SupportsRound": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338531456"}}}, "Sized": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251067680"}}}, "Hashable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251068032"}}}, "Iterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338531808"}}}, "Iterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338532160"}}}, "Reversible": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338532512"}}}, "Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338532864"}}}, "Awaitable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338533216"}}}, "Coroutine": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338533568"}}}, "AwaitableGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251068384"}}}, "AsyncIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338533920"}}}, "AsyncIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338534272"}}}, "AsyncGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338534624"}}}, "Container": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338534976"}}}, "Collection": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338535328"}}}, "Sequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338535680"}}}, "MutableSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338536032"}}}, "AbstractSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338536384"}}}, "MutableSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338536736"}}}, "MappingView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251068736"}}}, "ItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251069088"}}}, "KeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251069440"}}}, "ValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251069792"}}}, "Mapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338537088"}}}, "MutableMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338537440"}}}, "IO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251070144"}}}, "BinaryIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251070496"}}}, "TextIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251070848"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251071200"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251071552"}}}, "ForwardRef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338537792"}}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251071904"}}}, "dict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251072256"}}}, "dict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251072608"}}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251078592"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251078944"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251079296"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251079648"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251080000"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251080352"}}}, "TypeVarTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251080704"}}}, "TypeAliasType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251081056"}}}, "Buffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251081408"}}}}, "_ast": {"AST": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259146048"}}}, "mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259146400"}}}, "type_ignore": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259146752"}}}, "TypeIgnore": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259147104"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259147456"}}}, "Module": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259147808"}}}, "Interactive": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259148160"}}}, "Expression": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259148512"}}}, "stmt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259148864"}}}, "FunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259149216"}}}, "AsyncFunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259149568"}}}, "ClassDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259149920"}}}, "Return": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259150272"}}}, "Delete": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259150624"}}}, "Assign": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259150976"}}}, "AugAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259151328"}}}, "AnnAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259151680"}}}, "For": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259152032"}}}, "AsyncFor": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259152384"}}}, "While": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259152736"}}}, "If": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259153088"}}}, "With": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259153440"}}}, "AsyncWith": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259153792"}}}, "Raise": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259154144"}}}, "Try": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259154496"}}}, "Assert": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259154848"}}}, "Import": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259155200"}}}, "ImportFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259155552"}}}, "Global": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259155904"}}}, "Nonlocal": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259156256"}}}, "Expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259156608"}}}, "Pass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259156960"}}}, "Break": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259157312"}}}, "Continue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259157664"}}}, "expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259158016"}}}, "BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259158368"}}}, "BinOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259158720"}}}, "UnaryOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259159072"}}}, "Lambda": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241825344"}}}, "IfExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241825696"}}}, "Dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241826048"}}}, "Set": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241826400"}}}, "ListComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241826752"}}}, "SetComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241827104"}}}, "DictComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241827456"}}}, "GeneratorExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241827808"}}}, "Await": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241828160"}}}, "Yield": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241828512"}}}, "YieldFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241828864"}}}, "Compare": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241829216"}}}, "Call": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241829568"}}}, "FormattedValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241829920"}}}, "JoinedStr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241830272"}}}, "Constant": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241830624"}}}, "NamedExpr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241830976"}}}, "Attribute": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241831328"}}}, "Slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241831680"}}}, "Subscript": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241832032"}}}, "Starred": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241832384"}}}, "Name": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241832736"}}}, "List": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241833088"}}}, "Tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241833440"}}}, "expr_context": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241833792"}}}, "Del": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241834144"}}}, "Load": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241834496"}}}, "Store": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241834848"}}}, "boolop": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241835200"}}}, "And": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241835552"}}}, "Or": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241835904"}}}, "operator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241836256"}}}, "Add": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241836608"}}}, "BitAnd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241836960"}}}, "BitOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241837312"}}}, "BitXor": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241837664"}}}, "Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241838016"}}}, "FloorDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241838368"}}}, "LShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241838720"}}}, "Mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241839072"}}}, "Mult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241839424"}}}, "MatMult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241839776"}}}, "Pow": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241840128"}}}, "RShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241840480"}}}, "Sub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241840832"}}}, "unaryop": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241841184"}}}, "Invert": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241923648"}}}, "Not": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241924000"}}}, "UAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241924352"}}}, "USub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241924704"}}}, "cmpop": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241925056"}}}, "Eq": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241925408"}}}, "Gt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241925760"}}}, "GtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241926112"}}}, "In": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241926464"}}}, "Is": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241926816"}}}, "IsNot": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241927168"}}}, "Lt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241927520"}}}, "LtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241927872"}}}, "NotEq": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241928224"}}}, "NotIn": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241928576"}}}, "comprehension": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241928928"}}}, "excepthandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241929280"}}}, "ExceptHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241929632"}}}, "arguments": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241929984"}}}, "arg": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241930336"}}}, "keyword": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241930688"}}}, "alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241931040"}}}, "withitem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241931392"}}}, "Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241931744"}}}, "pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241932096"}}}, "match_case": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241932448"}}}, "MatchValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241932800"}}}, "MatchSingleton": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241933152"}}}, "MatchSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241933504"}}}, "MatchStar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241933856"}}}, "MatchMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241934208"}}}, "MatchClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241934560"}}}, "MatchAs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241934912"}}}, "MatchOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241935264"}}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262745760"}}}, "IOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262746112"}}}, "RawIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262746464"}}}, "BufferedIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262746816"}}}, "FileIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262747168"}}}, "BytesIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250295872"}}}, "BufferedReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250296224"}}}, "BufferedWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250296576"}}}, "BufferedRandom": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250296928"}}}, "BufferedRWPair": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250297280"}}}, "TextIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250297632"}}}, "TextIOWrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250297984"}}}, "StringIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250298336"}}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242116544"}}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250916160"}}}, "abstractclassmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractstaticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractproperty": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250916512"}}}, "ABC": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250916864"}}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250298688"}}}, "SimplePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250299040"}}}}, "email.message": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250310656"}}}, "MIMEPart": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250311008"}}}, "EmailMessage": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250311360"}}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242114432"}}}, "PurePosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242114784"}}}, "PureWindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242115136"}}}, "Path": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242115488"}}}, "PosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242115840"}}}, "WindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242116192"}}}}, "os": {"_Environ": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262745056"}}}, "stat_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241937376"}}}, "PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242105280"}}}, "DirEntry": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262745408"}}}, "statvfs_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242105632"}}}, "uname_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242105984"}}}, "terminal_size": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242106336"}}}, "_ScandirIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242106688"}}}, "_wrap_close": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242107040"}}}, "times_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242107392"}}}, "waitid_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242107744"}}}, "sched_param": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242108096"}}}}, "re": {"Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262744352"}}}, "Pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262744704"}}}, "RegexFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242104928"}}}}, "dataclasses": {"_MISSING_TYPE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254745792"}}}, "KW_ONLY": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254746144"}}}, "_DefaultFactory": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254746496"}}}, "Field": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254746848"}}}, "FrozenInstanceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254747200"}}}, "InitVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254747552"}}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254747904"}}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254748256"}}}, "ContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254748608"}}}, "_GeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254748960"}}}, "AsyncContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254749312"}}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254749664"}}}, "_SupportsClose": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254750016"}}}, "closing": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254750368"}}}, "_SupportsAclose": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254750720"}}}, "aclosing": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254751072"}}}, "suppress": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254751424"}}}, "_RedirectStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254751776"}}}, "redirect_stdout": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262977088"}}}, "redirect_stderr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262977440"}}}, "ExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262977792"}}}, "AsyncExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262978144"}}}, "nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262978496"}}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262979904"}}}, "_ReadableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262980256"}}}, "_Stream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242111968"}}}, "_Encoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262980608"}}}, "_Decoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262980960"}}}, "_StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262981312"}}}, "_StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262981664"}}}, "_IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262982016"}}}, "_IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262982368"}}}, "CodecInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242112320"}}}, "Codec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262982720"}}}, "IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262983072"}}}, "IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262983424"}}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242112672"}}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242113024"}}}, "StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242113376"}}}, "StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242113728"}}}, "StreamReaderWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242114080"}}}, "StreamRecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262983776"}}}}, "email": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250310656"}}}, "Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250309600"}}}}, "email.charset": {"Charset": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254745440"}}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254745088"}}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254735936"}}}, "MessageParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254736288"}}}, "HeaderParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254736640"}}}, "BoundaryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254736992"}}}, "MultipartConversionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254737344"}}}, "CharsetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254737696"}}}, "MessageDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254738048"}}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254738400"}}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254738752"}}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254739104"}}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254739456"}}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254739808"}}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254740160"}}}, "UndecodableBytesDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254740512"}}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254740864"}}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254741216"}}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254741568"}}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254741920"}}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254742272"}}}, "HeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254742624"}}}, "InvalidHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254742976"}}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254743328"}}}, "NonPrintableDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254743680"}}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254744032"}}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254744384"}}}, "InvalidDateDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254744736"}}}}, "email.policy": {"Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250309600"}}}, "Compat32": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250309952"}}}, "EmailPolicy": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250310304"}}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262740480"}}}, "SubprocessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262740832"}}}, "TimeoutExpired": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262741184"}}}, "CalledProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262741536"}}}, "Popen": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262741888"}}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250307136"}}}, "EnumMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250307488"}}}, "Enum": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250307840"}}}, "IntEnum": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250308192"}}}, "Flag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250308544"}}}, "IntFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250308896"}}}, "auto": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250309248"}}}}, "sre_constants": {"error": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262743648"}}}, "_NamedIntConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262744000"}}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259145696"}}}}, "email.header": {"Header": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250311712"}}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262742240"}}}, "_State": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262742592"}}}, "SubPattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262742944"}}}, "Tokenizer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262743296"}}}}}, "names": {"import_test": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "im", "kind": "Module", "fullname": "importlib.machinery"}, {"name": "c", "kind": "Module", "fullname": "collections"}, {"name": "deque", "kind": "ImportedType", "fullname": "collections.deque"}, {"name": "importlib", "kind": "Module", "fullname": "importlib"}, {"name": "A", "kind": "LocalType"}], "importlib.machinery": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "importlib", "kind": "Module", "fullname": "importlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "DistributionFinder", "kind": "ImportedType", "fullname": "importlib.metadata.DistributionFinder"}, {"name": "PathDistribution", "kind": "ImportedType", "fullname": "importlib.metadata.PathDistribution"}, {"name": "ModuleSpec", "kind": "LocalType"}, {"name": "BuiltinImporter", "kind": "LocalType"}, {"name": "FrozenImporter", "kind": "LocalType"}, {"name": "WindowsRegistryFinder", "kind": "LocalType"}, {"name": "PathFinder", "kind": "LocalType"}, {"name": "SOURCE_SUFFIXES", "kind": "Other"}, {"name": "DEBUG_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "OPTIMIZED_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "EXTENSION_SUFFIXES", "kind": "Other"}, {"name": "all_suffixes", "kind": "Other"}, {"name": "FileFinder", "kind": "LocalType"}, {"name": "SourceFileLoader", "kind": "LocalType"}, {"name": "SourcelessFileLoader", "kind": "LocalType"}, {"name": "ExtensionFileLoader", "kind": "LocalType"}], "importlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "__all__", "kind": "Other"}, {"name": "__import__", "kind": "Other"}, {"name": "import_module", "kind": "Other"}, {"name": "find_loader", "kind": "Other"}, {"name": "invalidate_caches", "kind": "Other"}, {"name": "reload", "kind": "Other"}], "collections": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "SupportsItems", "kind": "ImportedType", "fullname": "_typeshed.SupportsItems"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "Callable", "kind": "Other"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "namedtuple", "kind": "Other"}, {"name": "UserDict", "kind": "LocalType"}, {"name": "UserList", "kind": "LocalType"}, {"name": "UserString", "kind": "LocalType"}, {"name": "deque", "kind": "LocalType"}, {"name": "Counter", "kind": "LocalType"}, {"name": "_OrderedDictKeysView", "kind": "LocalType"}, {"name": "_OrderedDictItemsView", "kind": "LocalType"}, {"name": "_OrderedDictValuesView", "kind": "LocalType"}, {"name": "_odict_keys", "kind": "LocalType"}, {"name": "_odict_items", "kind": "LocalType"}, {"name": "_odict_values", "kind": "LocalType"}, {"name": "OrderedDict", "kind": "LocalType"}, {"name": "defaultdict", "kind": "LocalType"}, {"name": "ChainMap", "kind": "LocalType"}], "builtins": [{"name": "object", "kind": "LocalType"}, {"name": "bool", "kind": "LocalType"}, {"name": "function", "kind": "LocalType"}, {"name": "None", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "reveal_locals", "kind": "Other"}, {"name": "True", "kind": "Other"}, {"name": "False", "kind": "Other"}, {"name": "__debug__", "kind": "Other"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T3", "kind": "Other"}, {"name": "_T4", "kind": "Other"}, {"name": "_T5", "kind": "Other"}, {"name": "_SupportsNextT", "kind": "Other"}, {"name": "_SupportsAnextT", "kind": "Other"}, {"name": "_AwaitableT", "kind": "Other"}, {"name": "_AwaitableT_co", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "staticmethod", "kind": "LocalType"}, {"name": "classmethod", "kind": "LocalType"}, {"name": "type", "kind": "LocalType"}, {"name": "super", "kind": "LocalType"}, {"name": "_PositiveInteger", "kind": "Other"}, {"name": "_NegativeInteger", "kind": "Other"}, {"name": "_LiteralInteger", "kind": "Other"}, {"name": "int", "kind": "LocalType"}, {"name": "float", "kind": "LocalType"}, {"name": "complex", "kind": "LocalType"}, {"name": "_FormatMapMapping", "kind": "LocalType"}, {"name": "_TranslateTable", "kind": "LocalType"}, {"name": "str", "kind": "LocalType"}, {"name": "bytes", "kind": "LocalType"}, {"name": "bytearray", "kind": "LocalType"}, {"name": "memoryview", "kind": "LocalType"}, {"name": "slice", "kind": "LocalType"}, {"name": "tuple", "kind": "LocalType"}, {"name": "list", "kind": "LocalType"}, {"name": "dict", "kind": "LocalType"}, {"name": "set", "kind": "LocalType"}, {"name": "frozenset", "kind": "LocalType"}, {"name": "enumerate", "kind": "LocalType"}, {"name": "range", "kind": "LocalType"}, {"name": "property", "kind": "LocalType"}, {"name": "_NotImplementedType", "kind": "LocalType"}, {"name": "NotImplemented", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "ascii", "kind": "Other"}, {"name": "bin", "kind": "Other"}, {"name": "breakpoint", "kind": "Other"}, {"name": "callable", "kind": "Other"}, {"name": "chr", "kind": "Other"}, {"name": "_PathLike", "kind": "LocalType"}, {"name": "aiter", "kind": "Other"}, {"name": "_SupportsSynchronousAnext", "kind": "LocalType"}, {"name": "anext", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "credits", "kind": "Other"}, {"name": "delattr", "kind": "Other"}, {"name": "dir", "kind": "Other"}, {"name": "divmod", "kind": "Other"}, {"name": "eval", "kind": "Other"}, {"name": "exec", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "filter", "kind": "LocalType"}, {"name": "format", "kind": "Other"}, {"name": "getattr", "kind": "Other"}, {"name": "globals", "kind": "Other"}, {"name": "hasattr", "kind": "Other"}, {"name": "hash", "kind": "Other"}, {"name": "help", "kind": "Other"}, {"name": "hex", "kind": "Other"}, {"name": "id", "kind": "Other"}, {"name": "input", "kind": "Other"}, {"name": "_GetItemIterable", "kind": "LocalType"}, {"name": "iter", "kind": "Other"}, {"name": "_ClassInfo", "kind": "Other"}, {"name": "isinstance", "kind": "Other"}, {"name": "issubclass", "kind": "Other"}, {"name": "len", "kind": "Other"}, {"name": "license", "kind": "Other"}, {"name": "locals", "kind": "Other"}, {"name": "map", "kind": "LocalType"}, {"name": "max", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "next", "kind": "Other"}, {"name": "oct", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "ord", "kind": "Other"}, {"name": "_SupportsWriteAndFlush", "kind": "LocalType"}, {"name": "print", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_M", "kind": "Other"}, {"name": "_SupportsPow2", "kind": "LocalType"}, {"name": "_SupportsPow3NoneOnly", "kind": "LocalType"}, {"name": "_SupportsPow3", "kind": "LocalType"}, {"name": "_SupportsSomeKindOfPow", "kind": "Other"}, {"name": "pow", "kind": "Other"}, {"name": "quit", "kind": "Other"}, {"name": "reversed", "kind": "LocalType"}, {"name": "repr", "kind": "Other"}, {"name": "_SupportsRound1", "kind": "LocalType"}, {"name": "_SupportsRound2", "kind": "LocalType"}, {"name": "round", "kind": "Other"}, {"name": "setattr", "kind": "Other"}, {"name": "sorted", "kind": "Other"}, {"name": "_AddableT1", "kind": "Other"}, {"name": "_AddableT2", "kind": "Other"}, {"name": "_SupportsSumWithNoDefaultGiven", "kind": "LocalType"}, {"name": "_SupportsSumNoDefaultT", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "vars", "kind": "Other"}, {"name": "zip", "kind": "LocalType"}, {"name": "__import__", "kind": "Other"}, {"name": "__build_class__", "kind": "Other"}, {"name": "ellipsis", "kind": "LocalType"}, {"name": "Ellipsis", "kind": "Other"}, {"name": "BaseException", "kind": "LocalType"}, {"name": "GeneratorExit", "kind": "LocalType"}, {"name": "KeyboardInterrupt", "kind": "LocalType"}, {"name": "SystemExit", "kind": "LocalType"}, {"name": "Exception", "kind": "LocalType"}, {"name": "StopIteration", "kind": "LocalType"}, {"name": "OSError", "kind": "LocalType"}, {"name": "EnvironmentError", "kind": "Other"}, {"name": "IOError", "kind": "Other"}, {"name": "ArithmeticError", "kind": "LocalType"}, {"name": "AssertionError", "kind": "LocalType"}, {"name": "AttributeError", "kind": "LocalType"}, {"name": "BufferError", "kind": "LocalType"}, {"name": "EOFError", "kind": "LocalType"}, {"name": "ImportError", "kind": "LocalType"}, {"name": "LookupError", "kind": "LocalType"}, {"name": "MemoryError", "kind": "LocalType"}, {"name": "NameError", "kind": "LocalType"}, {"name": "ReferenceError", "kind": "LocalType"}, {"name": "RuntimeError", "kind": "LocalType"}, {"name": "StopAsyncIteration", "kind": "LocalType"}, {"name": "SyntaxError", "kind": "LocalType"}, {"name": "SystemError", "kind": "LocalType"}, {"name": "TypeError", "kind": "LocalType"}, {"name": "ValueError", "kind": "LocalType"}, {"name": "FloatingPointError", "kind": "LocalType"}, {"name": "OverflowError", "kind": "LocalType"}, {"name": "ZeroDivisionError", "kind": "LocalType"}, {"name": "ModuleNotFoundError", "kind": "LocalType"}, {"name": "IndexError", "kind": "LocalType"}, {"name": "KeyError", "kind": "LocalType"}, {"name": "UnboundLocalError", "kind": "LocalType"}, {"name": "BlockingIOError", "kind": "LocalType"}, {"name": "ChildProcessError", "kind": "LocalType"}, {"name": "ConnectionError", "kind": "LocalType"}, {"name": "BrokenPipeError", "kind": "LocalType"}, {"name": "ConnectionAbortedError", "kind": "LocalType"}, {"name": "ConnectionRefusedError", "kind": "LocalType"}, {"name": "ConnectionResetError", "kind": "LocalType"}, {"name": "FileExistsError", "kind": "LocalType"}, {"name": "FileNotFoundError", "kind": "LocalType"}, {"name": "InterruptedError", "kind": "LocalType"}, {"name": "IsADirectoryError", "kind": "LocalType"}, {"name": "NotADirectoryError", "kind": "LocalType"}, {"name": "PermissionError", "kind": "LocalType"}, {"name": "ProcessLookupError", "kind": "LocalType"}, {"name": "TimeoutError", "kind": "LocalType"}, {"name": "NotImplementedError", "kind": "LocalType"}, {"name": "RecursionError", "kind": "LocalType"}, {"name": "IndentationError", "kind": "LocalType"}, {"name": "TabError", "kind": "LocalType"}, {"name": "UnicodeError", "kind": "LocalType"}, {"name": "UnicodeDecodeError", "kind": "LocalType"}, {"name": "UnicodeEncodeError", "kind": "LocalType"}, {"name": "UnicodeTranslateError", "kind": "LocalType"}, {"name": "Warning", "kind": "LocalType"}, {"name": "UserWarning", "kind": "LocalType"}, {"name": "DeprecationWarning", "kind": "LocalType"}, {"name": "SyntaxWarning", "kind": "LocalType"}, {"name": "RuntimeWarning", "kind": "LocalType"}, {"name": "FutureWarning", "kind": "LocalType"}, {"name": "PendingDeprecationWarning", "kind": "LocalType"}, {"name": "ImportWarning", "kind": "LocalType"}, {"name": "UnicodeWarning", "kind": "LocalType"}, {"name": "BytesWarning", "kind": "LocalType"}, {"name": "ResourceWarning", "kind": "LocalType"}, {"name": "EncodingWarning", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "importlib.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_ast", "kind": "Module", "fullname": "_ast"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Finder", "kind": "LocalType"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ResourceLoader", "kind": "LocalType"}, {"name": "InspectLoader", "kind": "LocalType"}, {"name": "ExecutionLoader", "kind": "LocalType"}, {"name": "SourceLoader", "kind": "LocalType"}, {"name": "MetaPathFinder", "kind": "LocalType"}, {"name": "PathEntryFinder", "kind": "LocalType"}, {"name": "FileLoader", "kind": "LocalType"}, {"name": "ResourceReader", "kind": "LocalType"}, {"name": "Traversable", "kind": "LocalType"}, {"name": "TraversableResources", "kind": "LocalType"}], "collections.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}], "importlib.metadata": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "pathlib", "kind": "Module", "fullname": "pathlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "StrPath", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "MetaPathFinder", "kind": "ImportedType", "fullname": "importlib.abc.MetaPathFinder"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "packages_distributions", "kind": "Other"}, {"name": "PackageNotFoundError", "kind": "LocalType"}, {"name": "_EntryPointBase", "kind": "LocalType"}, {"name": "EntryPoint", "kind": "LocalType"}, {"name": "EntryPoints", "kind": "LocalType"}, {"name": "SelectableGroups", "kind": "LocalType"}, {"name": "PackagePath", "kind": "LocalType"}, {"name": "FileHash", "kind": "LocalType"}, {"name": "Distribution", "kind": "LocalType"}, {"name": "DistributionFinder", "kind": "LocalType"}, {"name": "MetadataPathFinder", "kind": "LocalType"}, {"name": "PathDistribution", "kind": "LocalType"}, {"name": "distribution", "kind": "Other"}, {"name": "distributions", "kind": "Other"}, {"name": "metadata", "kind": "Other"}, {"name": "entry_points", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "files", "kind": "Other"}, {"name": "requires", "kind": "Other"}], "sys": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "_object", "kind": "ImportedType", "fullname": "builtins.object"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "PathEntryFinder", "kind": "ImportedType", "fullname": "importlib.abc.PathEntryFinder"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ExitCode", "kind": "Other"}, {"name": "_OptExcInfo", "kind": "Other"}, {"name": "_MetaPathFinder", "kind": "LocalType"}, {"name": "abiflags", "kind": "Other"}, {"name": "argv", "kind": "Other"}, {"name": "base_exec_prefix", "kind": "Other"}, {"name": "base_prefix", "kind": "Other"}, {"name": "byteorder", "kind": "Other"}, {"name": "builtin_module_names", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "dont_write_bytecode", "kind": "Other"}, {"name": "displayhook", "kind": "Other"}, {"name": "excepthook", "kind": "Other"}, {"name": "exec_prefix", "kind": "Other"}, {"name": "executable", "kind": "Other"}, {"name": "float_repr_style", "kind": "Other"}, {"name": "hexversion", "kind": "Other"}, {"name": "last_type", "kind": "Other"}, {"name": "last_value", "kind": "Other"}, {"name": "last_traceback", "kind": "Other"}, {"name": "maxsize", "kind": "Other"}, {"name": "maxunicode", "kind": "Other"}, {"name": "meta_path", "kind": "Other"}, {"name": "modules", "kind": "Other"}, {"name": "orig_argv", "kind": "Other"}, {"name": "path", "kind": "Other"}, {"name": "path_hooks", "kind": "Other"}, {"name": "path_importer_cache", "kind": "Other"}, {"name": "platform", "kind": "Other"}, {"name": "platlibdir", "kind": "Other"}, {"name": "prefix", "kind": "Other"}, {"name": "pycache_prefix", "kind": "Other"}, {"name": "ps1", "kind": "Other"}, {"name": "ps2", "kind": "Other"}, {"name": "stdin", "kind": "Other"}, {"name": "stdout", "kind": "Other"}, {"name": "stderr", "kind": "Other"}, {"name": "stdlib_module_names", "kind": "Other"}, {"name": "__stdin__", "kind": "Other"}, {"name": "__stdout__", "kind": "Other"}, {"name": "__stderr__", "kind": "Other"}, {"name": "tracebacklimit", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "api_version", "kind": "Other"}, {"name": "warnoptions", "kind": "Other"}, {"name": "_xoptions", "kind": "Other"}, {"name": "_UninstantiableStructseq", "kind": "Other"}, {"name": "flags", "kind": "Other"}, {"name": "_FlagTuple", "kind": "Other"}, {"name": "_flags", "kind": "LocalType"}, {"name": "float_info", "kind": "Other"}, {"name": "_float_info", "kind": "LocalType"}, {"name": "hash_info", "kind": "Other"}, {"name": "_hash_info", "kind": "LocalType"}, {"name": "implementation", "kind": "Other"}, {"name": "_implementation", "kind": "LocalType"}, {"name": "int_info", "kind": "Other"}, {"name": "_int_info", "kind": "LocalType"}, {"name": "_ThreadInfoName", "kind": "Other"}, {"name": "_ThreadInfoLock", "kind": "Other"}, {"name": "_thread_info", "kind": "LocalType"}, {"name": "thread_info", "kind": "Other"}, {"name": "_version_info", "kind": "LocalType"}, {"name": "version_info", "kind": "Other"}, {"name": "call_tracing", "kind": "Other"}, {"name": "_clear_type_cache", "kind": "Other"}, {"name": "_current_frames", "kind": "Other"}, {"name": "_getframe", "kind": "Other"}, {"name": "_debugmallocstats", "kind": "Other"}, {"name": "__displayhook__", "kind": "Other"}, {"name": "__excepthook__", "kind": "Other"}, {"name": "exc_info", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "getallocatedblocks", "kind": "Other"}, {"name": "getdefaultencoding", "kind": "Other"}, {"name": "getdlopenflags", "kind": "Other"}, {"name": "getfilesystemencoding", "kind": "Other"}, {"name": "getfilesystemencodeerrors", "kind": "Other"}, {"name": "getrefcount", "kind": "Other"}, {"name": "getrecursionlimit", "kind": "Other"}, {"name": "getsizeof", "kind": "Other"}, {"name": "getswitchinterval", "kind": "Other"}, {"name": "getprofile", "kind": "Other"}, {"name": "setprofile", "kind": "Other"}, {"name": "gettrace", "kind": "Other"}, {"name": "settrace", "kind": "Other"}, {"name": "intern", "kind": "Other"}, {"name": "is_finalizing", "kind": "Other"}, {"name": "breakpointhook", "kind": "Other"}, {"name": "__breakpointhook__", "kind": "Other"}, {"name": "setdlopenflags", "kind": "Other"}, {"name": "setrecursionlimit", "kind": "Other"}, {"name": "setswitchinterval", "kind": "Other"}, {"name": "gettotalrefcount", "kind": "Other"}, {"name": "UnraisableHookArgs", "kind": "LocalType"}, {"name": "unraisablehook", "kind": "Other"}, {"name": "__unraisablehook__", "kind": "Other"}, {"name": "addaudithook", "kind": "Other"}, {"name": "audit", "kind": "Other"}, {"name": "_AsyncgenHook", "kind": "Other"}, {"name": "_asyncgen_hooks", "kind": "LocalType"}, {"name": "get_asyncgen_hooks", "kind": "Other"}, {"name": "set_asyncgen_hooks", "kind": "Other"}, {"name": "get_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_int_max_str_digits", "kind": "Other"}, {"name": "get_int_max_str_digits", "kind": "Other"}], "types": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeVarTuple", "kind": "ImportedType", "fullname": "typing_extensions.TypeVarTuple"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_Cell", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "LambdaType", "kind": "Other"}, {"name": "CodeType", "kind": "LocalType"}, {"name": "MappingProxyType", "kind": "LocalType"}, {"name": "SimpleNamespace", "kind": "LocalType"}, {"name": "_LoaderProtocol", "kind": "LocalType"}, {"name": "ModuleType", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "GeneratorType", "kind": "LocalType"}, {"name": "AsyncGeneratorType", "kind": "LocalType"}, {"name": "CoroutineType", "kind": "LocalType"}, {"name": "_StaticFunctionType", "kind": "LocalType"}, {"name": "MethodType", "kind": "LocalType"}, {"name": "BuiltinFunctionType", "kind": "LocalType"}, {"name": "BuiltinMethodType", "kind": "Other"}, {"name": "WrapperDescriptorType", "kind": "LocalType"}, {"name": "MethodWrapperType", "kind": "LocalType"}, {"name": "MethodDescriptorType", "kind": "LocalType"}, {"name": "ClassMethodDescriptorType", "kind": "LocalType"}, {"name": "TracebackType", "kind": "LocalType"}, {"name": "FrameType", "kind": "LocalType"}, {"name": "GetSetDescriptorType", "kind": "LocalType"}, {"name": "MemberDescriptorType", "kind": "LocalType"}, {"name": "new_class", "kind": "Other"}, {"name": "resolve_bases", "kind": "Other"}, {"name": "prepare_class", "kind": "Other"}, {"name": "DynamicClassAttribute", "kind": "Other"}, {"name": "_Fn", "kind": "Other"}, {"name": "_R", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "coroutine", "kind": "Other"}, {"name": "CellType", "kind": "Other"}, {"name": "GenericAlias", "kind": "LocalType"}, {"name": "NoneType", "kind": "LocalType"}, {"name": "EllipsisType", "kind": "Other"}, {"name": "_NotImplementedType", "kind": "ImportedType", "fullname": "builtins._NotImplementedType"}, {"name": "NotImplementedType", "kind": "Other"}, {"name": "UnionType", "kind": "LocalType"}], "_typeshed": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Field", "kind": "ImportedType", "fullname": "dataclasses.Field"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Buffer", "kind": "ImportedType", "fullname": "typing_extensions.Buffer"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_KT_contra", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "Incomplete", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "IdentityFunction", "kind": "LocalType"}, {"name": "SupportsNext", "kind": "LocalType"}, {"name": "SupportsAnext", "kind": "LocalType"}, {"name": "SupportsDunderLT", "kind": "LocalType"}, {"name": "SupportsDunderGT", "kind": "LocalType"}, {"name": "SupportsDunderLE", "kind": "LocalType"}, {"name": "SupportsDunderGE", "kind": "LocalType"}, {"name": "SupportsAllComparisons", "kind": "LocalType"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "SupportsAdd", "kind": "LocalType"}, {"name": "SupportsRAdd", "kind": "LocalType"}, {"name": "SupportsSub", "kind": "LocalType"}, {"name": "SupportsRSub", "kind": "LocalType"}, {"name": "SupportsDivMod", "kind": "LocalType"}, {"name": "SupportsRDivMod", "kind": "LocalType"}, {"name": "SupportsIter", "kind": "LocalType"}, {"name": "SupportsAiter", "kind": "LocalType"}, {"name": "SupportsLenAndGetItem", "kind": "LocalType"}, {"name": "SupportsTrunc", "kind": "LocalType"}, {"name": "SupportsItems", "kind": "LocalType"}, {"name": "SupportsKeysAndGetItem", "kind": "LocalType"}, {"name": "SupportsGetItem", "kind": "LocalType"}, {"name": "SupportsItemAccess", "kind": "LocalType"}, {"name": "StrPath", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "OpenTextModeUpdating", "kind": "Other"}, {"name": "OpenTextModeWriting", "kind": "Other"}, {"name": "OpenTextModeReading", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "HasFileno", "kind": "LocalType"}, {"name": "FileDescriptor", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "SupportsRead", "kind": "LocalType"}, {"name": "SupportsReadline", "kind": "LocalType"}, {"name": "SupportsNoArgReadline", "kind": "LocalType"}, {"name": "SupportsWrite", "kind": "LocalType"}, {"name": "ReadOnlyBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "LocalType"}, {"name": "IndexableBuffer", "kind": "LocalType"}, {"name": "SupportsGetItemBuffer", "kind": "LocalType"}, {"name": "SizedBuffer", "kind": "LocalType"}, {"name": "_BufferWithLen", "kind": "Other"}, {"name": "ExcInfo", "kind": "Other"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "NoneType", "kind": "ImportedType", "fullname": "types.NoneType"}, {"name": "structseq", "kind": "LocalType"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "StrOrLiteralStr", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "DataclassInstance", "kind": "LocalType"}], "typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AbstractAsyncContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractAsyncContextManager"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "BuiltinFunctionType", "kind": "ImportedType", "fullname": "types.BuiltinFunctionType"}, {"name": "CodeType", "kind": "ImportedType", "fullname": "types.CodeType"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "FunctionType", "kind": "ImportedType", "fullname": "types.FunctionType"}, {"name": "MethodDescriptorType", "kind": "ImportedType", "fullname": "types.MethodDescriptorType"}, {"name": "MethodType", "kind": "ImportedType", "fullname": "types.MethodType"}, {"name": "MethodWrapperType", "kind": "ImportedType", "fullname": "types.MethodWrapperType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "WrapperDescriptorType", "kind": "ImportedType", "fullname": "types.WrapperDescriptorType"}, {"name": "_Never", "kind": "Other"}, {"name": "_ParamSpec", "kind": "LocalType"}, {"name": "_final", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "_promote", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "LocalType"}, {"name": "ParamSpecKwargs", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "LocalType"}, {"name": "_S", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "_Alias", "kind": "LocalType"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "_ProtocolMeta", "kind": "LocalType"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "LocalType"}, {"name": "SupportsFloat", "kind": "LocalType"}, {"name": "SupportsComplex", "kind": "LocalType"}, {"name": "SupportsBytes", "kind": "LocalType"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "SupportsAbs", "kind": "LocalType"}, {"name": "SupportsRound", "kind": "LocalType"}, {"name": "Sized", "kind": "LocalType"}, {"name": "Hashable", "kind": "LocalType"}, {"name": "Iterable", "kind": "LocalType"}, {"name": "Iterator", "kind": "LocalType"}, {"name": "Reversible", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "Generator", "kind": "LocalType"}, {"name": "Awaitable", "kind": "LocalType"}, {"name": "Coroutine", "kind": "LocalType"}, {"name": "AwaitableGenerator", "kind": "LocalType"}, {"name": "AsyncIterable", "kind": "LocalType"}, {"name": "AsyncIterator", "kind": "LocalType"}, {"name": "AsyncGenerator", "kind": "LocalType"}, {"name": "Container", "kind": "LocalType"}, {"name": "Collection", "kind": "LocalType"}, {"name": "Sequence", "kind": "LocalType"}, {"name": "MutableSequence", "kind": "LocalType"}, {"name": "AbstractSet", "kind": "LocalType"}, {"name": "MutableSet", "kind": "LocalType"}, {"name": "MappingView", "kind": "LocalType"}, {"name": "ItemsView", "kind": "LocalType"}, {"name": "KeysView", "kind": "LocalType"}, {"name": "ValuesView", "kind": "LocalType"}, {"name": "Mapping", "kind": "LocalType"}, {"name": "MutableMapping", "kind": "LocalType"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "LocalType"}, {"name": "BinaryIO", "kind": "LocalType"}, {"name": "TextIO", "kind": "LocalType"}, {"name": "ByteString", "kind": "Other"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "ForwardRef", "kind": "LocalType"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "_type_repr", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "_collections_abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "MappingProxyType", "kind": "ImportedType", "fullname": "types.MappingProxyType"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Protocol", "kind": "Other"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "dict_keys", "kind": "LocalType"}, {"name": "dict_values", "kind": "LocalType"}, {"name": "dict_items", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "typing_extensions": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing", "kind": "Module", "fullname": "typing"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "List", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Set", "kind": "Other"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Text", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Tuple", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "cast", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "Protocol", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "runtime", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "IntVar", "kind": "Other"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "TypedDict", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "_AnnotatedAlias", "kind": "Other"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "Never", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "assert_never", "kind": "Other"}, {"name": "assert_type", "kind": "Other"}, {"name": "clear_overloads", "kind": "Other"}, {"name": "get_overloads", "kind": "Other"}, {"name": "Required", "kind": "Other"}, {"name": "NotRequired", "kind": "Other"}, {"name": "Unpack", "kind": "Other"}, {"name": "dataclass_transform", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "TypeVarTuple", "kind": "LocalType"}, {"name": "deprecated", "kind": "Other"}, {"name": "override", "kind": "Other"}, {"name": "get_original_bases", "kind": "Other"}, {"name": "TypeAliasType", "kind": "LocalType"}, {"name": "Buffer", "kind": "LocalType"}, {"name": "is_protocol", "kind": "Other"}, {"name": "get_protocol_members", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}], "_ast": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "PyCF_ONLY_AST", "kind": "Other"}, {"name": "PyCF_TYPE_COMMENTS", "kind": "Other"}, {"name": "PyCF_ALLOW_TOP_LEVEL_AWAIT", "kind": "Other"}, {"name": "_Identifier", "kind": "Other"}, {"name": "AST", "kind": "LocalType"}, {"name": "mod", "kind": "LocalType"}, {"name": "type_ignore", "kind": "LocalType"}, {"name": "TypeIgnore", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "Module", "kind": "LocalType"}, {"name": "Interactive", "kind": "LocalType"}, {"name": "Expression", "kind": "LocalType"}, {"name": "stmt", "kind": "LocalType"}, {"name": "FunctionDef", "kind": "LocalType"}, {"name": "AsyncFunctionDef", "kind": "LocalType"}, {"name": "ClassDef", "kind": "LocalType"}, {"name": "Return", "kind": "LocalType"}, {"name": "Delete", "kind": "LocalType"}, {"name": "Assign", "kind": "LocalType"}, {"name": "AugAssign", "kind": "LocalType"}, {"name": "AnnAssign", "kind": "LocalType"}, {"name": "For", "kind": "LocalType"}, {"name": "AsyncFor", "kind": "LocalType"}, {"name": "While", "kind": "LocalType"}, {"name": "If", "kind": "LocalType"}, {"name": "With", "kind": "LocalType"}, {"name": "AsyncWith", "kind": "LocalType"}, {"name": "Raise", "kind": "LocalType"}, {"name": "Try", "kind": "LocalType"}, {"name": "Assert", "kind": "LocalType"}, {"name": "Import", "kind": "LocalType"}, {"name": "ImportFrom", "kind": "LocalType"}, {"name": "Global", "kind": "LocalType"}, {"name": "Nonlocal", "kind": "LocalType"}, {"name": "Expr", "kind": "LocalType"}, {"name": "Pass", "kind": "LocalType"}, {"name": "Break", "kind": "LocalType"}, {"name": "Continue", "kind": "LocalType"}, {"name": "expr", "kind": "LocalType"}, {"name": "BoolOp", "kind": "LocalType"}, {"name": "BinOp", "kind": "LocalType"}, {"name": "UnaryOp", "kind": "LocalType"}, {"name": "Lambda", "kind": "LocalType"}, {"name": "IfExp", "kind": "LocalType"}, {"name": "Dict", "kind": "LocalType"}, {"name": "Set", "kind": "LocalType"}, {"name": "ListComp", "kind": "LocalType"}, {"name": "SetComp", "kind": "LocalType"}, {"name": "DictComp", "kind": "LocalType"}, {"name": "GeneratorExp", "kind": "LocalType"}, {"name": "Await", "kind": "LocalType"}, {"name": "Yield", "kind": "LocalType"}, {"name": "YieldFrom", "kind": "LocalType"}, {"name": "Compare", "kind": "LocalType"}, {"name": "Call", "kind": "LocalType"}, {"name": "FormattedValue", "kind": "LocalType"}, {"name": "JoinedStr", "kind": "LocalType"}, {"name": "Constant", "kind": "LocalType"}, {"name": "NamedExpr", "kind": "LocalType"}, {"name": "Attribute", "kind": "LocalType"}, {"name": "_Slice", "kind": "Other"}, {"name": "Slice", "kind": "LocalType"}, {"name": "Subscript", "kind": "LocalType"}, {"name": "Starred", "kind": "LocalType"}, {"name": "Name", "kind": "LocalType"}, {"name": "List", "kind": "LocalType"}, {"name": "Tuple", "kind": "LocalType"}, {"name": "expr_context", "kind": "LocalType"}, {"name": "Del", "kind": "LocalType"}, {"name": "Load", "kind": "LocalType"}, {"name": "Store", "kind": "LocalType"}, {"name": "boolop", "kind": "LocalType"}, {"name": "And", "kind": "LocalType"}, {"name": "Or", "kind": "LocalType"}, {"name": "operator", "kind": "LocalType"}, {"name": "Add", "kind": "LocalType"}, {"name": "BitAnd", "kind": "LocalType"}, {"name": "BitOr", "kind": "LocalType"}, {"name": "BitXor", "kind": "LocalType"}, {"name": "Div", "kind": "LocalType"}, {"name": "FloorDiv", "kind": "LocalType"}, {"name": "LShift", "kind": "LocalType"}, {"name": "Mod", "kind": "LocalType"}, {"name": "Mult", "kind": "LocalType"}, {"name": "MatMult", "kind": "LocalType"}, {"name": "Pow", "kind": "LocalType"}, {"name": "RShift", "kind": "LocalType"}, {"name": "Sub", "kind": "LocalType"}, {"name": "unaryop", "kind": "LocalType"}, {"name": "Invert", "kind": "LocalType"}, {"name": "Not", "kind": "LocalType"}, {"name": "UAdd", "kind": "LocalType"}, {"name": "USub", "kind": "LocalType"}, {"name": "cmpop", "kind": "LocalType"}, {"name": "Eq", "kind": "LocalType"}, {"name": "Gt", "kind": "LocalType"}, {"name": "GtE", "kind": "LocalType"}, {"name": "In", "kind": "LocalType"}, {"name": "Is", "kind": "LocalType"}, {"name": "IsNot", "kind": "LocalType"}, {"name": "Lt", "kind": "LocalType"}, {"name": "LtE", "kind": "LocalType"}, {"name": "NotEq", "kind": "LocalType"}, {"name": "NotIn", "kind": "LocalType"}, {"name": "comprehension", "kind": "LocalType"}, {"name": "excepthandler", "kind": "LocalType"}, {"name": "ExceptHandler", "kind": "LocalType"}, {"name": "arguments", "kind": "LocalType"}, {"name": "arg", "kind": "LocalType"}, {"name": "keyword", "kind": "LocalType"}, {"name": "alias", "kind": "LocalType"}, {"name": "withitem", "kind": "LocalType"}, {"name": "Match", "kind": "LocalType"}, {"name": "pattern", "kind": "LocalType"}, {"name": "_Pattern", "kind": "Other"}, {"name": "match_case", "kind": "LocalType"}, {"name": "MatchValue", "kind": "LocalType"}, {"name": "MatchSingleton", "kind": "LocalType"}, {"name": "MatchSequence", "kind": "LocalType"}, {"name": "MatchStar", "kind": "LocalType"}, {"name": "MatchMapping", "kind": "LocalType"}, {"name": "MatchClass", "kind": "LocalType"}, {"name": "MatchAs", "kind": "LocalType"}, {"name": "MatchOr", "kind": "LocalType"}], "io": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "builtins", "kind": "Module", "fullname": "builtins"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "_Opener", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "DEFAULT_BUFFER_SIZE", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "open_code", "kind": "Other"}, {"name": "BlockingIOError", "kind": "Other"}, {"name": "UnsupportedOperation", "kind": "LocalType"}, {"name": "IOBase", "kind": "LocalType"}, {"name": "RawIOBase", "kind": "LocalType"}, {"name": "BufferedIOBase", "kind": "LocalType"}, {"name": "FileIO", "kind": "LocalType"}, {"name": "BytesIO", "kind": "LocalType"}, {"name": "BufferedReader", "kind": "LocalType"}, {"name": "BufferedWriter", "kind": "LocalType"}, {"name": "BufferedRandom", "kind": "LocalType"}, {"name": "BufferedRWPair", "kind": "LocalType"}, {"name": "TextIOBase", "kind": "LocalType"}, {"name": "TextIOWrapper", "kind": "LocalType"}, {"name": "StringIO", "kind": "LocalType"}, {"name": "IncrementalNewlineDecoder", "kind": "LocalType"}], "abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Concatenate", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "ABCMeta", "kind": "LocalType"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "abstractclassmethod", "kind": "LocalType"}, {"name": "abstractstaticmethod", "kind": "LocalType"}, {"name": "abstractproperty", "kind": "LocalType"}, {"name": "ABC", "kind": "LocalType"}, {"name": "get_cache_token", "kind": "Other"}, {"name": "update_abstractmethods", "kind": "Other"}], "importlib.metadata._meta": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_T", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "SimplePath", "kind": "LocalType"}], "email.message": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Policy", "kind": "ImportedType", "fullname": "email.policy.Policy"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_PayloadType", "kind": "Other"}, {"name": "_CharsetType", "kind": "Other"}, {"name": "_HeaderType", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "MIMEPart", "kind": "LocalType"}, {"name": "EmailMessage", "kind": "LocalType"}], "pathlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "stat_result", "kind": "ImportedType", "fullname": "os.stat_result"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "PurePath", "kind": "LocalType"}, {"name": "PurePosixPath", "kind": "LocalType"}, {"name": "PureWindowsPath", "kind": "LocalType"}, {"name": "Path", "kind": "LocalType"}, {"name": "PosixPath", "kind": "LocalType"}, {"name": "WindowsPath", "kind": "LocalType"}], "os": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "OSError", "kind": "ImportedType", "fullname": "builtins.OSError"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "_TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "Popen", "kind": "ImportedType", "fullname": "subprocess.Popen"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_path", "kind": "Module", "fullname": "os.path"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "path", "kind": "Module", "fullname": "os.path"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "supports_bytes_environ", "kind": "Other"}, {"name": "supports_dir_fd", "kind": "Other"}, {"name": "supports_fd", "kind": "Other"}, {"name": "supports_effective_ids", "kind": "Other"}, {"name": "supports_follow_symlinks", "kind": "Other"}, {"name": "PRIO_PROCESS", "kind": "Other"}, {"name": "PRIO_PGRP", "kind": "Other"}, {"name": "PRIO_USER", "kind": "Other"}, {"name": "F_LOCK", "kind": "Other"}, {"name": "F_TLOCK", "kind": "Other"}, {"name": "F_ULOCK", "kind": "Other"}, {"name": "F_TEST", "kind": "Other"}, {"name": "POSIX_FADV_NORMAL", "kind": "Other"}, {"name": "POSIX_FADV_SEQUENTIAL", "kind": "Other"}, {"name": "POSIX_FADV_RANDOM", "kind": "Other"}, {"name": "POSIX_FADV_NOREUSE", "kind": "Other"}, {"name": "POSIX_FADV_WILLNEED", "kind": "Other"}, {"name": "POSIX_FADV_DONTNEED", "kind": "Other"}, {"name": "SF_NODISKIO", "kind": "Other"}, {"name": "SF_MNOWAIT", "kind": "Other"}, {"name": "SF_SYNC", "kind": "Other"}, {"name": "XATTR_SIZE_MAX", "kind": "Other"}, {"name": "XATTR_CREATE", "kind": "Other"}, {"name": "XATTR_REPLACE", "kind": "Other"}, {"name": "P_PID", "kind": "Other"}, {"name": "P_PGID", "kind": "Other"}, {"name": "P_ALL", "kind": "Other"}, {"name": "P_PIDFD", "kind": "Other"}, {"name": "WEXITED", "kind": "Other"}, {"name": "WSTOPPED", "kind": "Other"}, {"name": "WNOWAIT", "kind": "Other"}, {"name": "CLD_EXITED", "kind": "Other"}, {"name": "CLD_DUMPED", "kind": "Other"}, {"name": "CLD_TRAPPED", "kind": "Other"}, {"name": "CLD_CONTINUED", "kind": "Other"}, {"name": "CLD_KILLED", "kind": "Other"}, {"name": "CLD_STOPPED", "kind": "Other"}, {"name": "SCHED_OTHER", "kind": "Other"}, {"name": "SCHED_BATCH", "kind": "Other"}, {"name": "SCHED_IDLE", "kind": "Other"}, {"name": "SCHED_SPORADIC", "kind": "Other"}, {"name": "SCHED_FIFO", "kind": "Other"}, {"name": "SCHED_RR", "kind": "Other"}, {"name": "SCHED_RESET_ON_FORK", "kind": "Other"}, {"name": "RTLD_LAZY", "kind": "Other"}, {"name": "RTLD_NOW", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "RTLD_NODELETE", "kind": "Other"}, {"name": "RTLD_NOLOAD", "kind": "Other"}, {"name": "RTLD_DEEPBIND", "kind": "Other"}, {"name": "GRND_NONBLOCK", "kind": "Other"}, {"name": "GRND_RANDOM", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "SEEK_DATA", "kind": "Other"}, {"name": "SEEK_HOLE", "kind": "Other"}, {"name": "O_RDONLY", "kind": "Other"}, {"name": "O_WRONLY", "kind": "Other"}, {"name": "O_RDWR", "kind": "Other"}, {"name": "O_APPEND", "kind": "Other"}, {"name": "O_CREAT", "kind": "Other"}, {"name": "O_EXCL", "kind": "Other"}, {"name": "O_TRUNC", "kind": "Other"}, {"name": "O_DSYNC", "kind": "Other"}, {"name": "O_RSYNC", "kind": "Other"}, {"name": "O_SYNC", "kind": "Other"}, {"name": "O_NDELAY", "kind": "Other"}, {"name": "O_NONBLOCK", "kind": "Other"}, {"name": "O_NOCTTY", "kind": "Other"}, {"name": "O_CLOEXEC", "kind": "Other"}, {"name": "O_SHLOCK", "kind": "Other"}, {"name": "O_EXLOCK", "kind": "Other"}, {"name": "O_BINARY", "kind": "Other"}, {"name": "O_NOINHERIT", "kind": "Other"}, {"name": "O_SHORT_LIVED", "kind": "Other"}, {"name": "O_TEMPORARY", "kind": "Other"}, {"name": "O_RANDOM", "kind": "Other"}, {"name": "O_SEQUENTIAL", "kind": "Other"}, {"name": "O_TEXT", "kind": "Other"}, {"name": "O_ASYNC", "kind": "Other"}, {"name": "O_DIRECT", "kind": "Other"}, {"name": "O_DIRECTORY", "kind": "Other"}, {"name": "O_NOFOLLOW", "kind": "Other"}, {"name": "O_NOATIME", "kind": "Other"}, {"name": "O_PATH", "kind": "Other"}, {"name": "O_TMPFILE", "kind": "Other"}, {"name": "O_LARGEFILE", "kind": "Other"}, {"name": "O_ACCMODE", "kind": "Other"}, {"name": "ST_APPEND", "kind": "Other"}, {"name": "ST_MANDLOCK", "kind": "Other"}, {"name": "ST_NOATIME", "kind": "Other"}, {"name": "ST_NODEV", "kind": "Other"}, {"name": "ST_NODIRATIME", "kind": "Other"}, {"name": "ST_NOEXEC", "kind": "Other"}, {"name": "ST_RELATIME", "kind": "Other"}, {"name": "ST_SYNCHRONOUS", "kind": "Other"}, {"name": "ST_WRITE", "kind": "Other"}, {"name": "NGROUPS_MAX", "kind": "Other"}, {"name": "ST_NOSUID", "kind": "Other"}, {"name": "ST_RDONLY", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "linesep", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "name", "kind": "Other"}, {"name": "F_OK", "kind": "Other"}, {"name": "R_OK", "kind": "Other"}, {"name": "W_OK", "kind": "Other"}, {"name": "X_OK", "kind": "Other"}, {"name": "_EnvironCodeFunc", "kind": "Other"}, {"name": "_Environ", "kind": "LocalType"}, {"name": "environ", "kind": "Other"}, {"name": "environb", "kind": "Other"}, {"name": "confstr_names", "kind": "Other"}, {"name": "pathconf_names", "kind": "Other"}, {"name": "sysconf_names", "kind": "Other"}, {"name": "EX_OK", "kind": "Other"}, {"name": "EX_USAGE", "kind": "Other"}, {"name": "EX_DATAERR", "kind": "Other"}, {"name": "EX_NOINPUT", "kind": "Other"}, {"name": "EX_NOUSER", "kind": "Other"}, {"name": "EX_NOHOST", "kind": "Other"}, {"name": "EX_UNAVAILABLE", "kind": "Other"}, {"name": "EX_SOFTWARE", "kind": "Other"}, {"name": "EX_OSERR", "kind": "Other"}, {"name": "EX_OSFILE", "kind": "Other"}, {"name": "EX_CANTCREAT", "kind": "Other"}, {"name": "EX_IOERR", "kind": "Other"}, {"name": "EX_TEMPFAIL", "kind": "Other"}, {"name": "EX_PROTOCOL", "kind": "Other"}, {"name": "EX_NOPERM", "kind": "Other"}, {"name": "EX_CONFIG", "kind": "Other"}, {"name": "EX_NOTFOUND", "kind": "Other"}, {"name": "P_NOWAIT", "kind": "Other"}, {"name": "P_NOWAITO", "kind": "Other"}, {"name": "P_WAIT", "kind": "Other"}, {"name": "WNOHANG", "kind": "Other"}, {"name": "WCONTINUED", "kind": "Other"}, {"name": "WUNTRACED", "kind": "Other"}, {"name": "TMP_MAX", "kind": "Other"}, {"name": "stat_result", "kind": "LocalType"}, {"name": "PathLike", "kind": "LocalType"}, {"name": "listdir", "kind": "Other"}, {"name": "DirEntry", "kind": "LocalType"}, {"name": "statvfs_result", "kind": "LocalType"}, {"name": "fsencode", "kind": "Other"}, {"name": "fsdecode", "kind": "Other"}, {"name": "fspath", "kind": "Other"}, {"name": "get_exec_path", "kind": "Other"}, {"name": "getlogin", "kind": "Other"}, {"name": "getpid", "kind": "Other"}, {"name": "getppid", "kind": "Other"}, {"name": "strerror", "kind": "Other"}, {"name": "umask", "kind": "Other"}, {"name": "uname_result", "kind": "LocalType"}, {"name": "ctermid", "kind": "Other"}, {"name": "getegid", "kind": "Other"}, {"name": "geteuid", "kind": "Other"}, {"name": "getgid", "kind": "Other"}, {"name": "getgrouplist", "kind": "Other"}, {"name": "getgroups", "kind": "Other"}, {"name": "initgroups", "kind": "Other"}, {"name": "getpgid", "kind": "Other"}, {"name": "getpgrp", "kind": "Other"}, {"name": "getpriority", "kind": "Other"}, {"name": "setpriority", "kind": "Other"}, {"name": "getresuid", "kind": "Other"}, {"name": "getresgid", "kind": "Other"}, {"name": "getuid", "kind": "Other"}, {"name": "setegid", "kind": "Other"}, {"name": "seteuid", "kind": "Other"}, {"name": "setgid", "kind": "Other"}, {"name": "setgroups", "kind": "Other"}, {"name": "setpgrp", "kind": "Other"}, {"name": "setpgid", "kind": "Other"}, {"name": "setregid", "kind": "Other"}, {"name": "setresgid", "kind": "Other"}, {"name": "setresuid", "kind": "Other"}, {"name": "setreuid", "kind": "Other"}, {"name": "getsid", "kind": "Other"}, {"name": "setsid", "kind": "Other"}, {"name": "setuid", "kind": "Other"}, {"name": "uname", "kind": "Other"}, {"name": "getenv", "kind": "Other"}, {"name": "getenvb", "kind": "Other"}, {"name": "putenv", "kind": "Other"}, {"name": "unsetenv", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "fdopen", "kind": "Other"}, {"name": "close", "kind": "Other"}, {"name": "closerange", "kind": "Other"}, {"name": "device_encoding", "kind": "Other"}, {"name": "dup", "kind": "Other"}, {"name": "dup2", "kind": "Other"}, {"name": "fstat", "kind": "Other"}, {"name": "ftruncate", "kind": "Other"}, {"name": "fsync", "kind": "Other"}, {"name": "isatty", "kind": "Other"}, {"name": "lseek", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "pipe", "kind": "Other"}, {"name": "read", "kind": "Other"}, {"name": "fchmod", "kind": "Other"}, {"name": "fchown", "kind": "Other"}, {"name": "fpathconf", "kind": "Other"}, {"name": "fstatvfs", "kind": "Other"}, {"name": "get_blocking", "kind": "Other"}, {"name": "set_blocking", "kind": "Other"}, {"name": "lockf", "kind": "Other"}, {"name": "openpty", "kind": "Other"}, {"name": "fdatasync", "kind": "Other"}, {"name": "pipe2", "kind": "Other"}, {"name": "posix_fallocate", "kind": "Other"}, {"name": "posix_fadvise", "kind": "Other"}, {"name": "pread", "kind": "Other"}, {"name": "pwrite", "kind": "Other"}, {"name": "preadv", "kind": "Other"}, {"name": "pwritev", "kind": "Other"}, {"name": "RWF_APPEND", "kind": "Other"}, {"name": "RWF_DSYNC", "kind": "Other"}, {"name": "RWF_SYNC", "kind": "Other"}, {"name": "RWF_HIPRI", "kind": "Other"}, {"name": "RWF_NOWAIT", "kind": "Other"}, {"name": "sendfile", "kind": "Other"}, {"name": "readv", "kind": "Other"}, {"name": "writev", "kind": "Other"}, {"name": "terminal_size", "kind": "LocalType"}, {"name": "get_terminal_size", "kind": "Other"}, {"name": "get_inheritable", "kind": "Other"}, {"name": "set_inheritable", "kind": "Other"}, {"name": "tcgetpgrp", "kind": "Other"}, {"name": "tcsetpgrp", "kind": "Other"}, {"name": "ttyname", "kind": "Other"}, {"name": "write", "kind": "Other"}, {"name": "access", "kind": "Other"}, {"name": "chdir", "kind": "Other"}, {"name": "fchdir", "kind": "Other"}, {"name": "getcwd", "kind": "Other"}, {"name": "getcwdb", "kind": "Other"}, {"name": "chmod", "kind": "Other"}, {"name": "chroot", "kind": "Other"}, {"name": "chown", "kind": "Other"}, {"name": "lchown", "kind": "Other"}, {"name": "link", "kind": "Other"}, {"name": "lstat", "kind": "Other"}, {"name": "mkdir", "kind": "Other"}, {"name": "mkfifo", "kind": "Other"}, {"name": "makedirs", "kind": "Other"}, {"name": "mknod", "kind": "Other"}, {"name": "major", "kind": "Other"}, {"name": "minor", "kind": "Other"}, {"name": "makedev", "kind": "Other"}, {"name": "pathconf", "kind": "Other"}, {"name": "readlink", "kind": "Other"}, {"name": "remove", "kind": "Other"}, {"name": "removedirs", "kind": "Other"}, {"name": "rename", "kind": "Other"}, {"name": "renames", "kind": "Other"}, {"name": "replace", "kind": "Other"}, {"name": "rmdir", "kind": "Other"}, {"name": "_ScandirIterator", "kind": "LocalType"}, {"name": "scandir", "kind": "Other"}, {"name": "stat", "kind": "Other"}, {"name": "statvfs", "kind": "Other"}, {"name": "symlink", "kind": "Other"}, {"name": "sync", "kind": "Other"}, {"name": "truncate", "kind": "Other"}, {"name": "unlink", "kind": "Other"}, {"name": "utime", "kind": "Other"}, {"name": "_OnError", "kind": "Other"}, {"name": "walk", "kind": "Other"}, {"name": "fwalk", "kind": "Other"}, {"name": "getxattr", "kind": "Other"}, {"name": "listxattr", "kind": "Other"}, {"name": "removexattr", "kind": "Other"}, {"name": "setxattr", "kind": "Other"}, {"name": "abort", "kind": "Other"}, {"name": "execl", "kind": "Other"}, {"name": "execlp", "kind": "Other"}, {"name": "execle", "kind": "Other"}, {"name": "execlpe", "kind": "Other"}, {"name": "_ExecVArgs", "kind": "Other"}, {"name": "_ExecEnv", "kind": "Other"}, {"name": "execv", "kind": "Other"}, {"name": "execve", "kind": "Other"}, {"name": "execvp", "kind": "Other"}, {"name": "execvpe", "kind": "Other"}, {"name": "_exit", "kind": "Other"}, {"name": "kill", "kind": "Other"}, {"name": "fork", "kind": "Other"}, {"name": "forkpty", "kind": "Other"}, {"name": "killpg", "kind": "Other"}, {"name": "nice", "kind": "Other"}, {"name": "plock", "kind": "Other"}, {"name": "_wrap_close", "kind": "LocalType"}, {"name": "popen", "kind": "Other"}, {"name": "spawnl", "kind": "Other"}, {"name": "spawnle", "kind": "Other"}, {"name": "spawnv", "kind": "Other"}, {"name": "spawnve", "kind": "Other"}, {"name": "system", "kind": "Other"}, {"name": "times_result", "kind": "LocalType"}, {"name": "times", "kind": "Other"}, {"name": "waitpid", "kind": "Other"}, {"name": "spawnlp", "kind": "Other"}, {"name": "spawnlpe", "kind": "Other"}, {"name": "spawnvp", "kind": "Other"}, {"name": "spawnvpe", "kind": "Other"}, {"name": "wait", "kind": "Other"}, {"name": "waitid_result", "kind": "LocalType"}, {"name": "waitid", "kind": "Other"}, {"name": "wait3", "kind": "Other"}, {"name": "wait4", "kind": "Other"}, {"name": "WCOREDUMP", "kind": "Other"}, {"name": "WIFCONTINUED", "kind": "Other"}, {"name": "WIFSTOPPED", "kind": "Other"}, {"name": "WIFSIGNALED", "kind": "Other"}, {"name": "WIFEXITED", "kind": "Other"}, {"name": "WEXITSTATUS", "kind": "Other"}, {"name": "WSTOPSIG", "kind": "Other"}, {"name": "WTERMSIG", "kind": "Other"}, {"name": "posix_spawn", "kind": "Other"}, {"name": "posix_spawnp", "kind": "Other"}, {"name": "POSIX_SPAWN_OPEN", "kind": "Other"}, {"name": "POSIX_SPAWN_CLOSE", "kind": "Other"}, {"name": "POSIX_SPAWN_DUP2", "kind": "Other"}, {"name": "sched_param", "kind": "LocalType"}, {"name": "sched_get_priority_min", "kind": "Other"}, {"name": "sched_get_priority_max", "kind": "Other"}, {"name": "sched_yield", "kind": "Other"}, {"name": "sched_setscheduler", "kind": "Other"}, {"name": "sched_getscheduler", "kind": "Other"}, {"name": "sched_rr_get_interval", "kind": "Other"}, {"name": "sched_setparam", "kind": "Other"}, {"name": "sched_getparam", "kind": "Other"}, {"name": "sched_setaffinity", "kind": "Other"}, {"name": "sched_getaffinity", "kind": "Other"}, {"name": "cpu_count", "kind": "Other"}, {"name": "confstr", "kind": "Other"}, {"name": "getloadavg", "kind": "Other"}, {"name": "sysconf", "kind": "Other"}, {"name": "getrandom", "kind": "Other"}, {"name": "urandom", "kind": "Other"}, {"name": "register_at_fork", "kind": "Other"}, {"name": "MFD_CLOEXEC", "kind": "Other"}, {"name": "MFD_ALLOW_SEALING", "kind": "Other"}, {"name": "MFD_HUGETLB", "kind": "Other"}, {"name": "MFD_HUGE_SHIFT", "kind": "Other"}, {"name": "MFD_HUGE_MASK", "kind": "Other"}, {"name": "MFD_HUGE_64KB", "kind": "Other"}, {"name": "MFD_HUGE_512KB", "kind": "Other"}, {"name": "MFD_HUGE_1MB", "kind": "Other"}, {"name": "MFD_HUGE_2MB", "kind": "Other"}, {"name": "MFD_HUGE_8MB", "kind": "Other"}, {"name": "MFD_HUGE_16MB", "kind": "Other"}, {"name": "MFD_HUGE_32MB", "kind": "Other"}, {"name": "MFD_HUGE_256MB", "kind": "Other"}, {"name": "MFD_HUGE_512MB", "kind": "Other"}, {"name": "MFD_HUGE_1GB", "kind": "Other"}, {"name": "MFD_HUGE_2GB", "kind": "Other"}, {"name": "MFD_HUGE_16GB", "kind": "Other"}, {"name": "memfd_create", "kind": "Other"}, {"name": "copy_file_range", "kind": "Other"}, {"name": "waitstatus_to_exitcode", "kind": "Other"}, {"name": "pidfd_open", "kind": "Other"}], "re": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sre_compile", "kind": "Module", "fullname": "sre_compile"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "Match", "kind": "LocalType"}, {"name": "Pattern", "kind": "LocalType"}, {"name": "RegexFlag", "kind": "LocalType"}, {"name": "A", "kind": "Other"}, {"name": "ASCII", "kind": "Other"}, {"name": "DEBUG", "kind": "Other"}, {"name": "I", "kind": "Other"}, {"name": "IGNORECASE", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "LOCALE", "kind": "Other"}, {"name": "M", "kind": "Other"}, {"name": "MULTILINE", "kind": "Other"}, {"name": "S", "kind": "Other"}, {"name": "DOTALL", "kind": "Other"}, {"name": "X", "kind": "Other"}, {"name": "VERBOSE", "kind": "Other"}, {"name": "U", "kind": "Other"}, {"name": "UNICODE", "kind": "Other"}, {"name": "T", "kind": "Other"}, {"name": "TEMPLATE", "kind": "Other"}, {"name": "_FlagsType", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "search", "kind": "Other"}, {"name": "match", "kind": "Other"}, {"name": "fullmatch", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "findall", "kind": "Other"}, {"name": "finditer", "kind": "Other"}, {"name": "sub", "kind": "Other"}, {"name": "subn", "kind": "Other"}, {"name": "escape", "kind": "Other"}, {"name": "purge", "kind": "Other"}, {"name": "template", "kind": "Other"}], "dataclasses": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "DataclassInstance", "kind": "ImportedType", "fullname": "_typeshed.DataclassInstance"}, {"name": "Type", "kind": "ImportedType", "fullname": "builtins.type"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_DataclassT", "kind": "Other"}, {"name": "_MISSING_TYPE", "kind": "LocalType"}, {"name": "MISSING", "kind": "Other"}, {"name": "KW_ONLY", "kind": "LocalType"}, {"name": "asdict", "kind": "Other"}, {"name": "astuple", "kind": "Other"}, {"name": "dataclass", "kind": "Other"}, {"name": "_DefaultFactory", "kind": "LocalType"}, {"name": "Field", "kind": "LocalType"}, {"name": "field", "kind": "Other"}, {"name": "fields", "kind": "Other"}, {"name": "is_dataclass", "kind": "Other"}, {"name": "FrozenInstanceError", "kind": "LocalType"}, {"name": "_InitVarMeta", "kind": "Other"}, {"name": "InitVar", "kind": "LocalType"}, {"name": "make_dataclass", "kind": "Other"}, {"name": "replace", "kind": "Other"}], "contextlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_io", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_ExitFunc", "kind": "Other"}, {"name": "_CM_EF", "kind": "Other"}, {"name": "AbstractContextManager", "kind": "LocalType"}, {"name": "AbstractAsyncContextManager", "kind": "LocalType"}, {"name": "ContextDecorator", "kind": "LocalType"}, {"name": "_GeneratorContextManager", "kind": "LocalType"}, {"name": "contextmanager", "kind": "Other"}, {"name": "_AF", "kind": "Other"}, {"name": "AsyncContextDecorator", "kind": "LocalType"}, {"name": "_AsyncGeneratorContextManager", "kind": "LocalType"}, {"name": "asynccontextmanager", "kind": "Other"}, {"name": "_SupportsClose", "kind": "LocalType"}, {"name": "_SupportsCloseT", "kind": "Other"}, {"name": "closing", "kind": "LocalType"}, {"name": "_SupportsAclose", "kind": "LocalType"}, {"name": "_SupportsAcloseT", "kind": "Other"}, {"name": "aclosing", "kind": "LocalType"}, {"name": "suppress", "kind": "LocalType"}, {"name": "_RedirectStream", "kind": "LocalType"}, {"name": "redirect_stdout", "kind": "LocalType"}, {"name": "redirect_stderr", "kind": "LocalType"}, {"name": "ExitStack", "kind": "LocalType"}, {"name": "_ExitCoroFunc", "kind": "Other"}, {"name": "_ACM_EF", "kind": "Other"}, {"name": "AsyncExitStack", "kind": "LocalType"}, {"name": "nullcontext", "kind": "LocalType"}], "codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "BOM32_BE", "kind": "Other"}, {"name": "BOM32_LE", "kind": "Other"}, {"name": "BOM64_BE", "kind": "Other"}, {"name": "BOM64_LE", "kind": "Other"}, {"name": "_WritableStream", "kind": "LocalType"}, {"name": "_ReadableStream", "kind": "LocalType"}, {"name": "_Stream", "kind": "LocalType"}, {"name": "_Encoder", "kind": "LocalType"}, {"name": "_Decoder", "kind": "LocalType"}, {"name": "_StreamReader", "kind": "LocalType"}, {"name": "_StreamWriter", "kind": "LocalType"}, {"name": "_IncrementalEncoder", "kind": "LocalType"}, {"name": "_IncrementalDecoder", "kind": "LocalType"}, {"name": "CodecInfo", "kind": "LocalType"}, {"name": "getencoder", "kind": "Other"}, {"name": "getdecoder", "kind": "Other"}, {"name": "getincrementalencoder", "kind": "Other"}, {"name": "getincrementaldecoder", "kind": "Other"}, {"name": "getreader", "kind": "Other"}, {"name": "getwriter", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "EncodedFile", "kind": "Other"}, {"name": "iterencode", "kind": "Other"}, {"name": "iterdecode", "kind": "Other"}, {"name": "BOM", "kind": "Other"}, {"name": "BOM_BE", "kind": "Other"}, {"name": "BOM_LE", "kind": "Other"}, {"name": "BOM_UTF8", "kind": "Other"}, {"name": "BOM_UTF16", "kind": "Other"}, {"name": "BOM_UTF16_BE", "kind": "Other"}, {"name": "BOM_UTF16_LE", "kind": "Other"}, {"name": "BOM_UTF32", "kind": "Other"}, {"name": "BOM_UTF32_BE", "kind": "Other"}, {"name": "BOM_UTF32_LE", "kind": "Other"}, {"name": "strict_errors", "kind": "Other"}, {"name": "replace_errors", "kind": "Other"}, {"name": "ignore_errors", "kind": "Other"}, {"name": "xmlcharrefreplace_errors", "kind": "Other"}, {"name": "backslashreplace_errors", "kind": "Other"}, {"name": "namereplace_errors", "kind": "Other"}, {"name": "Codec", "kind": "LocalType"}, {"name": "IncrementalEncoder", "kind": "LocalType"}, {"name": "IncrementalDecoder", "kind": "LocalType"}, {"name": "BufferedIncrementalEncoder", "kind": "LocalType"}, {"name": "BufferedIncrementalDecoder", "kind": "LocalType"}, {"name": "StreamWriter", "kind": "LocalType"}, {"name": "StreamReader", "kind": "LocalType"}, {"name": "StreamReaderWriter", "kind": "LocalType"}, {"name": "StreamRecoder", "kind": "LocalType"}], "email": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "Policy", "kind": "LocalType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "message_from_string", "kind": "Other"}, {"name": "message_from_bytes", "kind": "Other"}, {"name": "message_from_file", "kind": "Other"}, {"name": "message_from_binary_file", "kind": "Other"}], "email.charset": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "__all__", "kind": "Other"}, {"name": "QP", "kind": "Other"}, {"name": "BASE64", "kind": "Other"}, {"name": "SHORTEST", "kind": "Other"}, {"name": "Charset", "kind": "LocalType"}, {"name": "add_charset", "kind": "Other"}, {"name": "add_alias", "kind": "Other"}, {"name": "add_codec", "kind": "Other"}], "email.contentmanager": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "ContentManager", "kind": "LocalType"}, {"name": "raw_data_manager", "kind": "Other"}], "email.errors": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "MessageError", "kind": "LocalType"}, {"name": "MessageParseError", "kind": "LocalType"}, {"name": "HeaderParseError", "kind": "LocalType"}, {"name": "BoundaryError", "kind": "LocalType"}, {"name": "MultipartConversionError", "kind": "LocalType"}, {"name": "CharsetError", "kind": "LocalType"}, {"name": "MessageDefect", "kind": "LocalType"}, {"name": "NoBoundaryInMultipartDefect", "kind": "LocalType"}, {"name": "StartBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "FirstHeaderLineIsContinuationDefect", "kind": "LocalType"}, {"name": "MisplacedEnvelopeHeaderDefect", "kind": "LocalType"}, {"name": "MultipartInvariantViolationDefect", "kind": "LocalType"}, {"name": "InvalidMultipartContentTransferEncodingDefect", "kind": "LocalType"}, {"name": "UndecodableBytesDefect", "kind": "LocalType"}, {"name": "InvalidBase64PaddingDefect", "kind": "LocalType"}, {"name": "InvalidBase64CharactersDefect", "kind": "LocalType"}, {"name": "InvalidBase64LengthDefect", "kind": "LocalType"}, {"name": "CloseBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "MissingHeaderBodySeparatorDefect", "kind": "LocalType"}, {"name": "MalformedHeaderDefect", "kind": "Other"}, {"name": "HeaderDefect", "kind": "LocalType"}, {"name": "InvalidHeaderDefect", "kind": "LocalType"}, {"name": "HeaderMissingRequiredValue", "kind": "LocalType"}, {"name": "NonPrintableDefect", "kind": "LocalType"}, {"name": "ObsoleteHeaderDefect", "kind": "LocalType"}, {"name": "NonASCIILocalPartDefect", "kind": "LocalType"}, {"name": "InvalidDateDefect", "kind": "LocalType"}], "email.policy": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Header", "kind": "ImportedType", "fullname": "email.header.Header"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Policy", "kind": "LocalType"}, {"name": "Compat32", "kind": "LocalType"}, {"name": "compat32", "kind": "Other"}, {"name": "EmailPolicy", "kind": "LocalType"}, {"name": "default", "kind": "Other"}, {"name": "SMTP", "kind": "Other"}, {"name": "SMTPUTF8", "kind": "Other"}, {"name": "HTTP", "kind": "Other"}, {"name": "strict", "kind": "Other"}], "os.path": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "subprocess": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_FILE", "kind": "Other"}, {"name": "_InputString", "kind": "Other"}, {"name": "_CMD", "kind": "Other"}, {"name": "_ENV", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_USE_POSIX_SPAWN", "kind": "Other"}, {"name": "CompletedProcess", "kind": "LocalType"}, {"name": "run", "kind": "Other"}, {"name": "call", "kind": "Other"}, {"name": "check_call", "kind": "Other"}, {"name": "check_output", "kind": "Other"}, {"name": "PIPE", "kind": "Other"}, {"name": "STDOUT", "kind": "Other"}, {"name": "DEVNULL", "kind": "Other"}, {"name": "SubprocessError", "kind": "LocalType"}, {"name": "TimeoutExpired", "kind": "LocalType"}, {"name": "CalledProcessError", "kind": "LocalType"}, {"name": "Popen", "kind": "LocalType"}, {"name": "getstatusoutput", "kind": "Other"}, {"name": "getoutput", "kind": "Other"}, {"name": "list2cmdline", "kind": "Other"}], "enum": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_EnumMemberT", "kind": "Other"}, {"name": "_EnumerationT", "kind": "Other"}, {"name": "_EnumNames", "kind": "Other"}, {"name": "_EnumDict", "kind": "LocalType"}, {"name": "EnumMeta", "kind": "LocalType"}, {"name": "_magic_enum_attr", "kind": "Other"}, {"name": "Enum", "kind": "LocalType"}, {"name": "_IntEnumBase", "kind": "Other"}, {"name": "IntEnum", "kind": "LocalType"}, {"name": "unique", "kind": "Other"}, {"name": "_auto_null", "kind": "Other"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "kind": "LocalType"}, {"name": "auto", "kind": "LocalType"}], "sre_compile": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NamedIntConstant", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "SubPattern", "kind": "ImportedType", "fullname": "sre_parse.SubPattern"}, {"name": "Any", "kind": "Other"}, {"name": "MAXCODE", "kind": "Other"}, {"name": "dis", "kind": "Other"}, {"name": "isstring", "kind": "Other"}, {"name": "compile", "kind": "Other"}], "sre_constants": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "LocalType"}, {"name": "_NamedIntConstant", "kind": "LocalType"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}], "_codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_EncodingMap", "kind": "LocalType"}, {"name": "_CharMap", "kind": "Other"}, {"name": "_Handler", "kind": "Other"}, {"name": "_SearchFunction", "kind": "Other"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "_BytesToBytesEncoding", "kind": "Other"}, {"name": "_StrToStrEncoding", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}], "email.header": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "Any", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Header", "kind": "LocalType"}, {"name": "decode_header", "kind": "Other"}, {"name": "make_header", "kind": "Other"}], "posixpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "AnyStr", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}], "sre_parse": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "_Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NIC", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "_Error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "SPECIAL_CHARS", "kind": "Other"}, {"name": "REPEAT_CHARS", "kind": "Other"}, {"name": "DIGITS", "kind": "Other"}, {"name": "OCTDIGITS", "kind": "Other"}, {"name": "HEXDIGITS", "kind": "Other"}, {"name": "ASCIILETTERS", "kind": "Other"}, {"name": "WHITESPACE", "kind": "Other"}, {"name": "ESCAPES", "kind": "Other"}, {"name": "CATEGORIES", "kind": "Other"}, {"name": "FLAGS", "kind": "Other"}, {"name": "TYPE_FLAGS", "kind": "Other"}, {"name": "GLOBAL_FLAGS", "kind": "Other"}, {"name": "Verbose", "kind": "LocalType"}, {"name": "_State", "kind": "LocalType"}, {"name": "State", "kind": "Other"}, {"name": "_OpSubpatternType", "kind": "Other"}, {"name": "_OpGroupRefExistsType", "kind": "Other"}, {"name": "_OpInType", "kind": "Other"}, {"name": "_OpBranchType", "kind": "Other"}, {"name": "_AvType", "kind": "Other"}, {"name": "_CodeType", "kind": "Other"}, {"name": "SubPattern", "kind": "LocalType"}, {"name": "Tokenizer", "kind": "LocalType"}, {"name": "fix_flags", "kind": "Other"}, {"name": "_TemplateType", "kind": "Other"}, {"name": "_TemplateByteType", "kind": "Other"}, {"name": "parse", "kind": "Other"}, {"name": "parse_template", "kind": "Other"}, {"name": "expand_template", "kind": "Other"}], "genericpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}]}} \ No newline at end of file diff --git a/utbot-python-types/src/test/resources/samples/annotation_tests.py b/utbot-python-types/src/test/resources/samples/annotation_tests.py deleted file mode 100644 index 6aa11e43e5..0000000000 --- a/utbot-python-types/src/test/resources/samples/annotation_tests.py +++ /dev/null @@ -1,78 +0,0 @@ -from typing import * -import collections -from enum import Enum -import datetime - - -XXX = TypeVar("XXX", "A", int) - - -class A(Generic[XXX]): - self_: XXX - - def f(self, a, b: 'A'[int]): - self.y = b - self.self_.x = b - pass - - def g(self): - self.x = 1 - - -def square(collection: Iterable[int], x: XXX): - result = set() - for elem in collection: - result.add(elem ** 2) - return result - - -def not_annotated(x): - return x - - -def same_annotations(x: int, y: int, a: List[Any], b: List[Any], c: List[int]): - return x + y - - -def optional(x: Optional[int]): - return x - - -def literal(x: Literal["w", "r"]): - return x - - -class Color(Enum): - RED = 1 - GREEN = 2 - BLUE = 3 - - -def enum_literal(x: Literal[Color.RED, Color.GREEN]): - return x - - -def abstract_set(x: AbstractSet[int]): - return x - - -def mapping(x: Mapping[int, int]): - return x - - -def sequence(x: Sequence[object]): - return x - - -def supports_abs(x: SupportsAbs): - return abs(x) - - -def tuple_(x: Tuple[int, str]): - return x[1] + str(x[0]) - - -if __name__ == "__main__": - # print(square(collections.defaultdict(int))) - # enum_literal(Color.BLUE) - pass \ No newline at end of file diff --git a/utbot-python-types/src/test/resources/samples/boruvka.py b/utbot-python-types/src/test/resources/samples/boruvka.py deleted file mode 100644 index 1e757abcf8..0000000000 --- a/utbot-python-types/src/test/resources/samples/boruvka.py +++ /dev/null @@ -1,106 +0,0 @@ -class Graph: - def __init__(self, num_of_nodes: int) -> None: - """ - Arguments: - num_of_nodes - the number of nodes in the graph - Attributes: - m_num_of_nodes - the number of nodes in the graph. - m_edges - the list of edges. - m_component - the dictionary which stores the index of the component which - a node belongs to. - """ - - self.m_num_of_nodes = num_of_nodes - self.m_edges: list[list[int]] = [] - self.m_component: dict[int, int] = {} - - def add_edge(self, u_node: int, v_node: int, weight: int) -> None: - """Adds an edge in the format [first, second, edge weight] to graph.""" - - self.m_edges.append([u_node, v_node, weight]) - - def find_component(self, u_node: int) -> int: - """Propagates a new component throughout a given component.""" - - if self.m_component[u_node] == u_node: - return u_node - return self.find_component(self.m_component[u_node]) - - def set_component(self, u_node: int) -> None: - """Finds the component index of a given node""" - - if self.m_component[u_node] != u_node: - for k in self.m_component: - self.m_component[k] = self.find_component(k) - - def union(self, component_size: list[int], u_node: int, v_node: int) -> None: - """Union finds the roots of components for two nodes, compares the components - in terms of size, and attaches the smaller one to the larger one to form - single component""" - - if component_size[u_node] <= component_size[v_node]: - self.m_component[u_node] = v_node - component_size[v_node] += component_size[u_node] - self.set_component(u_node) - - elif component_size[u_node] >= component_size[v_node]: - self.m_component[v_node] = self.find_component(u_node) - component_size[u_node] += component_size[v_node] - self.set_component(v_node) - - def boruvka(self) -> None: - """Performs Borůvka's algorithm to find MST.""" - - # Initialize additional lists required to algorithm. - component_size = [] - mst_weight = 0 - - minimum_weight_edge: list = [-1] * self.m_num_of_nodes - - # A list of components (initialized to all of the nodes) - for node in range(self.m_num_of_nodes): - self.m_component.update({node: node}) - component_size.append(1) - - num_of_components = self.m_num_of_nodes - - while num_of_components > 1: - for edge in self.m_edges: - u, v, w = edge - - u_component = self.m_component[u] - v_component = self.m_component[v] - - if u_component != v_component: - """If the current minimum weight edge of component u doesn't - exist (is -1), or if it's greater than the edge we're - observing right now, we will assign the value of the edge - we're observing to it. - - If the current minimum weight edge of component v doesn't - exist (is -1), or if it's greater than the edge we're - observing right now, we will assign the value of the edge - we're observing to it""" - - for component in (u_component, v_component): - if ( - minimum_weight_edge[component] == -1 - or minimum_weight_edge[component][2] > w - ): - minimum_weight_edge[component] = [u, v, w] - - for edge in minimum_weight_edge: - if isinstance(edge, list): - u, v, w = edge - - u_component = self.m_component[u] - v_component = self.m_component[v] - - if u_component != v_component: - mst_weight += w - self.union(component_size, u_component, v_component) - print(f"Added edge [{u} - {v}]\nAdded weight: {w}\n") - num_of_components -= 1 - - minimum_weight_edge = [-1] * self.m_num_of_nodes - print(f"The total weight of the minimal spanning tree is: {mst_weight}") diff --git a/utbot-python-types/src/test/resources/samples/import_test.py b/utbot-python-types/src/test/resources/samples/import_test.py deleted file mode 100644 index ef1acb4068..0000000000 --- a/utbot-python-types/src/test/resources/samples/import_test.py +++ /dev/null @@ -1,10 +0,0 @@ -import importlib.machinery as im -import collections as c -from collections import deque -import importlib - -importlib.machinery.PathFinder - - -class A: - pass \ No newline at end of file diff --git a/utbot-python-types/src/test/resources/samples/subtypes.py b/utbot-python-types/src/test/resources/samples/subtypes.py deleted file mode 100644 index 81646d3cc3..0000000000 --- a/utbot-python-types/src/test/resources/samples/subtypes.py +++ /dev/null @@ -1,73 +0,0 @@ -import collections -import numpy -from typing import * - - -class P(Protocol): - def f(self, x: int) -> dict: - ... - - -class S: - def f(self, x: Union[int, str]) -> collections.Counter: - return collections.Counter([x]) - - -class S1: - def f(self, x: Union[int, str]) -> object: - return collections.Counter([x]) - - -def func_for_P(x: P) -> None: - return None - - -func_for_P(S()) - - -class R(Protocol): - def f(self) -> 'R': - ... - - -class RImpl: - def f(self) -> 'RImpl': - return self - - -def func_for_R(x: R) -> None: - return None - - -func_for_R(RImpl()) - - -a: List[int] = [] - - -T = TypeVar('T') - - -def func_abs(x: SupportsAbs[T]): - return abs(x) - - -b: int = 10 - - -class SupportsCall(Protocol): - def __call__(self, *args, **kwargs): - ... - - -class HasF(Protocol): - f: SupportsCall - - -class SupportsSpecificCall(Protocol): - def __call__(self, *args, **kwargs) -> HasF: - ... - - -class HasSpecificF(Protocol): - f: SupportsSpecificCall \ No newline at end of file diff --git a/utbot-python-types/src/test/resources/subtypes.json b/utbot-python-types/src/test/resources/subtypes.json deleted file mode 100644 index bf2ddac832..0000000000 --- a/utbot-python-types/src/test/resources/subtypes.json +++ /dev/null @@ -1 +0,0 @@ -{"nodeStorage": {"139805276669024": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251296768"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406236000"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406236448"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406236896"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406237344"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406237792"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406238240"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406238688"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406239584"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406240032"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406240480"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406240928"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406241376"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406241824"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406242272"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406242720"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406243168"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406243616"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406244064"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406244512"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406244960"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406245408"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406245856"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406246304"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406246752"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406247200"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406247648"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406248096"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406248544"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406331168"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406331616"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406332064"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406332512"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406332960"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406333408"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406333856"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406334304"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406334752"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406335200"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406335648"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406336096"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406336544"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406336992"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406337440"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406337888"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406338336"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406338784"}, "name": "zfill"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251296992"}, "items": [{"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "maketrans"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406340576"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406341024"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406341472"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406341920"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406342368"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406342816"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406343264"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406343712"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406344160"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406344608"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406345056"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406345504"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406345952"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406346400"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406346848"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}], "isAbstract": false}}, "139805251296768": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406235104"}, {"nodeId": "139805406235552"}]}}, "139805406235104": {"type": "Function", "content": {"typeVars": [".0.139805406235104"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": ".0.139805406235104"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}}, "0": {"type": "Unknown", "content": {}}, "139805481881792": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268028640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255958336"}, "items": [{"kind": "Variable", "content": {"name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200690176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452859232"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452859680"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452860128"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452860576"}, "name": "__delattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452861024"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444161824"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444162272"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444162720"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444163168"}, "name": "__hash__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444163616"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444164064"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444164512"}, "name": "__sizeof__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444164960"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444165408"}, "name": "__reduce_ex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444166752"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444167200"}, "name": "__init_subclass__"}}, {"kind": "Variable", "content": {"name": "__subclasshook__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805200687488"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [], "isAbstract": false}}, "139805268028640": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "N": {"type": "NoneType", "content": {}}, "139805276671488": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251579104"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402105440"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402105888"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402106336"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402106784"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402107232"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251579552"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251580336"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251580672"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402110368"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402110816"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402111264"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402111712"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402112160"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402112608"}, "name": "__reversed__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402113056"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402113504"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402113952"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251581008"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}], "bases": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "isAbstract": false}}, ".1.139805276671488": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276671488", "variance": "INVARIANT"}}, ".2.139805276671488": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276671488", "variance": "INVARIANT"}}, "139805251579104": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401986912"}, {"nodeId": "139805401987360"}, {"nodeId": "139805401987808"}, {"nodeId": "139805401988256"}, {"nodeId": "139805401988704"}, {"nodeId": "139805402104096"}, {"nodeId": "139805402104544"}, {"nodeId": "139805402104992"}]}}, "139805401986912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805401987360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".2.139805276671488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139805401987808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805267818304": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443969472"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443969920"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805267818304"}, {"nodeId": ".2.139805267818304"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__", "keys"]}}, ".1.139805267818304": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267818304", "variance": "INVARIANT"}}, ".2.139805267818304": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267818304", "variance": "COVARIANT"}}, "139805443969472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805267818304"}, {"nodeId": ".2.139805267818304"}]}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805267818304"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481886016": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242520544"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481886016"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__iter__"]}}, ".1.139805481886016": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481886016", "variance": "COVARIANT"}}, "139805242520544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805481886016"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481886016"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805481886368": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242589920"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444404864"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.139805481886368"}], "bases": [{"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805481886368"}]}], "protocolMembers": ["__iter__", "__next__"]}}, ".1.139805481886368": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481886368", "variance": "COVARIANT"}}, "139805242589920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481886368"}]}], "returnType": {"nodeId": ".1.139805481886368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444404864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481886368"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481886368"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "A": {"type": "Any", "content": {}}, "139805443969920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805267818304"}, {"nodeId": ".2.139805267818304"}]}, {"nodeId": ".1.139805267818304"}], "returnType": {"nodeId": ".2.139805267818304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401988256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": "139805267818304", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".2.139805276671488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805401988704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805251580000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251580000": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}}, "139805402104096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805251580224"}]}, {"nodeId": ".2.139805276671488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805251580224": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276671488"}]}}, "139805402104544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276671136": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251577312"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401973472"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401973920"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401974368"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401974816"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401975264"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401975712"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401976160"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401976608"}, "name": "remove"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251577424"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401977952"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401978400"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251578544"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251578656"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401980640"}, "name": "__delitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251578880"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401981984"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401982432"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401982880"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401983328"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401983776"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401984224"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401984672"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401985120"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401985568"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401986016"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401986464"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805276671136"}], "bases": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805276671136"}]}], "isAbstract": false}}, ".1.139805276671136": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276671136", "variance": "INVARIANT"}}, "139805251577312": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401841248"}, {"nodeId": "139805401973024"}]}}, "139805401841248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805401973024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805401973472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805401973920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": ".1.139805276671136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805401974368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805401974816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".1.139805276671136"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805277009376": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805247276192"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__index__"]}}, "139805247276192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481893056": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251289824"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411138400"}, "name": "as_integer_ratio"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200679200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805205609632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805205608960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805205608512"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411140640"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411141088"}, "name": "bit_length"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411141536"}, "name": "bit_count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411142880"}, "name": "to_bytes"}}, {"kind": "Variable", "content": {"name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805209884736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411144224"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411144672"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411145120"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411145568"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411146016"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411146464"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411146912"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411147360"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414146336"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414146784"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414147232"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414147680"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414148128"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414148576"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251290944"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414151712"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414152160"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414152608"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414153056"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414153504"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414153952"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414154400"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414154848"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414155296"}, "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414155744"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414156192"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414156640"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414157088"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414157536"}, "name": "__invert__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414157984"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414158432"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414158880"}, "name": "__floor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414159328"}, "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414159776"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414160224"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414160672"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414161120"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414161568"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414162016"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415047456"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415047904"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415048352"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415048800"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415049248"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415049696"}, "name": "__index__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805251289824": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805411137504"}, {"nodeId": "139805411137952"}]}}, "139805411137504": {"type": "Function", "content": {"typeVars": [".0.139805411137504"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805251291616"}], "returnType": {"nodeId": ".0.139805411137504"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "139805251291616": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277011488"}, {"nodeId": "139805276996000"}, {"nodeId": "139805277009376"}, {"nodeId": "139805267817600"}]}}, "139805277011488": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "Buffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410508864"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__buffer__"]}}, "139805410508864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276670080": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "content": {"name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201330496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201331168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201331392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201331616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201331840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201332064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201332288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201332512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201332736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201332960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201333184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201333408"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406957792"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406958240"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406958688"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406959136"}, "name": "cast"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251572720"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406960480"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406960928"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406961376"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251573728"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406962720"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406964064"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406964512"}, "name": "toreadonly"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406964960"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406965408"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406966304"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406966752"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805201330496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201331168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201331392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805251573392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251573392": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "N"}]}}, "139805276670784": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401831840"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401832288"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401832736"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251575744"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401834080"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401834528"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401834976"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401835424"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401835872"}, "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251577200"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401837216"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401837664"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401838112"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401838560"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401839008"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805276670784"}], "bases": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805276670784"}]}], "isAbstract": false}}, ".1.139805276670784": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276670784", "variance": "COVARIANT"}}, "139805401831840": {"type": "Function", "content": {"typeVars": [".0.139805401831840"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": ".0.139805401831840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, ".0.139805401831840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, "def": "139805401831840", "variance": "INVARIANT"}}, "139805401832288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805401832736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481882144": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406967200"}, "name": "__new__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251574288"}, "items": [{"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__and__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251575072"}, "items": [{"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__or__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251575184"}, "items": [{"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__xor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251575296"}, "items": [{"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251575408"}, "items": [{"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251575520"}, "items": [{"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401828704"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "139805481893056"}], "isAbstract": false}}, "139805406967200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "139805251574288": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406967648"}, {"nodeId": "139805406968096"}]}}, "139805406967648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406968096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251575072": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406968544"}, {"nodeId": "139805406968992"}]}}, "139805406968544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406968992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251575184": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406969440"}, {"nodeId": "139805401825568"}]}}, "139805406969440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401825568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251575296": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401826016"}, {"nodeId": "139805401826464"}]}}, "139805401826016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401826464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251575408": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401826912"}, {"nodeId": "139805401827360"}]}}, "139805401826912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401827360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251575520": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401827808"}, {"nodeId": "139805401828256"}]}}, "139805401827808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401828256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401828704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805251575968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251575968": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}]}}, "139805251575744": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401833184"}, {"nodeId": "139805401833632"}]}}, "139805401833184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".1.139805276670784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401833632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805276670432": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201429024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201429472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201430592"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251575632"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401831392"}, "name": "indices"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805201429024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201429472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201430592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251575632": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401830496"}, {"nodeId": "139805401830944"}]}}, "139805401830496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670432"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805401830944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670432"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805401831392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670432"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805251577088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251577088": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805401834080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276670784"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805401834528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401834976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401835424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401835872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251577200": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401836320"}, {"nodeId": "139805401836768"}]}}, "139805401836320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401836768": {"type": "Function", "content": {"typeVars": [".-1.139805401836768"], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": ".-1.139805401836768"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805251577536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805401836768": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805401836768", "variance": "INVARIANT"}}, "139805251577536": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276670784"}, {"nodeId": ".-1.139805401836768"}]}}, "139805401837216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401837664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401838112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805401838560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "A"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805401839008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805272038688": {"type": "Concrete", "content": {"module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238760992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238761440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238761664"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414608896"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414609344"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414610688"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238760992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038688"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481892352": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "content": {"name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200684352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200683904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200683680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200682784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200683008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200683232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200682336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200682112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200681888"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251060000"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251073104"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411132576"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411133024"}, "name": "__subclasses__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411133472"}, "name": "mro"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411133920"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411134368"}, "name": "__subclasscheck__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805200681664"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411135264"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411135712"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805200684352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200683904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200683680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805272032352", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272032352": {"type": "Concrete", "content": {"module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410986240"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410986688"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410987136"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410987584"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410988032"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410988480"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410988928"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410989376"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410989824"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410990272"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410990720"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410991168"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410991616"}, "name": "__ror__"}}], "typeVars": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}], "bases": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "isAbstract": false}}, ".1.139805272032352": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272032352", "variance": "INVARIANT"}}, ".2.139805272032352": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272032352", "variance": "COVARIANT"}}, "139805410986240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139805410986688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}, {"nodeId": ".1.139805272032352"}], "returnType": {"nodeId": ".2.139805272032352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410987136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805272032352"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805410987584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805410988032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410988480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410988928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805272032352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276999520": {"type": "Concrete", "content": {"module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452277504"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452277952"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452278400"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452278848"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452279296"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452279744"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452280192"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452280640"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452281088"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452281536"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452281984"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452282432"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.139805276999520"}], "bases": [{"nodeId": "139805276998816"}, {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805276999520"}]}], "isAbstract": false}}, ".1.139805276999520": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276999520", "variance": "COVARIANT"}}, "139805452277504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805276999520"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139805481891296": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242955968"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263872736"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452286016"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452286464"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452286912"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452287360"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452402752"}, "name": "__eq__"}}], "typeVars": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}], "bases": [{"nodeId": "139805481889536", "args": [{"nodeId": ".1.139805481891296"}]}], "isAbstract": true}}, ".1.139805481891296": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481891296", "variance": "INVARIANT"}}, ".2.139805481891296": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481891296", "variance": "COVARIANT"}}, "139805242955968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}, {"nodeId": ".1.139805481891296"}], "returnType": {"nodeId": ".2.139805481891296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805263872736": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452285120"}, {"nodeId": "139805452285568"}]}}, "139805452285120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}, {"nodeId": ".1.139805481891296"}], "returnType": {"nodeId": "139805263878112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805263878112": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805481891296"}, {"nodeId": "N"}]}}, "139805452285568": {"type": "Function", "content": {"typeVars": [".-1.139805452285568"], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}, {"nodeId": ".1.139805481891296"}, {"nodeId": "139805263878224"}], "returnType": {"nodeId": "139805263878336"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "139805263878224": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805481891296"}, {"nodeId": ".-1.139805452285568"}]}}, ".-1.139805452285568": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452285568", "variance": "INVARIANT"}}, "139805263878336": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805481891296"}, {"nodeId": ".-1.139805452285568"}]}}, "139805452286016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}], "returnType": {"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276999168": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452272128"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452272576"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452273024"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452273472"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452273920"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452274368"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452274816"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452275264"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452275712"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452276160"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452276608"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452277056"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}], "bases": [{"nodeId": "139805276998816"}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805271905600"}]}], "isAbstract": false}}, ".1.139805276999168": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276999168", "variance": "COVARIANT"}}, ".2.139805276999168": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276999168", "variance": "COVARIANT"}}, "139805452272128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139805452272576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263874864"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805277003040": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251581456"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402116192"}, "name": "add"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402116640"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402117088"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402117536"}, "name": "difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402117984"}, "name": "discard"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402118432"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402118880"}, "name": "intersection_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402119328"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402119776"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402235168"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402235616"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402236064"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402236512"}, "name": "symmetric_difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402236960"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402237408"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402237856"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402238304"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402238752"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402239200"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402239648"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402240096"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402240544"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402240992"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402241440"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402241888"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402242336"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402242784"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402243232"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402243680"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402244128"}, "name": "__gt__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402244576"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805277003040"}], "bases": [{"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805277003040"}]}], "isAbstract": false}}, ".1.139805277003040": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277003040", "variance": "INVARIANT"}}, "139805251581456": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402115296"}, {"nodeId": "139805402115744"}]}}, "139805402115296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805402115744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402116192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": ".1.139805277003040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402116640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805402117088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139805402117536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139805402117984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": ".1.139805277003040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402118432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139805402118880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139805402119328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402119776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402235168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402235616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": ".1.139805277003040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402236064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402236512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402236960": {"type": "Function", "content": {"typeVars": [".-1.139805402236960"], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402236960"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805251583584"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.139805402236960": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402236960", "variance": "INVARIANT"}}, "139805251583584": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277003040"}, {"nodeId": ".-1.139805402236960"}]}}, "139805402237408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139805402237856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402238304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402238752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277003040"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402239200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481890592": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242755776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452950592"}, "name": "_hash"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452951040"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452951488"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452951936"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452952384"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452952832"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452953280"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452953728"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452954176"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452954624"}, "name": "isdisjoint"}}], "typeVars": [{"nodeId": ".1.139805481890592"}], "bases": [{"nodeId": "139805481889536", "args": [{"nodeId": ".1.139805481890592"}]}], "isAbstract": true}}, ".1.139805481890592": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481890592", "variance": "COVARIANT"}}, "139805242755776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452950592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452951040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452951488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452951936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452952384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452952832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452953280": {"type": "Function", "content": {"typeVars": [".-1.139805452953280"], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".-1.139805452953280"}]}], "returnType": {"nodeId": "139805481890592", "args": [{"nodeId": "139805263873632"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452953280": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452953280", "variance": "INVARIANT"}}, "139805263873632": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805481890592"}, {"nodeId": ".-1.139805452953280"}]}}, "139805452953728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452954176": {"type": "Function", "content": {"typeVars": [".-1.139805452954176"], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".-1.139805452954176"}]}], "returnType": {"nodeId": "139805481890592", "args": [{"nodeId": "139805263873856"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452954176": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452954176", "variance": "INVARIANT"}}, "139805263873856": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805481890592"}, {"nodeId": ".-1.139805452954176"}]}}, "139805452954624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805481889536": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242666656"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481889536"}], "bases": [{"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805481889536"}]}, {"nodeId": "139805481889184", "args": [{"nodeId": ".1.139805481889536"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}}, ".1.139805481889536": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481889536", "variance": "COVARIANT"}}, "139805242666656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889536", "args": [{"nodeId": ".1.139805481889536"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805481889184": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242663296"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481889184"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__contains__"]}}, ".1.139805481889184": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481889184", "variance": "COVARIANT"}}, "139805242663296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889184", "args": [{"nodeId": ".1.139805481889184"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402239648": {"type": "Function", "content": {"typeVars": [".0.139805402239648"], "argTypes": [{"nodeId": ".0.139805402239648"}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": ".0.139805402239648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805402239648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "def": "139805402239648", "variance": "INVARIANT"}}, "139805402240096": {"type": "Function", "content": {"typeVars": [".-1.139805402240096"], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".-1.139805402240096"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805251583808"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805402240096": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402240096", "variance": "INVARIANT"}}, "139805251583808": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277003040"}, {"nodeId": ".-1.139805402240096"}]}}, "139805402240544": {"type": "Function", "content": {"typeVars": [".0.139805402240544"], "argTypes": [{"nodeId": ".0.139805402240544"}, {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": ".0.139805402240544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805402240544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "def": "139805402240544", "variance": "INVARIANT"}}, "139805402240992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805246701632"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805246701632": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277003040"}, {"nodeId": "N"}]}}, "139805402241440": {"type": "Function", "content": {"typeVars": [".0.139805402241440"], "argTypes": [{"nodeId": ".0.139805402241440"}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": ".0.139805402241440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805402241440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "def": "139805402241440", "variance": "INVARIANT"}}, "139805402241888": {"type": "Function", "content": {"typeVars": [".-1.139805402241888"], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".-1.139805402241888"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805246701744"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805402241888": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402241888", "variance": "INVARIANT"}}, "139805246701744": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277003040"}, {"nodeId": ".-1.139805402241888"}]}}, "139805402242336": {"type": "Function", "content": {"typeVars": [".0.139805402242336"], "argTypes": [{"nodeId": ".0.139805402242336"}, {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": ".0.139805402242336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805402242336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "def": "139805402242336", "variance": "INVARIANT"}}, "139805402242784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402243232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402243680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402244128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402244576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805481890944": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "content": {"name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242757344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242766080"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452955968"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452956416"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452956864"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452957312"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452957760"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452958208"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452958656"}, "name": "__isub__"}}], "typeVars": [{"nodeId": ".1.139805481890944"}], "bases": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890944"}]}], "isAbstract": true}}, ".1.139805481890944": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481890944", "variance": "INVARIANT"}}, "139805242757344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}, {"nodeId": ".1.139805481890944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139805242766080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}, {"nodeId": ".1.139805481890944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139805452955968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452956416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}], "returnType": {"nodeId": ".1.139805481890944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452956864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}, {"nodeId": ".1.139805481890944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139805452957312": {"type": "Function", "content": {"typeVars": [".0.139805452957312"], "argTypes": [{"nodeId": ".0.139805452957312"}, {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890944"}]}], "returnType": {"nodeId": ".0.139805452957312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805452957312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}, "def": "139805452957312", "variance": "INVARIANT"}}, "139805452957760": {"type": "Function", "content": {"typeVars": [".0.139805452957760"], "argTypes": [{"nodeId": ".0.139805452957760"}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139805452957760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805452957760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}, "def": "139805452957760", "variance": "INVARIANT"}}, "139805452958208": {"type": "Function", "content": {"typeVars": [".0.139805452958208"], "argTypes": [{"nodeId": ".0.139805452958208"}, {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890944"}]}], "returnType": {"nodeId": ".0.139805452958208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805452958208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}, "def": "139805452958208", "variance": "INVARIANT"}}, "139805452958656": {"type": "Function", "content": {"typeVars": [".0.139805452958656"], "argTypes": [{"nodeId": ".0.139805452958656"}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139805452958656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805452958656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}, "def": "139805452958656", "variance": "INVARIANT"}}, "139805263874864": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452273024": {"type": "Function", "content": {"typeVars": [".-1.139805452273024"], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452273024"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".-1.139805452273024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452273024": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452273024", "variance": "INVARIANT"}}, "139805452273472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452273920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805263875088"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805263875088": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452274368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805263875312"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805263875312": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452274816": {"type": "Function", "content": {"typeVars": [".-1.139805452274816"], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452274816"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263875648"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452274816": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452274816", "variance": "INVARIANT"}}, "139805263875648": {"type": "Union", "content": {"items": [{"nodeId": "139805263875536"}, {"nodeId": ".-1.139805452274816"}]}}, "139805263875536": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452275264": {"type": "Function", "content": {"typeVars": [".-1.139805452275264"], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452275264"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263875984"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452275264": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452275264", "variance": "INVARIANT"}}, "139805263875984": {"type": "Union", "content": {"items": [{"nodeId": "139805263875872"}, {"nodeId": ".-1.139805452275264"}]}}, "139805263875872": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452275712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263876320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805263876320": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452276160": {"type": "Function", "content": {"typeVars": [".-1.139805452276160"], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452276160"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".-1.139805452276160"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452276160": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452276160", "variance": "INVARIANT"}}, "139805452276608": {"type": "Function", "content": {"typeVars": [".-1.139805452276608"], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452276608"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263876656"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452276608": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452276608", "variance": "INVARIANT"}}, "139805263876656": {"type": "Union", "content": {"items": [{"nodeId": "139805263876544"}, {"nodeId": ".-1.139805452276608"}]}}, "139805263876544": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452277056": {"type": "Function", "content": {"typeVars": [".-1.139805452277056"], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452277056"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263876992"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452277056": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452277056", "variance": "INVARIANT"}}, "139805263876992": {"type": "Union", "content": {"items": [{"nodeId": "139805263876880"}, {"nodeId": ".-1.139805452277056"}]}}, "139805263876880": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805276998816": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452959104"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452271680"}, "name": "__len__"}}], "typeVars": [], "bases": [{"nodeId": "139805276997760"}], "isAbstract": false}}, "139805452959104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276998816"}, {"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139805452271680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276998816"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805276997760": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242518304"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__len__"]}}, "139805242518304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276997760"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805271905600": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452286464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}], "returnType": {"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805481891296"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452286912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}], "returnType": {"nodeId": "139805276999872", "args": [{"nodeId": ".2.139805481891296"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276999872": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452282880"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452283328"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452283776"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452284224"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805276999872"}], "bases": [{"nodeId": "139805276998816"}, {"nodeId": "139805481889536", "args": [{"nodeId": ".1.139805276999872"}]}], "isAbstract": false}}, ".1.139805276999872": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276999872", "variance": "COVARIANT"}}, "139805452282880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999872", "args": [{"nodeId": ".1.139805276999872"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": ".1.139805276999872"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139805452283328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999872", "args": [{"nodeId": ".1.139805276999872"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452283776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999872", "args": [{"nodeId": ".1.139805276999872"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276999872"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805452284224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999872", "args": [{"nodeId": ".1.139805276999872"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276999872"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805452287360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452402752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452277952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805276999520"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452278400": {"type": "Function", "content": {"typeVars": [".-1.139805452278400"], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452278400"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".-1.139805452278400"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452278400": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452278400", "variance": "INVARIANT"}}, "139805452278848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452279296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276999520"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805452279744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276999520"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805452280192": {"type": "Function", "content": {"typeVars": [".-1.139805452280192"], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452280192"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263877328"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452280192": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452280192", "variance": "INVARIANT"}}, "139805263877328": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276999520"}, {"nodeId": ".-1.139805452280192"}]}}, "139805452280640": {"type": "Function", "content": {"typeVars": [".-1.139805452280640"], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452280640"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263877440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452280640": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452280640", "variance": "INVARIANT"}}, "139805263877440": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276999520"}, {"nodeId": ".-1.139805452280640"}]}}, "139805452281088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805276999520"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452281536": {"type": "Function", "content": {"typeVars": [".-1.139805452281536"], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452281536"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".-1.139805452281536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452281536": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452281536", "variance": "INVARIANT"}}, "139805452281984": {"type": "Function", "content": {"typeVars": [".-1.139805452281984"], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452281984"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263877664"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452281984": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452281984", "variance": "INVARIANT"}}, "139805263877664": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276999520"}, {"nodeId": ".-1.139805452281984"}]}}, "139805452282432": {"type": "Function", "content": {"typeVars": [".-1.139805452282432"], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452282432"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263877776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452282432": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452282432", "variance": "INVARIANT"}}, "139805263877776": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276999520"}, {"nodeId": ".-1.139805452282432"}]}}, "139805410989376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "139805276999872", "args": [{"nodeId": ".2.139805272032352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410989824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410990272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805410990720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805272032352"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805410991168": {"type": "Function", "content": {"typeVars": [".-1.139805410991168", ".-2.139805410991168"], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805410991168"}, {"nodeId": ".-2.139805410991168"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805263886624"}, {"nodeId": "139805263886736"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410991168": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805410991168", "variance": "INVARIANT"}}, ".-2.139805410991168": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805410991168", "variance": "INVARIANT"}}, "139805263886624": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".-1.139805410991168"}]}}, "139805263886736": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805272032352"}, {"nodeId": ".-2.139805410991168"}]}}, "139805410991616": {"type": "Function", "content": {"typeVars": [".-1.139805410991616", ".-2.139805410991616"], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805410991616"}, {"nodeId": ".-2.139805410991616"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805263886848"}, {"nodeId": "139805263886960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410991616": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805410991616", "variance": "INVARIANT"}}, ".-2.139805410991616": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805410991616", "variance": "INVARIANT"}}, "139805263886848": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".-1.139805410991616"}]}}, "139805263886960": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805272032352"}, {"nodeId": ".-2.139805410991616"}]}}, "139805200682784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200683008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200683232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200682336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200682112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805251289376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251289376": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805200681888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251060000": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805444177056"}, {"nodeId": "139805444177504"}]}}, "139805444177056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805444177504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, null, "kwds"]}}, "139805251073104": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805411131680"}, {"nodeId": "139805411132128"}]}}, "139805411131680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805411132128": {"type": "Function", "content": {"typeVars": [".-1.139805411132128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139805411132128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}}, ".-1.139805411132128": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805411132128", "variance": "INVARIANT"}}, "139805411132576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "139805411133024": {"type": "Function", "content": {"typeVars": [".-1.139805411133024"], "argTypes": [{"nodeId": ".-1.139805411133024"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".-1.139805411133024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805411133024": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805411133024", "variance": "INVARIANT"}}, "139805411133472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481892352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805411133920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805411134368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}, {"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805200681664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}}, "139805411135264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272039392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805272039392": {"type": "Concrete", "content": {"module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238764576"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414612032"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414612480"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238764576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272039392"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414612032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272039392"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272039392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414612480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272039392"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272039392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805411135712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272039392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805238761440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038688"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238761664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038688"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414608896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038688"}, {"nodeId": "139805481892352"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}}, "139805414609344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038688"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414610688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038688"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481889888": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263690912"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444700224"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444700672"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444701120"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444701568"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452943424"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805481889888"}], "bases": [{"nodeId": "139805481889536", "args": [{"nodeId": ".1.139805481889888"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": ".1.139805481889888"}]}], "isAbstract": true}}, ".1.139805481889888": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481889888", "variance": "COVARIANT"}}, "139805263690912": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805444699328"}, {"nodeId": "139805444699776"}]}}, "139805444699328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805481889888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444699776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444700224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}, {"nodeId": "A"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}}, "139805444700672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139805444701120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444701568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481889888"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805452943424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481889888"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805481886720": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "content": {"name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242592608"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481886720"}], "bases": [{"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805481886720"}]}], "protocolMembers": ["__iter__", "__reversed__"]}}, ".1.139805481886720": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481886720", "variance": "COVARIANT"}}, "139805242592608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481886720", "args": [{"nodeId": ".1.139805481886720"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481886720"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805201331616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805251573504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251573504": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "N"}]}}, "139805201331840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805251573616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251573616": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "N"}]}}, "139805201332064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201332288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201332512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805277011488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201332736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201332960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201333184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201333408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406957792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805406958240": {"type": "Function", "content": {"typeVars": [".0.139805406958240"], "argTypes": [{"nodeId": ".0.139805406958240"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805406958240": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276670080"}, "def": "139805406958240", "variance": "INVARIANT"}}, "139805406958688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805251573840"}, {"nodeId": "139805251573952"}, {"nodeId": "139805251574064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805251573840": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805251573952": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805276675712": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271902128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271901904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276566048"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397949728"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397950176"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397950624"}, "name": "with_traceback"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805271902128": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805271901904": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805276566048": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805272037280": {"type": "Concrete", "content": {"module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414790464"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271908736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238668288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238668512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238668736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805414790464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037280"}, {"nodeId": "139805264190080"}, {"nodeId": "139805272037632"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}}, "139805264190080": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805272037632": {"type": "Concrete", "content": {"module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "content": {"name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238670304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238670752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238670976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238671200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238671424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238671648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238671872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271908960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414795392"}, "name": "clear"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238670304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "139805264190192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264190192": {"type": "Union", "content": {"items": [{"nodeId": "139805272037632"}, {"nodeId": "N"}]}}, "139805238670752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238670976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "139805272032000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272032000": {"type": "Concrete", "content": {"module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "content": {"name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238302240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238303360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238302912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238303584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238303808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238304032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238304256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238304480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238304704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238304928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238305152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238305376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238305600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238305824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238306048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238306272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238306944"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410522304"}, "name": "co_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410524544"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410985344"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238302240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238303360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238302912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238303584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238303808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238304032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238304256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276669376": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251297776"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406447200"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406447648"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406448096"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406448544"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406448992"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406449440"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406450336"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406450784"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406451680"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406452128"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406452576"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406453024"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406453472"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406453920"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406454368"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406454816"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406455264"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406455712"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406456160"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406456608"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406457056"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406457504"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406457952"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406458400"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406458848"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406459296"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406459744"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406460192"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406460640"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406461088"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406461536"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406544160"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406544608"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406545056"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406545504"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406545952"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406546400"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406546848"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406547296"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406547744"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201112128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201111232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406549088"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406549536"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251300688"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406550880"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406551328"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406551776"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406552224"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406552672"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406553120"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406553568"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406554016"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406554464"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406554912"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406555360"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406555808"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406556704"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805251297776": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406445856"}, {"nodeId": "139805406446304"}, {"nodeId": "139805406446752"}]}}, "139805406445856": {"type": "Function", "content": {"typeVars": [".0.139805406445856"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805251301808"}], "returnType": {"nodeId": ".0.139805406445856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805251301808": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805277009376"}]}, {"nodeId": "139805277009376"}, {"nodeId": "139805276997056"}, {"nodeId": "139805277011488"}]}}, "139805276997056": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "content": {"name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242508896"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__bytes__"]}}, "139805242508896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276997056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805406445856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669376"}, "def": "139805406445856", "variance": "INVARIANT"}}, "139805406446304": {"type": "Function", "content": {"typeVars": [".0.139805406446304"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805406446304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}}, ".0.139805406446304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669376"}, "def": "139805406446304", "variance": "INVARIANT"}}, "139805406446752": {"type": "Function", "content": {"typeVars": [".0.139805406446752"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805406446752"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805406446752": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669376"}, "def": "139805406446752", "variance": "INVARIANT"}}, "139805406447200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406447648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805406448096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251301920"}, {"nodeId": "139805251302032"}, {"nodeId": "139805251302144"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251301920": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251302032": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251302144": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406448544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139805406448992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251302256"}, {"nodeId": "139805251302368"}, {"nodeId": "139805251302480"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251302256": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805277011488"}]}]}}, "139805251302368": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251302480": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406449440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "139805406450336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251302592"}, {"nodeId": "139805251302704"}, {"nodeId": "139805251302816"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251302592": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251302704": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251302816": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406450784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251302928"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "139805251302928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}]}}, "139805406451680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251303040"}, {"nodeId": "139805251303152"}, {"nodeId": "139805251303264"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251303040": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251303152": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251303264": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406452128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406452576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406453024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406453472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406453920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406454368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406454816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406455264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406455712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805277011488"}]}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406456160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805251303376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805251303376": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, "139805276669728": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251301696"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406558496"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406558944"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406559392"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406559840"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406740768"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406741216"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406741664"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406742112"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406743008"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406743456"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406743904"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406744800"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406745248"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406745696"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406746144"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406746592"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406747040"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406747488"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406747936"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406748384"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406748832"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406749280"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406749728"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406750176"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406750624"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406751072"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406751520"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406751968"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406752416"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406752864"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406753312"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406753760"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406754208"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406754656"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406755104"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406755552"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406756000"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406756448"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406839072"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406839520"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406839968"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406840416"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406840864"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406841312"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406841760"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406842208"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201120640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201318624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406843552"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406844000"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251568016"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251572608"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406846240"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406846688"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406847136"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406847584"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406848032"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406848480"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406848928"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406849376"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406849824"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406850272"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406850720"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406851168"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406851616"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406852064"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406852512"}, "name": "__alloc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406852960"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406853408"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139805481890240", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805251301696": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406557152"}, {"nodeId": "139805406557600"}, {"nodeId": "139805406558048"}]}}, "139805406557152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406557600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251568688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251568688": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805277009376"}]}, {"nodeId": "139805277009376"}, {"nodeId": "139805277011488"}]}}, "139805406558048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}}, "139805406558496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406558944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406559392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805406559840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251568800"}, {"nodeId": "139805251568912"}, {"nodeId": "139805251569024"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251568800": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251568912": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251569024": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406740768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406741216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139805406741664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251569136"}, {"nodeId": "139805251569248"}, {"nodeId": "139805251569360"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251569136": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805277011488"}]}]}}, "139805251569248": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251569360": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406742112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "139805406743008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805277009376"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406743456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251569472"}, {"nodeId": "139805251569584"}, {"nodeId": "139805251569696"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251569472": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251569584": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251569696": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406743904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251569808"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "139805251569808": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}]}}, "139805406744800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251569920"}, {"nodeId": "139805251570032"}, {"nodeId": "139805251570144"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251569920": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251570032": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251570144": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406745248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805406745696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406746144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406746592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406747040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406747488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406747936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406748384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406748832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406749280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805277011488"}]}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406749728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}, {"nodeId": "139805251570256"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805251570256": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, "139805406750176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406750624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251570368"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251570368": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406751072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805251570592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251570592": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669728"}, {"nodeId": "139805276669728"}, {"nodeId": "139805276669728"}]}}, "139805406751520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805406751968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406752416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406752864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406753312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}, {"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805406753760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251570704"}, {"nodeId": "139805251570816"}, {"nodeId": "139805251570928"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251570704": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251570816": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251570928": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406754208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251571040"}, {"nodeId": "139805251571152"}, {"nodeId": "139805251571264"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251571040": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251571152": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251571264": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406754656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}, {"nodeId": "139805251571376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805251571376": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, "139805406755104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805251571600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251571600": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669728"}, {"nodeId": "139805276669728"}, {"nodeId": "139805276669728"}]}}, "139805406755552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251571712"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669728"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805251571712": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406756000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251571824"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251571824": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406756448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251571936"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669728"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805251571936": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406839072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669728"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139805406839520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251572048"}, {"nodeId": "139805251572160"}, {"nodeId": "139805251572272"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251572048": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805277011488"}]}]}}, "139805251572160": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251572272": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406839968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251572384"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251572384": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406840416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406840864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406841312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251572496"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "139805251572496": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406841760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406842208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805201120640": {"type": "Function", "content": {"typeVars": [".0.139805201120640"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805201120640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805201120640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669728"}, "def": "139805201120640", "variance": "INVARIANT"}}, "139805201318624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011488"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406843552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406844000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805251568016": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406844448"}, {"nodeId": "139805406844896"}]}}, "139805406844448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406844896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251572608": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406845344"}, {"nodeId": "139805406845792"}]}}, "139805406845344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805406845792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805276670432"}, {"nodeId": "139805251572944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805251572944": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805277009376"}]}, {"nodeId": "139805276669376"}]}}, "139805406846240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251573056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251573056": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805276670432"}]}}, "139805406846688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406847136": {"type": "Function", "content": {"typeVars": [".0.139805406847136"], "argTypes": [{"nodeId": ".0.139805406847136"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": ".0.139805406847136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805406847136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669728"}, "def": "139805406847136", "variance": "INVARIANT"}}, "139805406847584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406848032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406848480": {"type": "Function", "content": {"typeVars": [".0.139805406848480"], "argTypes": [{"nodeId": ".0.139805406848480"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".0.139805406848480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805406848480": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669728"}, "def": "139805406848480", "variance": "INVARIANT"}}, "139805406848928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406849376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251573280"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251573280": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805277011488"}]}}, "139805406849824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406850272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406850720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406851168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406851616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406852064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406852512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406852960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406853408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805276670080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805481890240": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "content": {"name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242753088"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263691360"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263872288"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263872624"}, "items": [{"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452947008"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452947456"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452947904"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452948352"}, "name": "reverse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452948800"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452949248"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452949696"}, "name": "__iadd__"}}], "typeVars": [{"nodeId": ".1.139805481890240"}], "bases": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481890240"}]}], "isAbstract": true}}, ".1.139805481890240": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481890240", "variance": "INVARIANT"}}, "139805242753088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805481893056"}, {"nodeId": ".1.139805481890240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}}, "139805263691360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452944320"}, {"nodeId": "139805452944768"}]}}, "139805452944320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805481890240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452944768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805263872288": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452945216"}, {"nodeId": "139805452945664"}]}}, "139805452945216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805481893056"}, {"nodeId": ".1.139805481890240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805452945664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805276670432"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805481890240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805263872624": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452946112"}, {"nodeId": "139805452946560"}]}}, "139805452946112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452946560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452947008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": ".1.139805481890240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139805452947456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452947904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805481890240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}}, "139805452948352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452948800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805481890240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}}, "139805452949248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": ".1.139805481890240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139805452949696": {"type": "Function", "content": {"typeVars": [".0.139805452949696"], "argTypes": [{"nodeId": ".0.139805452949696"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805481890240"}]}], "returnType": {"nodeId": ".0.139805452949696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805452949696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, "def": "139805452949696", "variance": "INVARIANT"}}, "139805406456608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406457056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251303488"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251303488": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406457504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805251303712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251303712": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}]}}, "139805406457952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277011488"}, {"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805406458400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406458848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406459296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251303824"}, {"nodeId": "139805251303936"}, {"nodeId": "139805251304048"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251303824": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251303936": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251304048": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406459744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251304160"}, {"nodeId": "139805251304272"}, {"nodeId": "139805251304384"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251304160": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251304272": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251304384": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406460192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805251304496"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805251304496": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, "139805406460640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805251304720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251304720": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}]}}, "139805406461088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251304832"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805251304832": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406461536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251304944"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251304944": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406544160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251305056"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805251305056": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406544608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139805406545056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251305168"}, {"nodeId": "139805251305280"}, {"nodeId": "139805251567680"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251305168": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805277011488"}]}]}}, "139805251305280": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251567680": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406545504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251567792"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251567792": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406545952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406546400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406546848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251567904"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "139805251567904": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406547296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406547744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805201112128": {"type": "Function", "content": {"typeVars": [".0.139805201112128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805201112128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805201112128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669376"}, "def": "139805201112128", "variance": "INVARIANT"}}, "139805201111232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011488"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406549088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406549536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805251300688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406549984"}, {"nodeId": "139805406550432"}]}}, "139805406549984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406550432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406550880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406551328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406551776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406552224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406552672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251568240"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251568240": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805277011488"}]}}, "139805406553120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406553568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406554016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406554464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406554912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406555360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406555808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805251568464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251568464": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}]}}, "139805406556704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805238304480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238304704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238304928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238305152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238305376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238305600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238305824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238306048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238306272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238306944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410522304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805263886400"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263886400": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805263886176"}]}}, "139805263886176": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805410524544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null]}}, "139805410985344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805272032000"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "co_argcount", "co_posonlyargcount", "co_kwonlyargcount", "co_nlocals", "co_stacksize", "co_flags", "co_firstlineno", "co_code", "co_consts", "co_names", "co_varnames", "co_freevars", "co_cellvars", "co_filename", "co_name", "co_linetable"]}}, "139805238671200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238671424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238671648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "139805264190640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264190640": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "A"}]}}, "139805238671872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805271908960": {"type": "Union", "content": {"items": [{"nodeId": "139805276230528"}, {"nodeId": "N"}]}}, "139805276230528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805414795392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805271908736": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805238668288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037280"}], "returnType": {"nodeId": "139805272037632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238668512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037280"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238668736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037280"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805397949728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276675712"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "139805397950176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276675712"}, {"nodeId": "139805246958480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805246958480": {"type": "Union", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805397950624": {"type": "Function", "content": {"typeVars": [".0.139805397950624"], "argTypes": [{"nodeId": ".0.139805397950624"}, {"nodeId": "139805246958704"}], "returnType": {"nodeId": ".0.139805397950624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.139805397950624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276675712"}, "def": "139805397950624", "variance": "INVARIANT"}}, "139805246958704": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805251574064": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805406959136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805276669024"}, {"nodeId": "139805251574176"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}}, "139805251574176": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}]}}, "139805251572720": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406959584"}, {"nodeId": "139805406960032"}]}}, "139805406959584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406960032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406960480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406960928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406961376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805251573728": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406961824"}, {"nodeId": "139805406962272"}]}}, "139805406961824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805276670432"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805406962272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805406962720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805251574960"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139805251574960": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "139805406964064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406964512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406964960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406965408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805251574848"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "139805251574848": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}]}}, "139805406966304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406966752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805276670080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276996000": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "content": {"name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805247664672"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__int__"]}}, "139805247664672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276996000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805267817600": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443968576"}, "name": "__trunc__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__trunc__"]}}, "139805443968576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267817600"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805411137504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805411137504", "variance": "INVARIANT"}}, "139805411137952": {"type": "Function", "content": {"typeVars": [".0.139805411137952"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805251291728"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".0.139805411137952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}}, "139805251291728": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, ".0.139805411137952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805411137952", "variance": "INVARIANT"}}, "139805411138400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805251292064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251292064": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "0"}]}}, "139805200679200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805205609632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805205608960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805205608512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805411140640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805411141088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805411141536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805411142880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805277009376"}, {"nodeId": "139805251292624"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}}, "139805251292624": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805209884736": {"type": "Function", "content": {"typeVars": [".0.139805209884736"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805251292736"}, {"nodeId": "139805251293072"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": ".0.139805209884736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}}, "139805251292736": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805277009376"}]}, {"nodeId": "139805276997056"}, {"nodeId": "139805277011488"}]}}, "139805251293072": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, ".0.139805209884736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805209884736", "variance": "INVARIANT"}}, "139805411144224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805411144672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805411145120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805411145568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805411146016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481893408": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415050144"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415050592"}, "name": "as_integer_ratio"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415051040"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415051488"}, "name": "is_integer"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805200858048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200858496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200857152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415053280"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415053728"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415054176"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415054624"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415055072"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415055520"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415055968"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415056416"}, "name": "__divmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251291504"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415057760"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415058208"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415058656"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415059104"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415059552"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415060000"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415060448"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251294976"}, "items": [{"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415062240"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415062688"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415063136"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406085408"}, "name": "__floor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251295648"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406086752"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406087200"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406087648"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406088096"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406088544"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406088992"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406089440"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406089888"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406090336"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406090784"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406091232"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406091680"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805415050144": {"type": "Function", "content": {"typeVars": [".0.139805415050144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805251295088"}], "returnType": {"nodeId": ".0.139805415050144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "139805251295088": {"type": "Union", "content": {"items": [{"nodeId": "139805276996352"}, {"nodeId": "139805277009376"}, {"nodeId": "139805276669024"}, {"nodeId": "139805277011488"}]}}, "139805276996352": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "content": {"name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805247665568"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__float__"]}}, "139805247665568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276996352"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805415050144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481893408"}, "def": "139805415050144", "variance": "INVARIANT"}}, "139805415050592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805251295312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251295312": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805415051040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805415051488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200858048": {"type": "Function", "content": {"typeVars": [".0.139805200858048"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805200858048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805200858048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481893408"}, "def": "139805200858048", "variance": "INVARIANT"}}, "139805200858496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200857152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805415053280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805415053728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415054176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415054624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415055072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415055520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415055968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415056416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805251295536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251295536": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805251291504": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805415056864"}, {"nodeId": "139805415057312"}]}}, "139805415056864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805415057312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805415057760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415058208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415058656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415059104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415059552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415060000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415060448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805251295984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251295984": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805251294976": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805415060896"}, {"nodeId": "139805415061344"}, {"nodeId": "139805415061792"}]}}, "139805415060896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805251296208"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805251296208": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268031776"}}}, "139805268031776": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805415061344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805251296320"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805251296320": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268410880"}}}, "139805268410880": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805276667968": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251296096"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200946496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200947840"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406094816"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406095264"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406095712"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406096160"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406096608"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406097056"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406097504"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406097952"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406098400"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406098848"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406099296"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406099744"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406100192"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406100640"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406101088"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406232864"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406233312"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805251296096": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406092128"}, {"nodeId": "139805406092576"}]}}, "139805406092128": {"type": "Function", "content": {"typeVars": [".0.139805406092128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805251297104"}, {"nodeId": "139805251297216"}], "returnType": {"nodeId": ".0.139805406092128"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}}, "139805251297104": {"type": "Union", "content": {"items": [{"nodeId": "139805276667968"}, {"nodeId": "139805276996704"}, {"nodeId": "139805276996352"}, {"nodeId": "139805277009376"}]}}, "139805276996704": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "content": {"name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805247667136"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__complex__"]}}, "139805247667136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276996704"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805251297216": {"type": "Union", "content": {"items": [{"nodeId": "139805276667968"}, {"nodeId": "139805276996352"}, {"nodeId": "139805277009376"}]}}, ".0.139805406092128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276667968"}, "def": "139805406092128", "variance": "INVARIANT"}}, "139805406092576": {"type": "Function", "content": {"typeVars": [".0.139805406092576"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805251297328"}], "returnType": {"nodeId": ".0.139805406092576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}}, "139805251297328": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276996704"}, {"nodeId": "139805276996352"}, {"nodeId": "139805277009376"}, {"nodeId": "139805276667968"}]}}, ".0.139805406092576": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276667968"}, "def": "139805406092576", "variance": "INVARIANT"}}, "139805200946496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200947840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406094816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406095264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406095712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406096160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406096608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805406097056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406097504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406097952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406098400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406098848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805406099296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406099744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406100192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406100640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406101088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406232864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406233312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805415061792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805415062240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805251296656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251296656": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}]}}, "139805415062688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805415063136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406085408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251295648": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406085856"}, {"nodeId": "139805406086304"}]}}, "139805406085856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805406086304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406086752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406087200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406087648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406088096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406088544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406088992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406089440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406089888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406090336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406090784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406091232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406091680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805411146464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805411146912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805251293296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251293296": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805411147360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414146336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414146784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414147232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414147680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414148128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414148576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805251293520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251293520": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805251290944": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414149024"}, {"nodeId": "139805414149472"}, {"nodeId": "139805414149920"}, {"nodeId": "139805414150368"}, {"nodeId": "139805414150816"}, {"nodeId": "139805414151264"}]}}, "139805414149024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414149472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805414149920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805251294192"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805251294192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268031776"}}}, "139805414150368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805251294304"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805251294304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268410880"}}}, "139805414150816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805414151264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805414151712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805251294528"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805251294528": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805414152160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414152608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414153056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414153504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414153952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414154400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414154848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414155296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414155744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414156192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414156640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805414157088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805414157536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805414157984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414158432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414158880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414159328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805414159776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805251294864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251294864": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}]}}, "139805414160224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414160672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414161120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414161568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414162016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415047456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415047904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805415048352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805415048800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805415049248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805415049696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805401975264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": ".1.139805276671136"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805401975712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": ".1.139805276671136"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805401976160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805277009376"}, {"nodeId": ".1.139805276671136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805401976608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": ".1.139805276671136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251577424": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401977056"}, {"nodeId": "139805401977504"}]}}, "139805401977056": {"type": "Function", "content": {"typeVars": [".-1.139805401977056"], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".-1.139805401977056"}]}, {"nodeId": "N"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.139805401977056": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "139805263465376"}, "def": "139805401977056", "variance": "INVARIANT"}}, "139805263465376": {"type": "Union", "content": {"items": [{"nodeId": "139805267812672", "args": [{"nodeId": "A"}]}, {"nodeId": "139805267813024", "args": [{"nodeId": "A"}]}]}}, "139805267812672": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398660288"}, "name": "__lt__"}}], "typeVars": [{"nodeId": ".1.139805267812672"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__lt__"]}}, ".1.139805267812672": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267812672", "variance": "CONTRAVARIANT"}}, "139805398660288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267812672", "args": [{"nodeId": ".1.139805267812672"}]}, {"nodeId": ".1.139805267812672"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267813024": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398660736"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.139805267813024"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__gt__"]}}, ".1.139805267813024": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267813024", "variance": "CONTRAVARIANT"}}, "139805398660736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267813024", "args": [{"nodeId": ".1.139805267813024"}]}, {"nodeId": ".1.139805267813024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401977504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805251654528"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "139805251654528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.139805276671136"}], "returnType": {"nodeId": "139805251578992"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805251578992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825872"}}}, "139805267825872": {"type": "Union", "content": {"items": [{"nodeId": "139805267812672", "args": [{"nodeId": "A"}]}, {"nodeId": "139805267813024", "args": [{"nodeId": "A"}]}]}}, "139805401977952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805401978400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276671136"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805251578544": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401978848"}, {"nodeId": "139805401979296"}]}}, "139805401978848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".1.139805276671136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401979296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251578656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401979744"}, {"nodeId": "139805401980192"}]}}, "139805401979744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805277009376"}, {"nodeId": ".1.139805276671136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805401980192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276670432"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805401980640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805251579216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251579216": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805276670432"}]}}, "139805251578880": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401981088"}, {"nodeId": "139805401981536"}]}}, "139805401981088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401981536": {"type": "Function", "content": {"typeVars": [".-1.139805401981536"], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": ".-1.139805401981536"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805251579440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805401981536": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805401981536", "variance": "INVARIANT"}}, "139805251579440": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805401981536"}, {"nodeId": ".1.139805276671136"}]}}, "139805401981984": {"type": "Function", "content": {"typeVars": [".0.139805401981984"], "argTypes": [{"nodeId": ".0.139805401981984"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": ".0.139805401981984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805401981984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, "def": "139805401981984", "variance": "INVARIANT"}}, "139805401982432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401982880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401983328": {"type": "Function", "content": {"typeVars": [".0.139805401983328"], "argTypes": [{"nodeId": ".0.139805401983328"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".0.139805401983328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805401983328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, "def": "139805401983328", "variance": "INVARIANT"}}, "139805401983776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401984224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276671136"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805401984672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401985120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401985568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401986016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401986464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805402104992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402105440": {"type": "Function", "content": {"typeVars": [".0.139805402105440"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805402105440"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, ".0.139805402105440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, "def": "139805402105440", "variance": "INVARIANT"}}, "139805402105888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805402106336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "139805277001984", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805277001984": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805209513088"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805277001984"}, {"nodeId": ".2.139805277001984"}], "bases": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805277001984"}]}], "isAbstract": false}}, ".1.139805277001984": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277001984", "variance": "COVARIANT"}}, ".2.139805277001984": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277001984", "variance": "COVARIANT"}}, "139805209513088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001984", "args": [{"nodeId": ".1.139805277001984"}, {"nodeId": ".2.139805277001984"}]}], "returnType": {"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805277001984"}, {"nodeId": ".2.139805277001984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805402106784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "139805277002336", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805277002336": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805209331744"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805277002336"}, {"nodeId": ".2.139805277002336"}], "bases": [{"nodeId": "139805276999872", "args": [{"nodeId": ".2.139805277002336"}]}], "isAbstract": false}}, ".1.139805277002336": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277002336", "variance": "COVARIANT"}}, ".2.139805277002336": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277002336", "variance": "COVARIANT"}}, "139805209331744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277002336", "args": [{"nodeId": ".1.139805277002336"}, {"nodeId": ".2.139805277002336"}]}], "returnType": {"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805277002336"}, {"nodeId": ".2.139805277002336"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805402107232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "139805277002688", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805277002688": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805209232768"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805277002688"}, {"nodeId": ".2.139805277002688"}], "bases": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805277002688"}, {"nodeId": ".2.139805277002688"}]}], "isAbstract": false}}, ".1.139805277002688": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277002688", "variance": "COVARIANT"}}, ".2.139805277002688": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277002688", "variance": "COVARIANT"}}, "139805209232768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277002688", "args": [{"nodeId": ".1.139805277002688"}, {"nodeId": ".2.139805277002688"}]}], "returnType": {"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805277002688"}, {"nodeId": ".2.139805277002688"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251579552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402107680"}, {"nodeId": "139805402108128"}]}}, "139805402107680": {"type": "Function", "content": {"typeVars": [".-1.139805402107680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402107680"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": ".-1.139805402107680"}, {"nodeId": "139805251580896"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}}, ".-1.139805402107680": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402107680", "variance": "INVARIANT"}}, "139805251580896": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805402108128": {"type": "Function", "content": {"typeVars": [".-1.139805402108128", ".-2.139805402108128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402108128"}]}, {"nodeId": ".-2.139805402108128"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": ".-1.139805402108128"}, {"nodeId": ".-2.139805402108128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.139805402108128": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402108128", "variance": "INVARIANT"}}, ".-2.139805402108128": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402108128", "variance": "INVARIANT"}}, "139805251580336": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402108576"}, {"nodeId": "139805402109024"}]}}, "139805402108576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".1.139805276671488"}], "returnType": {"nodeId": "139805251581120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251581120": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805276671488"}, {"nodeId": "N"}]}}, "139805402109024": {"type": "Function", "content": {"typeVars": [".-1.139805402109024"], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".1.139805276671488"}, {"nodeId": "139805251581232"}], "returnType": {"nodeId": "139805251581344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805251581232": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805276671488"}, {"nodeId": ".-1.139805402109024"}]}}, ".-1.139805402109024": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402109024", "variance": "INVARIANT"}}, "139805251581344": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805276671488"}, {"nodeId": ".-1.139805402109024"}]}}, "139805251580672": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402109472"}, {"nodeId": "139805402109920"}]}}, "139805402109472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".1.139805276671488"}], "returnType": {"nodeId": ".2.139805276671488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402109920": {"type": "Function", "content": {"typeVars": [".-1.139805402109920"], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".1.139805276671488"}, {"nodeId": "139805251581568"}], "returnType": {"nodeId": "139805251581680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805251581568": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805276671488"}, {"nodeId": ".-1.139805402109920"}]}}, ".-1.139805402109920": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402109920", "variance": "INVARIANT"}}, "139805251581680": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805276671488"}, {"nodeId": ".-1.139805402109920"}]}}, "139805402110368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402110816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".1.139805276671488"}], "returnType": {"nodeId": ".2.139805276671488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402111264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805402111712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".1.139805276671488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402112160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276671488"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402112608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276671488"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402113056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805402113504": {"type": "Function", "content": {"typeVars": [".-1.139805402113504", ".-2.139805402113504"], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805402113504"}, {"nodeId": ".-2.139805402113504"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805251581904"}, {"nodeId": "139805251582016"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805402113504": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402113504", "variance": "INVARIANT"}}, ".-2.139805402113504": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402113504", "variance": "INVARIANT"}}, "139805251581904": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".-1.139805402113504"}]}}, "139805251582016": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805276671488"}, {"nodeId": ".-2.139805402113504"}]}}, "139805402113952": {"type": "Function", "content": {"typeVars": [".-1.139805402113952", ".-2.139805402113952"], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805402113952"}, {"nodeId": ".-2.139805402113952"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805251582128"}, {"nodeId": "139805251582240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805402113952": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402113952", "variance": "INVARIANT"}}, ".-2.139805402113952": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402113952", "variance": "INVARIANT"}}, "139805251582128": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".-1.139805402113952"}]}}, "139805251582240": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805276671488"}, {"nodeId": ".-2.139805402113952"}]}}, "139805251581008": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402114400"}, {"nodeId": "139805402114848"}]}}, "139805402114400": {"type": "Function", "content": {"typeVars": [".0.139805402114400"], "argTypes": [{"nodeId": ".0.139805402114400"}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": ".0.139805402114400"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805402114400": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, "def": "139805402114400", "variance": "INVARIANT"}}, "139805402114848": {"type": "Function", "content": {"typeVars": [".0.139805402114848"], "argTypes": [{"nodeId": ".0.139805402114848"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805251582576"}]}], "returnType": {"nodeId": ".0.139805402114848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805402114848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, "def": "139805402114848", "variance": "INVARIANT"}}, "139805251582576": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}}, "139805481891648": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242957984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242958432"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452404096"}, "name": "clear"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263874080"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452405440"}, "name": "popitem"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263878000"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263878448"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}], "typeVars": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}], "bases": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}], "isAbstract": true}}, ".1.139805481891648": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481891648", "variance": "INVARIANT"}}, ".2.139805481891648": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481891648", "variance": "INVARIANT"}}, "139805242957984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805242958432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": ".1.139805481891648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452404096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263874080": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452404544"}, {"nodeId": "139805452404992"}]}}, "139805452404544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": ".1.139805481891648"}], "returnType": {"nodeId": ".2.139805481891648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805452404992": {"type": "Function", "content": {"typeVars": [".-1.139805452404992"], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": ".1.139805481891648"}, {"nodeId": "139805263878560"}], "returnType": {"nodeId": "139805263878672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "139805263878560": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805481891648"}, {"nodeId": ".-1.139805452404992"}]}}, ".-1.139805452404992": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452404992", "variance": "INVARIANT"}}, "139805263878672": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805481891648"}, {"nodeId": ".-1.139805452404992"}]}}, "139805452405440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}], "returnType": {"nodeId": "139805263878896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263878896": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}}, "139805263878000": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452405888"}, {"nodeId": "139805452406336"}]}}, "139805452405888": {"type": "Function", "content": {"typeVars": [".-1.139805452405888"], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": "139805263879120"}]}, {"nodeId": ".1.139805481891648"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805263879232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805263879120": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805452405888"}, {"nodeId": "N"}]}}, ".-1.139805452405888": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452405888", "variance": "INVARIANT"}}, "139805263879232": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805452405888"}, {"nodeId": "N"}]}}, "139805452406336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}], "returnType": {"nodeId": ".2.139805481891648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805263878448": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452406784"}, {"nodeId": "139805452407232"}, {"nodeId": "139805452407680"}]}}, "139805452406784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": ".2.139805481891648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805452407232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805263879568"}]}, {"nodeId": ".2.139805481891648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805263879568": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}}, "139805452407680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": ".2.139805481891648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139805255958336": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452858336"}]}}, "139805452858336": {"type": "Function", "content": {"typeVars": [".0.139805452858336"], "argTypes": [{"nodeId": ".0.139805452858336"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805452858336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452858336", "variance": "INVARIANT"}}, "139805200690176": {"type": "Function", "content": {"typeVars": [".0.139805200690176"], "argTypes": [{"nodeId": ".0.139805200690176"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805200690176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805200690176", "variance": "INVARIANT"}}, "139805452859232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452859680": {"type": "Function", "content": {"typeVars": [".0.139805452859680"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805452859680"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805452859680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452859680", "variance": "INVARIANT"}}, "139805452860128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805452860576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452861024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444161824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444162272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805444162720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805444163168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444163616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805444164064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444164512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444164960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805251073552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251073552": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}]}}, "139805444165408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805251073776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251073776": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}]}}, "139805444166752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444167200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139805200687488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805406235104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669024"}, "def": "139805406235104", "variance": "INVARIANT"}}, "139805406235552": {"type": "Function", "content": {"typeVars": [".0.139805406235552"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805277011488"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805406235552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}}, ".0.139805406235552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669024"}, "def": "139805406235552", "variance": "INVARIANT"}}, "139805406236000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406236448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406236896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805406237344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805251297888"}, {"nodeId": "139805251298000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}}, "139805251297888": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251298000": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406237792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139805406238240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251298112"}, {"nodeId": "139805251298224"}, {"nodeId": "139805251298336"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251298112": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}]}}, "139805251298224": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251298336": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406238688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "139805406239584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805251298448"}, {"nodeId": "139805251298560"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251298448": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251298560": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406240032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805406240480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276668320"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}}, "139805276668320": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406234208"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__"]}}, "139805406234208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276668320"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406240928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805251298672"}, {"nodeId": "139805251298784"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251298672": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251298784": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406241376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406241824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406242272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406242720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406243168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406243616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406244064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406244512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406244960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406245408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406245856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406246304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406246752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406247200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805406247648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406248096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251298896"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251298896": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805406248544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805251299120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251299120": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805406331168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805406331616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406332064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406332512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805251299232"}, {"nodeId": "139805251299344"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251299232": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251299344": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406332960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805251299456"}, {"nodeId": "139805251299568"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251299456": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251299568": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406333408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805406333856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805251299792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251299792": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805406334304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251299904"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805251299904": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805406334752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251300016"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251300016": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805406335200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251300128"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805251300128": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805406335648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139805406336096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251300240"}, {"nodeId": "139805251300352"}, {"nodeId": "139805251300464"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251300240": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}]}}, "139805251300352": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251300464": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406336544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251300576"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251300576": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805406336992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406337440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406337888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276668672"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276668672": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406234656"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__"]}}, "139805406234656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276668672"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805251297552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251297552": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805406338336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406338784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251296992": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406339232"}, {"nodeId": "139805406339680"}, {"nodeId": "139805406340128"}]}}, "139805406339232": {"type": "Function", "content": {"typeVars": [".-1.139805406339232"], "argTypes": [{"nodeId": "139805251300912"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": ".-1.139805406339232"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805251300912": {"type": "Union", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": ".-1.139805406339232"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".-1.139805406339232"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805251300800"}, {"nodeId": ".-1.139805406339232"}]}]}}, ".-1.139805406339232": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805406339232", "variance": "INVARIANT"}}, "139805251300800": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805406339680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406340128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": "139805251301024"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805251301024": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805406340576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406341024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406341472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406341920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406342368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251301136"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251301136": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805276670432"}]}}, "139805406342816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406343264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406343712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406344160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406344608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406345056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406345504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406345952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406346400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406346848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805251301472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251301472": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805104095296": {"type": "Protocol", "content": {"module": "subtypes", "simpleName": "P", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805477546112"}, "name": "f"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["f"]}}, "139805477546112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104095296"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "139805104095648": {"type": "Concrete", "content": {"module": "subtypes", "simpleName": "S", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805477550368"}, "name": "f"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805477550368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104095648"}, {"nodeId": "139805095524304"}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "139805095524304": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805276880064": {"type": "Concrete", "content": {"module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255607552"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469746432"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469746880"}, "name": "elements"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469747328"}, "name": "most_common"}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805213273760"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255611920"}, "items": [{"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subtract"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255612704"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469750912"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469751360"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469751808"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469752256"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469752704"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469900864"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469901312"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469901760"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469902208"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469902656"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469903104"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469903552"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469904000"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469904448"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469904896"}, "name": "total"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469905344"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469905792"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469906240"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469906688"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.139805276880064"}], "bases": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "isAbstract": false}}, ".1.139805276880064": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276880064", "variance": "INVARIANT"}}, "139805255607552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469744640"}, {"nodeId": "139805469745088"}, {"nodeId": "139805469745536"}, {"nodeId": "139805469745984"}]}}, "139805469744640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805469745088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805469745536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469745984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469746432": {"type": "Function", "content": {"typeVars": [".0.139805469746432"], "argTypes": [{"nodeId": ".0.139805469746432"}], "returnType": {"nodeId": ".0.139805469746432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469746432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "def": "139805469746432", "variance": "INVARIANT"}}, "139805469746880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469747328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805255612816"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805255613040"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "139805255612816": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255613040": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}}, "139805213273760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "139805255613264"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}}, "139805255613264": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255611920": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469748224"}, {"nodeId": "139805469748672"}, {"nodeId": "139805469749120"}]}}, "139805469748224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805469748672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469749120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805255612704": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469749568"}, {"nodeId": "139805469750016"}, {"nodeId": "139805469750464"}]}}, "139805469749568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805469750016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805469750464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "N"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805469750912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": ".1.139805276880064"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "139805469751360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469751808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469752256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469752704": {"type": "Function", "content": {"typeVars": [".-1.139805469752704"], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": ".-1.139805469752704"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": "139805255613600"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805469752704": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805469752704", "variance": "INVARIANT"}}, "139805255613600": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276880064"}, {"nodeId": ".-1.139805469752704"}]}}, "139805469900864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469901312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469901760": {"type": "Function", "content": {"typeVars": [".-1.139805469901760"], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": ".-1.139805469901760"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": "139805255613712"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805469901760": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805469901760", "variance": "INVARIANT"}}, "139805255613712": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276880064"}, {"nodeId": ".-1.139805469901760"}]}}, "139805469902208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469902656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469903104": {"type": "Function", "content": {"typeVars": [".0.139805469903104"], "argTypes": [{"nodeId": ".0.139805469903104"}, {"nodeId": "139805267817952", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": ".0.139805469903104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469903104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "def": "139805469903104", "variance": "INVARIANT"}}, "139805267817952": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443969024"}, "name": "items"}}], "typeVars": [{"nodeId": ".1.139805267817952"}, {"nodeId": ".2.139805267817952"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["items"]}}, ".1.139805267817952": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267817952", "variance": "COVARIANT"}}, ".2.139805267817952": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267817952", "variance": "COVARIANT"}}, "139805443969024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267817952", "args": [{"nodeId": ".1.139805267817952"}, {"nodeId": ".2.139805267817952"}]}], "returnType": {"nodeId": "139805481890592", "args": [{"nodeId": "139805255957328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255957328": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805267817952"}, {"nodeId": ".2.139805267817952"}]}}, "139805469903552": {"type": "Function", "content": {"typeVars": [".0.139805469903552"], "argTypes": [{"nodeId": ".0.139805469903552"}, {"nodeId": "139805267817952", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": ".0.139805469903552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469903552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "def": "139805469903552", "variance": "INVARIANT"}}, "139805469904000": {"type": "Function", "content": {"typeVars": [".0.139805469904000"], "argTypes": [{"nodeId": ".0.139805469904000"}, {"nodeId": "139805267817952", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": ".0.139805469904000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469904000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "def": "139805469904000", "variance": "INVARIANT"}}, "139805469904448": {"type": "Function", "content": {"typeVars": [".0.139805469904448"], "argTypes": [{"nodeId": ".0.139805469904448"}, {"nodeId": "139805267817952", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": ".0.139805469904448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469904448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "def": "139805469904448", "variance": "INVARIANT"}}, "139805469904896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469905344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469905792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469906240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469906688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805104096000": {"type": "Concrete", "content": {"module": "subtypes", "simpleName": "S1", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805477550816"}, "name": "f"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805477550816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104096000"}, {"nodeId": "139805095525648"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "139805095525648": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805099822880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104095296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "139805104096352": {"type": "Protocol", "content": {"module": "subtypes", "simpleName": "R", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805477551712"}, "name": "f"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["f"]}}, "139805477551712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104096352"}], "returnType": {"nodeId": "139805104096352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805104096704": {"type": "Concrete", "content": {"module": "subtypes", "simpleName": "RImpl", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473603872"}, "name": "f"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805473603872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104096704"}], "returnType": {"nodeId": "139805104096704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805104898784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104096352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "139805193098784": {"type": "Function", "content": {"typeVars": [".-1.139805193098784"], "argTypes": [{"nodeId": "139805481885312", "args": [{"nodeId": ".-1.139805193098784"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "139805481885312": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242512256"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481885312"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__abs__"]}}, ".1.139805481885312": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481885312", "variance": "COVARIANT"}}, "139805242512256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481885312", "args": [{"nodeId": ".1.139805481885312"}]}], "returnType": {"nodeId": ".1.139805481885312"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805193098784": {"type": "TypeVar", "content": {"varName": "T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193098784", "variance": "INVARIANT"}}, "139805104097056": {"type": "Protocol", "content": {"module": "subtypes", "simpleName": "SupportsCall", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473588352"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805473588352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104097056"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805104097408": {"type": "Protocol", "content": {"module": "subtypes", "simpleName": "HasF", "members": [{"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805104097056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["f"]}}, "139805104097760": {"type": "Protocol", "content": {"module": "subtypes", "simpleName": "SupportsSpecificCall", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473605216"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805473605216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104097760"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805104097408"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805104098112": {"type": "Protocol", "content": {"module": "subtypes", "simpleName": "HasSpecificF", "members": [{"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805104097760"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["f"]}}, "139805277005504": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255602736"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473610816"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473611264"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473611712"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473612160"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473612608"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473613056"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473613504"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473613952"}, "name": "__copy__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255602848"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473615296"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473615744"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255604080"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}], "bases": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}], "isAbstract": false}}, ".1.139805277005504": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277005504", "variance": "INVARIANT"}}, ".2.139805277005504": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277005504", "variance": "INVARIANT"}}, "139805255602736": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805473607232"}, {"nodeId": "139805347883808"}, {"nodeId": "139805473608128"}, {"nodeId": "139805473607680"}, {"nodeId": "139805473609024"}, {"nodeId": "139805473608576"}, {"nodeId": "139805473609472"}, {"nodeId": "139805473609920"}]}}, "139805473607232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805347883808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "N"}, {"nodeId": ".2.139805277005504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805473608128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805473607680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "139805267818304", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": ".2.139805277005504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805473609024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805255603744"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805255603744": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}}, "139805473608576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805255603968"}]}, {"nodeId": ".2.139805277005504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805255603968": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805277005504"}]}}, "139805473609472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805473609920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805473610816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805473611264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": ".1.139805277005504"}], "returnType": {"nodeId": ".2.139805277005504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805473611712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805473612160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": ".1.139805277005504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805473612608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277005504"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805473613056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805473613504": {"type": "Function", "content": {"typeVars": [".0.139805473613504"], "argTypes": [{"nodeId": ".0.139805473613504"}], "returnType": {"nodeId": ".0.139805473613504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805473613504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, "def": "139805473613504", "variance": "INVARIANT"}}, "139805473613952": {"type": "Function", "content": {"typeVars": [".0.139805473613952"], "argTypes": [{"nodeId": ".0.139805473613952"}], "returnType": {"nodeId": ".0.139805473613952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805473613952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, "def": "139805473613952", "variance": "INVARIANT"}}, "139805255602848": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805473614400"}, {"nodeId": "139805473614848"}]}}, "139805473614400": {"type": "Function", "content": {"typeVars": [".-1.139805473614400"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805473614400"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805277005504", "args": [{"nodeId": ".-1.139805473614400"}, {"nodeId": "139805255604416"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139805473614400": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805473614400", "variance": "INVARIANT"}}, "139805255604416": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805473614848": {"type": "Function", "content": {"typeVars": [".-1.139805473614848", ".-2.139805473614848"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805473614848"}]}, {"nodeId": ".-2.139805473614848"}], "returnType": {"nodeId": "139805277005504", "args": [{"nodeId": ".-1.139805473614848"}, {"nodeId": ".-2.139805473614848"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139805473614848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805473614848", "variance": "INVARIANT"}}, ".-2.139805473614848": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805473614848", "variance": "INVARIANT"}}, "139805473615296": {"type": "Function", "content": {"typeVars": [".-1.139805473615296", ".-2.139805473615296"], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "139805255604528"}], "returnType": {"nodeId": "139805277005504", "args": [{"nodeId": "139805255604640"}, {"nodeId": "139805255604752"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255604528": {"type": "Union", "content": {"items": [{"nodeId": "139805277005504", "args": [{"nodeId": ".-1.139805473615296"}, {"nodeId": ".-2.139805473615296"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": ".-1.139805473615296"}, {"nodeId": ".-2.139805473615296"}]}]}}, ".-1.139805473615296": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805473615296", "variance": "INVARIANT"}}, ".-2.139805473615296": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805473615296", "variance": "INVARIANT"}}, "139805255604640": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".-1.139805473615296"}]}}, "139805255604752": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805277005504"}, {"nodeId": ".-2.139805473615296"}]}}, "139805473615744": {"type": "Function", "content": {"typeVars": [".-1.139805473615744", ".-2.139805473615744"], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "139805255604864"}], "returnType": {"nodeId": "139805277005504", "args": [{"nodeId": "139805255604976"}, {"nodeId": "139805255605088"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255604864": {"type": "Union", "content": {"items": [{"nodeId": "139805277005504", "args": [{"nodeId": ".-1.139805473615744"}, {"nodeId": ".-2.139805473615744"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": ".-1.139805473615744"}, {"nodeId": ".-2.139805473615744"}]}]}}, ".-1.139805473615744": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805473615744", "variance": "INVARIANT"}}, ".-2.139805473615744": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805473615744", "variance": "INVARIANT"}}, "139805255604976": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".-1.139805473615744"}]}}, "139805255605088": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805277005504"}, {"nodeId": ".-2.139805473615744"}]}}, "139805255604080": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805473616192"}, {"nodeId": "139805473616640"}]}}, "139805473616192": {"type": "Function", "content": {"typeVars": [".0.139805473616192"], "argTypes": [{"nodeId": ".0.139805473616192"}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}], "returnType": {"nodeId": ".0.139805473616192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805473616192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, "def": "139805473616192", "variance": "INVARIANT"}}, "139805473616640": {"type": "Function", "content": {"typeVars": [".0.139805473616640"], "argTypes": [{"nodeId": ".0.139805473616640"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805255605424"}]}], "returnType": {"nodeId": ".0.139805473616640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805473616640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, "def": "139805473616640", "variance": "INVARIANT"}}, "139805255605424": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}}, "139805277005856": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805277005856"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255604192"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473617984"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473618432"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473618880"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473619328"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469360192"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469360640"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469361088"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255605200"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255605536"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469363328"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469363776"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469364224"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469364672"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469365120"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469365568"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469366016"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469366464"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469366912"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469367360"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469367808"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469368256"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469368704"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469369152"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469369600"}, "name": "index"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255606208"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469370944"}, "name": "extend"}}], "typeVars": [{"nodeId": ".1.139805277005856"}], "bases": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805277005856"}]}], "isAbstract": false}}, ".1.139805277005856": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277005856", "variance": "INVARIANT"}}, "139805255604192": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805473617088"}, {"nodeId": "139805473617536"}]}}, "139805473617088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}}, "139805473617536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277005856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}}, "139805473617984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805255605648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255605648": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}]}}, "139805473618432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805255605760"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255605760": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}]}}, "139805473618880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805255605872"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255605872": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}]}}, "139805473619328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805255605984"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255605984": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}]}}, "139805469360192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469360640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469361088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805255605200": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469361536"}, {"nodeId": "139805469361984"}]}}, "139805469361536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".1.139805277005856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469361984": {"type": "Function", "content": {"typeVars": [".0.139805469361984"], "argTypes": [{"nodeId": ".0.139805469361984"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": ".0.139805469361984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469361984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469361984", "variance": "INVARIANT"}}, "139805255605536": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469362432"}, {"nodeId": "139805469362880"}]}}, "139805469362432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805277009376"}, {"nodeId": ".1.139805277005856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805469362880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805276670432"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277005856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805469363328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805255606432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255606432": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805276670432"}]}}, "139805469363776": {"type": "Function", "content": {"typeVars": [".0.139805469363776"], "argTypes": [{"nodeId": ".0.139805469363776"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277005856"}]}], "returnType": {"nodeId": ".0.139805469363776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469363776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469363776", "variance": "INVARIANT"}}, "139805469364224": {"type": "Function", "content": {"typeVars": [".0.139805469364224"], "argTypes": [{"nodeId": ".0.139805469364224"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277005856"}]}], "returnType": {"nodeId": ".0.139805469364224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469364224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469364224", "variance": "INVARIANT"}}, "139805469364672": {"type": "Function", "content": {"typeVars": [".0.139805469364672"], "argTypes": [{"nodeId": ".0.139805469364672"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277005856"}]}], "returnType": {"nodeId": ".0.139805469364672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469364672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469364672", "variance": "INVARIANT"}}, "139805469365120": {"type": "Function", "content": {"typeVars": [".0.139805469365120"], "argTypes": [{"nodeId": ".0.139805469365120"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469365120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469365120": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469365120", "variance": "INVARIANT"}}, "139805469365568": {"type": "Function", "content": {"typeVars": [".0.139805469365568"], "argTypes": [{"nodeId": ".0.139805469365568"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469365568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469365568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469365568", "variance": "INVARIANT"}}, "139805469366016": {"type": "Function", "content": {"typeVars": [".0.139805469366016"], "argTypes": [{"nodeId": ".0.139805469366016"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469366016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469366016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469366016", "variance": "INVARIANT"}}, "139805469366464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": ".1.139805277005856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139805469366912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805481893056"}, {"nodeId": ".1.139805277005856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}}, "139805469367360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805277005856"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}}, "139805469367808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": ".1.139805277005856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139805469368256": {"type": "Function", "content": {"typeVars": [".0.139805469368256"], "argTypes": [{"nodeId": ".0.139805469368256"}], "returnType": {"nodeId": ".0.139805469368256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469368256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469368256", "variance": "INVARIANT"}}, "139805469368704": {"type": "Function", "content": {"typeVars": [".0.139805469368704"], "argTypes": [{"nodeId": ".0.139805469368704"}], "returnType": {"nodeId": ".0.139805469368704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469368704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469368704", "variance": "INVARIANT"}}, "139805469369152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": ".1.139805277005856"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139805469369600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": ".1.139805277005856"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}}, "139805255606208": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805473610368"}, {"nodeId": "139805469370496"}]}}, "139805473610368": {"type": "Function", "content": {"typeVars": [".-1.139805473610368"], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".-1.139805473610368"}]}, {"nodeId": "N"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.139805473610368": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "139805263465376"}, "def": "139805473610368", "variance": "INVARIANT"}}, "139805469370496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805255283232"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "139805255283232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.139805277005856"}], "returnType": {"nodeId": "139805255606880"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805255606880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825872"}}}, "139805469370944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277005856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805277006208": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469371392"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469371840"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469372288"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469372736"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469373184"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469373632"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469374080"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469374528"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469374976"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469375424"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469375872"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469474880"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469475328"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469475776"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469476224"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469476672"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469477120"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469477568"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469478016"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469478464"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469478912"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469479808"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469480256"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469480704"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469481152"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469481600"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469482496"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469482944"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469483392"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469483840"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469484288"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469484736"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469485184"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469485632"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469486080"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469486528"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469486976"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469487424"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469487872"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469488320"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469488768"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469489216"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469489664"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469490112"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469490560"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469622336"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469622784"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469623232"}, "name": "lstrip"}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805218300960"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469623680"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469624128"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469624576"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469625024"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469625472"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469625920"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469626368"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469626816"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469627264"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469627712"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469628160"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469628608"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469629056"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469629504"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469629952"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469630400"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469630848"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469631296"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469631744"}, "name": "zfill"}}], "typeVars": [], "bases": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805277006208"}]}], "isAbstract": false}}, "139805469371392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "139805469371840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469372288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469372736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469373184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805255606992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255606992": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805469373632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255607104"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255607104": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469374080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255607216"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255607216": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469374528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255607328"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255607328": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469374976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255607440"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255607440": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469375424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469375872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469474880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469475328": {"type": "Function", "content": {"typeVars": [".0.139805469475328"], "argTypes": [{"nodeId": ".0.139805469475328"}, {"nodeId": "139805255607664"}], "returnType": {"nodeId": ".0.139805469475328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469475328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469475328", "variance": "INVARIANT"}}, "139805255607664": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805276670432"}]}}, "139805469475776": {"type": "Function", "content": {"typeVars": [".0.139805469475776"], "argTypes": [{"nodeId": ".0.139805469475776"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".0.139805469475776"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805469475776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469475776", "variance": "INVARIANT"}}, "139805469476224": {"type": "Function", "content": {"typeVars": [".0.139805469476224"], "argTypes": [{"nodeId": ".0.139805469476224"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".0.139805469476224"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805469476224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469476224", "variance": "INVARIANT"}}, "139805469476672": {"type": "Function", "content": {"typeVars": [".0.139805469476672"], "argTypes": [{"nodeId": ".0.139805469476672"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": ".0.139805469476672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469476672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469476672", "variance": "INVARIANT"}}, "139805469477120": {"type": "Function", "content": {"typeVars": [".0.139805469477120"], "argTypes": [{"nodeId": ".0.139805469477120"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": ".0.139805469477120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469477120": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469477120", "variance": "INVARIANT"}}, "139805469477568": {"type": "Function", "content": {"typeVars": [".0.139805469477568"], "argTypes": [{"nodeId": ".0.139805469477568"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469477568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469477568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469477568", "variance": "INVARIANT"}}, "139805469478016": {"type": "Function", "content": {"typeVars": [".0.139805469478016"], "argTypes": [{"nodeId": ".0.139805469478016"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469478016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469478016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469478016", "variance": "INVARIANT"}}, "139805469478464": {"type": "Function", "content": {"typeVars": [".0.139805469478464"], "argTypes": [{"nodeId": ".0.139805469478464"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805469478464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469478464": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469478464", "variance": "INVARIANT"}}, "139805469478912": {"type": "Function", "content": {"typeVars": [".0.139805469478912"], "argTypes": [{"nodeId": ".0.139805469478912"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": ".0.139805469478912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469478912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469478912", "variance": "INVARIANT"}}, "139805469479808": {"type": "Function", "content": {"typeVars": [".0.139805469479808"], "argTypes": [{"nodeId": ".0.139805469479808"}], "returnType": {"nodeId": ".0.139805469479808"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469479808": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469479808", "variance": "INVARIANT"}}, "139805469480256": {"type": "Function", "content": {"typeVars": [".0.139805469480256"], "argTypes": [{"nodeId": ".0.139805469480256"}], "returnType": {"nodeId": ".0.139805469480256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469480256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469480256", "variance": "INVARIANT"}}, "139805469480704": {"type": "Function", "content": {"typeVars": [".0.139805469480704"], "argTypes": [{"nodeId": ".0.139805469480704"}, {"nodeId": "139805481893056"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805469480704"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.139805469480704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469480704", "variance": "INVARIANT"}}, "139805469481152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255608000"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805255608000": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469481600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255608112"}, {"nodeId": "139805255608224"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139805255608112": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255608224": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805469482496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255608336"}, {"nodeId": "139805255608448"}, {"nodeId": "139805255608560"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "139805255608336": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}]}}, "139805255608448": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255608560": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805469482944": {"type": "Function", "content": {"typeVars": [".0.139805469482944"], "argTypes": [{"nodeId": ".0.139805469482944"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469482944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, ".0.139805469482944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469482944", "variance": "INVARIANT"}}, "139805469483392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255608672"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805255608672": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469483840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "139805469484288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139805469484736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805469485184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469485632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469486080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469486528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469486976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469487424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469487872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469488320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469488768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469489216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469489664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469490112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469490560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "139805469622336": {"type": "Function", "content": {"typeVars": [".0.139805469622336"], "argTypes": [{"nodeId": ".0.139805469622336"}, {"nodeId": "139805481893056"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805469622336"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.139805469622336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469622336", "variance": "INVARIANT"}}, "139805469622784": {"type": "Function", "content": {"typeVars": [".0.139805469622784"], "argTypes": [{"nodeId": ".0.139805469622784"}], "returnType": {"nodeId": ".0.139805469622784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469622784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469622784", "variance": "INVARIANT"}}, "139805469623232": {"type": "Function", "content": {"typeVars": [".0.139805469623232"], "argTypes": [{"nodeId": ".0.139805469623232"}, {"nodeId": "139805255609232"}], "returnType": {"nodeId": ".0.139805469623232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.139805469623232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469623232", "variance": "INVARIANT"}}, "139805255609232": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805218300960": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805213122496"}, {"nodeId": "139805213122720"}, {"nodeId": "139805213122944"}]}}, "139805213122496": {"type": "Function", "content": {"typeVars": [".-1.139805213122496"], "argTypes": [{"nodeId": "139805218300624"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": ".-1.139805213122496"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805218300624": {"type": "Union", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": ".-1.139805213122496"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".-1.139805213122496"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805218300288"}, {"nodeId": ".-1.139805213122496"}]}]}}, ".-1.139805213122496": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805213122496", "variance": "INVARIANT"}}, "139805218300288": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805213122720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805213122944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": "139805218300736"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805218300736": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805469623680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255609456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139805255609456": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805469624128": {"type": "Function", "content": {"typeVars": [".0.139805469624128"], "argTypes": [{"nodeId": ".0.139805469624128"}, {"nodeId": "139805255609568"}], "returnType": {"nodeId": ".0.139805469624128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.139805469624128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469624128", "variance": "INVARIANT"}}, "139805255609568": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469624576": {"type": "Function", "content": {"typeVars": [".0.139805469624576"], "argTypes": [{"nodeId": ".0.139805469624576"}, {"nodeId": "139805255609680"}], "returnType": {"nodeId": ".0.139805469624576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.139805469624576": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469624576", "variance": "INVARIANT"}}, "139805255609680": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469625024": {"type": "Function", "content": {"typeVars": [".0.139805469625024"], "argTypes": [{"nodeId": ".0.139805469625024"}, {"nodeId": "139805255609792"}, {"nodeId": "139805255609904"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469625024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}}, ".0.139805469625024": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469625024", "variance": "INVARIANT"}}, "139805255609792": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805255609904": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469625472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255610016"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805255610016": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469625920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255610128"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805255610128": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469626368": {"type": "Function", "content": {"typeVars": [".0.139805469626368"], "argTypes": [{"nodeId": ".0.139805469626368"}, {"nodeId": "139805481893056"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805469626368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.139805469626368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469626368", "variance": "INVARIANT"}}, "139805469626816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255610464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139805255610464": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805469627264": {"type": "Function", "content": {"typeVars": [".0.139805469627264"], "argTypes": [{"nodeId": ".0.139805469627264"}, {"nodeId": "139805255610576"}], "returnType": {"nodeId": ".0.139805469627264"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.139805469627264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469627264", "variance": "INVARIANT"}}, "139805255610576": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805469627712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255610688"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805255610688": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805469628160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255610800"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805255610800": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805469628608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139805469629056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255610912"}, {"nodeId": "139805255611024"}, {"nodeId": "139805255611136"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "139805255610912": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}]}}, "139805255611024": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255611136": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805469629504": {"type": "Function", "content": {"typeVars": [".0.139805469629504"], "argTypes": [{"nodeId": ".0.139805469629504"}, {"nodeId": "139805255611248"}], "returnType": {"nodeId": ".0.139805469629504"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.139805469629504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469629504", "variance": "INVARIANT"}}, "139805255611248": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805469629952": {"type": "Function", "content": {"typeVars": [".0.139805469629952"], "argTypes": [{"nodeId": ".0.139805469629952"}], "returnType": {"nodeId": ".0.139805469629952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469629952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469629952", "variance": "INVARIANT"}}, "139805469630400": {"type": "Function", "content": {"typeVars": [".0.139805469630400"], "argTypes": [{"nodeId": ".0.139805469630400"}], "returnType": {"nodeId": ".0.139805469630400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469630400": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469630400", "variance": "INVARIANT"}}, "139805469630848": {"type": "Function", "content": {"typeVars": [".0.139805469630848"], "argTypes": [{"nodeId": ".0.139805469630848"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805469630848"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, ".0.139805469630848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469630848", "variance": "INVARIANT"}}, "139805469631296": {"type": "Function", "content": {"typeVars": [".0.139805469631296"], "argTypes": [{"nodeId": ".0.139805469631296"}], "returnType": {"nodeId": ".0.139805469631296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469631296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469631296", "variance": "INVARIANT"}}, "139805469631744": {"type": "Function", "content": {"typeVars": [".0.139805469631744"], "argTypes": [{"nodeId": ".0.139805469631744"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469631744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}}, ".0.139805469631744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469631744", "variance": "INVARIANT"}}, "139805277006560": {"type": "Concrete", "content": {"module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "content": {"name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213124064"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255606320"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469633536"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469633984"}, "name": "appendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469634432"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469634880"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469635328"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469635776"}, "name": "extendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469636224"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469636672"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469637120"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469637568"}, "name": "popleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469638016"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469737024"}, "name": "rotate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469737472"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469737920"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469738368"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469738816"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469739264"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469739712"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469740160"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469740608"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469741056"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469741504"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469741952"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469742400"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469742848"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469743296"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469743744"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469744192"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805277006560"}], "bases": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805277006560"}]}], "isAbstract": false}}, ".1.139805277006560": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277006560", "variance": "INVARIANT"}}, "139805213124064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "139805255611472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255611472": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255606320": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469632640"}, {"nodeId": "139805469633088"}]}}, "139805469632640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805255611696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}}, "139805255611696": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805469633088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805255611808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}}, "139805255611808": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805469633536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": ".1.139805277006560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469633984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": ".1.139805277006560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469634432": {"type": "Function", "content": {"typeVars": [".0.139805469634432"], "argTypes": [{"nodeId": ".0.139805469634432"}], "returnType": {"nodeId": ".0.139805469634432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469634432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, "def": "139805469634432", "variance": "INVARIANT"}}, "139805469634880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": ".1.139805277006560"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469635328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469635776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469636224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805481893056"}, {"nodeId": ".1.139805277006560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805469636672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": ".1.139805277006560"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805469637120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": ".1.139805277006560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469637568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": ".1.139805277006560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469638016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": ".1.139805277006560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469737024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805469737472": {"type": "Function", "content": {"typeVars": [".0.139805469737472"], "argTypes": [{"nodeId": ".0.139805469737472"}], "returnType": {"nodeId": ".0.139805469737472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469737472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, "def": "139805469737472", "variance": "INVARIANT"}}, "139805469737920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469738368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".1.139805277006560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469738816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805277009376"}, {"nodeId": ".1.139805277006560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805469739264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469739712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469740160": {"type": "Function", "content": {"typeVars": [".0.139805469740160"], "argTypes": [{"nodeId": ".0.139805469740160"}], "returnType": {"nodeId": "139805255612368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469740160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, "def": "139805469740160", "variance": "INVARIANT"}}, "139805255612368": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805255612144"}, {"nodeId": "N"}, {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277006560"}]}]}}, "139805255612144": {"type": "Tuple", "content": {"items": []}}, "139805469740608": {"type": "Function", "content": {"typeVars": [".0.139805469740608"], "argTypes": [{"nodeId": ".0.139805469740608"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": ".0.139805469740608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469740608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, "def": "139805469740608", "variance": "INVARIANT"}}, "139805469741056": {"type": "Function", "content": {"typeVars": [".0.139805469741056"], "argTypes": [{"nodeId": ".0.139805469741056"}, {"nodeId": ".0.139805469741056"}], "returnType": {"nodeId": ".0.139805469741056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469741056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, "def": "139805469741056", "variance": "INVARIANT"}}, "139805469741504": {"type": "Function", "content": {"typeVars": [".0.139805469741504"], "argTypes": [{"nodeId": ".0.139805469741504"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469741504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, "def": "139805469741504", "variance": "INVARIANT"}}, "139805469741952": {"type": "Function", "content": {"typeVars": [".0.139805469741952"], "argTypes": [{"nodeId": ".0.139805469741952"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469741952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469741952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, "def": "139805469741952", "variance": "INVARIANT"}}, "139805469742400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469742848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469743296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469743744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469744192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805267806336": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469907136"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805267806336"}], "bases": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805267806336"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": ".1.139805267806336"}]}], "isAbstract": false}}, ".1.139805267806336": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267806336", "variance": "COVARIANT"}}, "139805469907136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267806336", "args": [{"nodeId": ".1.139805267806336"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805267806336"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805267806688": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469907584"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805267806688"}, {"nodeId": ".2.139805267806688"}], "bases": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805267806688"}, {"nodeId": ".2.139805267806688"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": "139805268573792"}]}], "isAbstract": false}}, ".1.139805267806688": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267806688", "variance": "COVARIANT"}}, ".2.139805267806688": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267806688", "variance": "COVARIANT"}}, "139805469907584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267806688", "args": [{"nodeId": ".1.139805267806688"}, {"nodeId": ".2.139805267806688"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805255942208"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805255942208": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805267806688"}, {"nodeId": ".2.139805267806688"}]}}, "139805268573792": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805267806688"}, {"nodeId": ".2.139805267806688"}]}}, "139805267807040": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469908032"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805267807040"}], "bases": [{"nodeId": "139805276999872", "args": [{"nodeId": ".1.139805267807040"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": ".1.139805267807040"}]}], "isAbstract": false}}, ".1.139805267807040": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267807040", "variance": "COVARIANT"}}, "139805469908032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267807040", "args": [{"nodeId": ".1.139805267807040"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805267807040"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805277006912": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469908480"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805277006912"}, {"nodeId": ".2.139805277006912"}], "bases": [{"nodeId": "139805277001984", "args": [{"nodeId": ".1.139805277006912"}, {"nodeId": ".2.139805277006912"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": ".1.139805277006912"}]}], "isAbstract": false}}, ".1.139805277006912": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277006912", "variance": "COVARIANT"}}, ".2.139805277006912": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277006912", "variance": "COVARIANT"}}, "139805469908480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006912", "args": [{"nodeId": ".1.139805277006912"}, {"nodeId": ".2.139805277006912"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277006912"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805277007264": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469908928"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805277007264"}, {"nodeId": ".2.139805277007264"}], "bases": [{"nodeId": "139805277002688", "args": [{"nodeId": ".1.139805277007264"}, {"nodeId": ".2.139805277007264"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": "139805276561344"}]}], "isAbstract": false}}, ".1.139805277007264": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277007264", "variance": "COVARIANT"}}, ".2.139805277007264": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277007264", "variance": "COVARIANT"}}, "139805469908928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007264", "args": [{"nodeId": ".1.139805277007264"}, {"nodeId": ".2.139805277007264"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805255942432"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805255942432": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805277007264"}, {"nodeId": ".2.139805277007264"}]}}, "139805276561344": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805277007264"}, {"nodeId": ".2.139805277007264"}]}}, "139805277007616": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469909376"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805277007616"}, {"nodeId": ".2.139805277007616"}], "bases": [{"nodeId": "139805277002336", "args": [{"nodeId": ".1.139805277007616"}, {"nodeId": ".2.139805277007616"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": ".2.139805277007616"}]}], "isAbstract": false}}, ".1.139805277007616": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277007616", "variance": "COVARIANT"}}, ".2.139805277007616": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277007616", "variance": "COVARIANT"}}, "139805469909376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007616", "args": [{"nodeId": ".1.139805277007616"}, {"nodeId": ".2.139805277007616"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".2.139805277007616"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805277007968": {"type": "Concrete", "content": {"module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469909824"}, "name": "popitem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469910272"}, "name": "move_to_end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469910720"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469911168"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469911616"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469912064"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469912512"}, "name": "values"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255613376"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255942768"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}], "typeVars": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}], "bases": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": ".1.139805277007968"}]}], "isAbstract": false}}, ".1.139805277007968": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277007968", "variance": "INVARIANT"}}, ".2.139805277007968": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277007968", "variance": "INVARIANT"}}, "139805469909824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805255942656"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}}, "139805255942656": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}}, "139805469910272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, {"nodeId": ".1.139805277007968"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}}, "139805469910720": {"type": "Function", "content": {"typeVars": [".0.139805469910720"], "argTypes": [{"nodeId": ".0.139805469910720"}], "returnType": {"nodeId": ".0.139805469910720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469910720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, "def": "139805469910720", "variance": "INVARIANT"}}, "139805469911168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277007968"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469911616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}], "returnType": {"nodeId": "139805277006912", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469912064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}], "returnType": {"nodeId": "139805277007264", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469912512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}], "returnType": {"nodeId": "139805277007616", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255613376": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469912960"}, {"nodeId": "139805469913408"}]}}, "139805469912960": {"type": "Function", "content": {"typeVars": [".-1.139805469912960"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805469912960"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805277007968", "args": [{"nodeId": ".-1.139805469912960"}, {"nodeId": "139805255943104"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139805469912960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805469912960", "variance": "INVARIANT"}}, "139805255943104": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805469913408": {"type": "Function", "content": {"typeVars": [".-1.139805469913408", ".-2.139805469913408"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805469913408"}]}, {"nodeId": ".-2.139805469913408"}], "returnType": {"nodeId": "139805277007968", "args": [{"nodeId": ".-1.139805469913408"}, {"nodeId": ".-2.139805469913408"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139805469913408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805469913408", "variance": "INVARIANT"}}, ".-2.139805469913408": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805469913408", "variance": "INVARIANT"}}, "139805255942768": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469913856"}, {"nodeId": "139805469914304"}]}}, "139805469913856": {"type": "Function", "content": {"typeVars": [".-1.139805469913856"], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": "139805255943328"}]}, {"nodeId": ".1.139805277007968"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805255943440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "139805255943328": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805469913856"}, {"nodeId": "N"}]}}, ".-1.139805469913856": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805469913856", "variance": "INVARIANT"}}, "139805255943440": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805469913856"}, {"nodeId": "N"}]}}, "139805469914304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, {"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}], "returnType": {"nodeId": ".2.139805277007968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "139805276880416": {"type": "Concrete", "content": {"module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276557536"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255942880"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464823168"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464823616"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464824064"}, "name": "copy"}}], "typeVars": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}], "bases": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}], "isAbstract": false}}, ".1.139805276880416": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276880416", "variance": "INVARIANT"}}, ".2.139805276880416": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276880416", "variance": "INVARIANT"}}, "139805276557536": {"type": "Union", "content": {"items": [{"nodeId": "139805276228736"}, {"nodeId": "N"}]}}, "139805276228736": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": [], "argNames": []}}, "139805255942880": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469914752"}, {"nodeId": "139805469915200"}, {"nodeId": "139805469915648"}, {"nodeId": "139805469916096"}, {"nodeId": "139805469916544"}, {"nodeId": "139805464821824"}, {"nodeId": "139805464822272"}, {"nodeId": "139805464822720"}]}}, "139805469914752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469915200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": ".2.139805276880416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139805469915648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": "139805255943664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805255943664": {"type": "Union", "content": {"items": [{"nodeId": "139805255283904"}, {"nodeId": "N"}]}}, "139805255283904": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": [], "argNames": []}}, "139805469916096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": "139805255943776"}, {"nodeId": ".2.139805276880416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805255943776": {"type": "Union", "content": {"items": [{"nodeId": "139805255284128"}, {"nodeId": "N"}]}}, "139805255284128": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": [], "argNames": []}}, "139805469916544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": "139805255943888"}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805255943888": {"type": "Union", "content": {"items": [{"nodeId": "139805255283456"}, {"nodeId": "N"}]}}, "139805255283456": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": [], "argNames": []}}, "139805464821824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": "139805255944000"}, {"nodeId": "139805267818304", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": ".2.139805276880416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "139805255944000": {"type": "Union", "content": {"items": [{"nodeId": "139805255284352"}, {"nodeId": "N"}]}}, "139805255284352": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": [], "argNames": []}}, "139805464822272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": "139805255944112"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805255944336"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805255944112": {"type": "Union", "content": {"items": [{"nodeId": "139805255284576"}, {"nodeId": "N"}]}}, "139805255284576": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": [], "argNames": []}}, "139805255944336": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}}, "139805464822720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": "139805255944448"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805255944672"}]}, {"nodeId": ".2.139805276880416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "139805255944448": {"type": "Union", "content": {"items": [{"nodeId": "139805255284800"}, {"nodeId": "N"}]}}, "139805255284800": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": [], "argNames": []}}, "139805255944672": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276880416"}]}}, "139805464823168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": ".1.139805276880416"}], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805464823616": {"type": "Function", "content": {"typeVars": [".0.139805464823616"], "argTypes": [{"nodeId": ".0.139805464823616"}], "returnType": {"nodeId": ".0.139805464823616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805464823616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276880416", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}, "def": "139805464823616", "variance": "INVARIANT"}}, "139805464824064": {"type": "Function", "content": {"typeVars": [".0.139805464824064"], "argTypes": [{"nodeId": ".0.139805464824064"}], "returnType": {"nodeId": ".0.139805464824064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805464824064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276880416", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}, "def": "139805464824064", "variance": "INVARIANT"}}, "139805277008320": {"type": "Concrete", "content": {"module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464824512"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464824960"}, "name": "new_child"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213615584"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464825856"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464826304"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464826752"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464827200"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464827648"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464828096"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464828544"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464828992"}, "name": "__bool__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255943216"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255944896"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464831232"}, "name": "copy"}}, {"kind": "Variable", "content": {"name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805213618272"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255945120"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464832576"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464833024"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255945456"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}], "bases": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}], "isAbstract": false}}, ".1.139805277008320": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277008320", "variance": "INVARIANT"}}, ".2.139805277008320": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277008320", "variance": "INVARIANT"}}, "139805464824512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}}, "139805464824960": {"type": "Function", "content": {"typeVars": [".0.139805464824960"], "argTypes": [{"nodeId": ".0.139805464824960"}, {"nodeId": "139805255945008"}], "returnType": {"nodeId": ".0.139805464824960"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, ".0.139805464824960": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, "def": "139805464824960", "variance": "INVARIANT"}}, "139805255945008": {"type": "Union", "content": {"items": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": "N"}]}}, "139805213615584": {"type": "Function", "content": {"typeVars": [".0.139805213615584"], "argTypes": [{"nodeId": ".0.139805213615584"}], "returnType": {"nodeId": ".0.139805213615584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805213615584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, "def": "139805213615584", "variance": "INVARIANT"}}, "139805464825856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805464826304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": ".1.139805277008320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805464826752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": ".1.139805277008320"}], "returnType": {"nodeId": ".2.139805277008320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805464827200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277008320"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805464827648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805464828096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805464828544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": ".1.139805277008320"}], "returnType": {"nodeId": ".2.139805277008320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "139805464828992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255943216": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805464829440"}, {"nodeId": "139805464829888"}]}}, "139805464829440": {"type": "Function", "content": {"typeVars": [".-1.139805464829440"], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": "139805255945232"}]}, {"nodeId": ".1.139805277008320"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805255945344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "139805255945232": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805464829440"}, {"nodeId": "N"}]}}, ".-1.139805464829440": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464829440", "variance": "INVARIANT"}}, "139805255945344": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805464829440"}, {"nodeId": "N"}]}}, "139805464829888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}], "returnType": {"nodeId": ".2.139805277008320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "139805255944896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805464830336"}, {"nodeId": "139805464830784"}]}}, "139805464830336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": ".1.139805277008320"}], "returnType": {"nodeId": ".2.139805277008320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "139805464830784": {"type": "Function", "content": {"typeVars": [".-1.139805464830784"], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": ".1.139805277008320"}, {"nodeId": "139805255945568"}], "returnType": {"nodeId": "139805255945680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "139805255945568": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805277008320"}, {"nodeId": ".-1.139805464830784"}]}}, ".-1.139805464830784": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464830784", "variance": "INVARIANT"}}, "139805255945680": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805277008320"}, {"nodeId": ".-1.139805464830784"}]}}, "139805464831232": {"type": "Function", "content": {"typeVars": [".0.139805464831232"], "argTypes": [{"nodeId": ".0.139805464831232"}], "returnType": {"nodeId": ".0.139805464831232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805464831232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, "def": "139805464831232", "variance": "INVARIANT"}}, "139805213618272": {"type": "Function", "content": {"typeVars": [".0.139805213618272"], "argTypes": [{"nodeId": ".0.139805213618272"}], "returnType": {"nodeId": ".0.139805213618272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805213618272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, "def": "139805213618272", "variance": "INVARIANT"}}, "139805255945120": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805464831680"}, {"nodeId": "139805464832128"}]}}, "139805464831680": {"type": "Function", "content": {"typeVars": [".-1.139805464831680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805464831680"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805277008320", "args": [{"nodeId": ".-1.139805464831680"}, {"nodeId": "139805255946016"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}}, ".-1.139805464831680": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464831680", "variance": "INVARIANT"}}, "139805255946016": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805464832128": {"type": "Function", "content": {"typeVars": [".-1.139805464832128", ".-2.139805464832128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805464832128"}]}, {"nodeId": ".-2.139805464832128"}], "returnType": {"nodeId": "139805277008320", "args": [{"nodeId": ".-1.139805464832128"}, {"nodeId": ".-2.139805464832128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.139805464832128": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464832128", "variance": "INVARIANT"}}, ".-2.139805464832128": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464832128", "variance": "INVARIANT"}}, "139805464832576": {"type": "Function", "content": {"typeVars": [".-1.139805464832576", ".-2.139805464832576"], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805464832576"}, {"nodeId": ".-2.139805464832576"}]}], "returnType": {"nodeId": "139805277008320", "args": [{"nodeId": "139805255946128"}, {"nodeId": "139805255946240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805464832576": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464832576", "variance": "INVARIANT"}}, ".-2.139805464832576": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464832576", "variance": "INVARIANT"}}, "139805255946128": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".-1.139805464832576"}]}}, "139805255946240": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805277008320"}, {"nodeId": ".-2.139805464832576"}]}}, "139805464833024": {"type": "Function", "content": {"typeVars": [".-1.139805464833024", ".-2.139805464833024"], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805464833024"}, {"nodeId": ".-2.139805464833024"}]}], "returnType": {"nodeId": "139805277008320", "args": [{"nodeId": "139805255946352"}, {"nodeId": "139805255946464"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805464833024": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464833024", "variance": "INVARIANT"}}, ".-2.139805464833024": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464833024", "variance": "INVARIANT"}}, "139805255946352": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".-1.139805464833024"}]}}, "139805255946464": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805277008320"}, {"nodeId": ".-2.139805464833024"}]}}, "139805255945456": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805464833472"}, {"nodeId": "139805464833920"}]}}, "139805464833472": {"type": "Function", "content": {"typeVars": [".0.139805464833472"], "argTypes": [{"nodeId": ".0.139805464833472"}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}], "returnType": {"nodeId": ".0.139805464833472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805464833472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, "def": "139805464833472", "variance": "INVARIANT"}}, "139805464833920": {"type": "Function", "content": {"typeVars": [".0.139805464833920"], "argTypes": [{"nodeId": ".0.139805464833920"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805255946800"}]}], "returnType": {"nodeId": ".0.139805464833920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805464833920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, "def": "139805464833920", "variance": "INVARIANT"}}, "139805255946800": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}}, "139805171901440": {"type": "Concrete", "content": {"module": "numpy._pytesttester", "simpleName": "PytestTester", "members": [{"kind": "Variable", "content": {"name": "module_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805372772000"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "label", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "verbose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra_argv", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doctests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "coverage", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "durations", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805372772448"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805372772000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901440"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module_name"]}}, "139805372772448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901440"}, {"nodeId": "139805175561712"}, {"nodeId": "139805481893056"}, {"nodeId": "139805175561824"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805175562048"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "label", "verbose", "extra_argv", "doctests", "coverage", "durations", "tests"]}}, "139805175561712": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805175561824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}]}}, "139805175562048": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}]}}, "139805155353952": {"type": "Concrete", "content": {"module": "numpy.core._internal", "simpleName": "_ctypes", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146247264"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "Variable", "content": {"name": "data", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805116804320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805116708256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805116702656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_as_parameter_", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805116704448"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414616512"}, "name": "data_as"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414616960"}, "name": "shape_as"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414617408"}, "name": "strides_as"}}], "typeVars": [{"nodeId": ".1.139805155353952"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805155353952": {"type": "TypeVar", "content": {"varName": "_PT", "values": [], "upperBound": {"nodeId": "139805155309632"}, "def": "139805155353952", "variance": "INVARIANT"}}, "139805155309632": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805146247264": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414613824"}, {"nodeId": "139805414614272"}]}}, "139805414613824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155353952", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "array", "ptr"]}}, "139805155356768": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ndarray", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117580672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117580448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117581120"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146533104"}, "items": [{"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117581344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "real"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146535680"}, "items": [{"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117581568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "imag"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176095104"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440166592"}, "name": "__class_getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146536352"}, "items": [{"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__array__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "inputs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440167936"}, "name": "__array_ufunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "types", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440168384"}, "name": "__array_function__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440168832"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440169280"}, "name": "__array_wrap__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440169728"}, "name": "__array_prepare__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146536688"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "Variable", "content": {"name": "ctypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117582016"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146536912"}, "items": [{"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117581792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "shape"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146541952"}, "items": [{"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117582912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "strides"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "inplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440174656"}, "name": "byteswap"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440175104"}, "name": "fill"}}, {"kind": "Variable", "content": {"name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117583136"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146542288"}, "items": [{"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "item"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146542624"}, "items": [{"kind": "Variable", "content": {"name": "itemset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "itemset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "itemset"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146543072"}, "items": [{"kind": "Variable", "content": {"name": "resize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "resize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "align", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "uic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440178688"}, "name": "setflags"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440179136"}, "name": "squeeze"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440179584"}, "name": "swapaxes"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146543408"}, "items": [{"kind": "Variable", "content": {"name": "transpose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "transpose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "transpose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kth", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440345024"}, "name": "argpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440345472"}, "name": "diagonal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146543856"}, "items": [{"kind": "Variable", "content": {"name": "dot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "dot"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440347264"}, "name": "nonzero"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kth", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440347712"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440348160"}, "name": "put"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146545536"}, "items": [{"kind": "Variable", "content": {"name": "searchsorted", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "searchsorted", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "searchsorted"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440349504"}, "name": "setfield"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440349952"}, "name": "sort"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146463392"}, "items": [{"kind": "Variable", "content": {"name": "trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "trace"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146647456"}, "items": [{"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "take"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repeats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440352640"}, "name": "repeat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440353088"}, "name": "flatten"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440353536"}, "name": "ravel"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146649136"}, "items": [{"kind": "Variable", "content": {"name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "reshape"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146649696"}, "items": [{"kind": "Variable", "content": {"name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "astype"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146650032"}, "items": [{"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "view"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146652944"}, "items": [{"kind": "Variable", "content": {"name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "getfield"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176147840"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176144480"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176144256"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176143808"}, "name": "__index__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440492032"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440415648"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440492480"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440492928"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146654064"}, "items": [{"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__lt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146654288"}, "items": [{"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__le__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146654960"}, "items": [{"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__gt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146656864"}, "items": [{"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146658768"}, "items": [{"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__abs__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146544416"}, "items": [{"kind": "Variable", "content": {"name": "__invert__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__invert__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__invert__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__invert__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146694592"}, "items": [{"kind": "Variable", "content": {"name": "__pos__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pos__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pos__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pos__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146695824"}, "items": [{"kind": "Variable", "content": {"name": "__neg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__neg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__neg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__neg__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146696608"}, "items": [{"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__matmul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146697392"}, "items": [{"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rmatmul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146701200"}, "items": [{"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__mod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146704896"}, "items": [{"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146707584"}, "items": [{"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__divmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146660336"}, "items": [{"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146746992"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146750128"}, "items": [{"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__radd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146754832"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146709600"}, "items": [{"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rsub__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146797152"}, "items": [{"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__mul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146801856"}, "items": [{"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rmul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146806896"}, "items": [{"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__floordiv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146758864"}, "items": [{"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rfloordiv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146831488"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146835184"}, "items": [{"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rpow__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146838992"}, "items": [{"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__truediv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146807568"}, "items": [{"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rtruediv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146879632"}, "items": [{"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__lshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146883552"}, "items": [{"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rlshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146885792"}, "items": [{"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146888032"}, "items": [{"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rrshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146840672"}, "items": [{"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__and__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146909040"}, "items": [{"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146911168"}, "items": [{"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__xor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146913296"}, "items": [{"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rxor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146915424"}, "items": [{"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__or__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146917552"}, "items": [{"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146919680"}, "items": [{"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__iadd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146921808"}, "items": [{"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__isub__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146889712"}, "items": [{"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__imul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146960880"}, "items": [{"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__itruediv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146963568"}, "items": [{"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ifloordiv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146965248"}, "items": [{"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ipow__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146967824"}, "items": [{"kind": "Variable", "content": {"name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__imod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146969952"}, "items": [{"kind": "Variable", "content": {"name": "__ilshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ilshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ilshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ilshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146922480"}, "items": [{"kind": "Variable", "content": {"name": "__irshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__irshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__irshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__irshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141763344"}, "items": [{"kind": "Variable", "content": {"name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__iand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141764688"}, "items": [{"kind": "Variable", "content": {"name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ixor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141766368"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805175530656"}, "name": "__dlpack__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431244032"}, "name": "__dlpack_device__"}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112873504"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}], "bases": [{"nodeId": "139805155355360"}], "isAbstract": false}}, ".1.139805155356768": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805155356768", "variance": "INVARIANT"}}, ".2.139805155356768": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805155356768", "variance": "COVARIANT"}}, "139805150983296": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "dtype", "members": [{"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805187924688"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146249056"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805465454272"}, "name": "__class_getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146249616"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805155311200"}, "items": [{"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__mul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146361280"}, "items": [{"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805465457856"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805465458304"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805465458752"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805465459200"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805465459648"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805465460096"}, "name": "__ne__"}}, {"kind": "Variable", "content": {"name": "alignment", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117104416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117143680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117143904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "char", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117144128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "descr", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117144352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fields", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117144576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117144800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hasobject", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117145024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isbuiltin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117145248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isnative", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117145472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isalignedstruct", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117145696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117145920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117146144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117146368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117146592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "num", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117146816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117147040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117147264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subdtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117147488"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new_order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176214944"}, "name": "newbyteorder"}}, {"kind": "Variable", "content": {"name": "str", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117147712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117147936"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805150983296"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805150983296": {"type": "TypeVar", "content": {"varName": "_DTypeScalar_co", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805150983296", "variance": "COVARIANT"}}, "139805155357120": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "generic", "members": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805112873728"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141768048"}, "items": [{"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__array__"}}, {"kind": "Variable", "content": {"name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112874400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112872160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112872384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112873056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112861408"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "inplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431248512"}, "name": "byteswap"}}, {"kind": "Variable", "content": {"name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112869024"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141769728"}, "items": [{"kind": "Variable", "content": {"name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "astype"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141770736"}, "items": [{"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "view"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141773984"}, "items": [{"kind": "Variable", "content": {"name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "getfield"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431400256"}, "name": "item"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141775104"}, "items": [{"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "take"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repeats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805175644896"}, "name": "repeat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805175647136"}, "name": "flatten"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805175648928"}, "name": "ravel"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141775440"}, "items": [{"kind": "Variable", "content": {"name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "reshape"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431404288"}, "name": "squeeze"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431404736"}, "name": "transpose"}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112870368"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805155355360"}], "isAbstract": true}}, "139805112873728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805141768048": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175533568"}, {"nodeId": "139805431245824"}]}}, "139805175533568": {"type": "Function", "content": {"typeVars": [".-1.139805175533568"], "argTypes": [{"nodeId": ".-1.139805175533568"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805175533568"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, ".-1.139805175533568": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805175533568", "variance": "INVARIANT"}}, "139805431245824": {"type": "Function", "content": {"typeVars": [".-1.139805431245824"], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": ".-1.139805431245824"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".-1.139805431245824"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805431245824": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805431245824", "variance": "INVARIANT"}}, "139805112874400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805112872160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805112872384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805112873056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}], "returnType": {"nodeId": "139805141771408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141771408": {"type": "Tuple", "content": {"items": []}}, "139805112861408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}], "returnType": {"nodeId": "139805141771632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141771632": {"type": "Tuple", "content": {"items": []}}, "139805431248512": {"type": "Function", "content": {"typeVars": [".-1.139805431248512"], "argTypes": [{"nodeId": ".-1.139805431248512"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.139805431248512"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "inplace"]}}, ".-1.139805431248512": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431248512", "variance": "INVARIANT"}}, "139805112869024": {"type": "Function", "content": {"typeVars": [".-1.139805112869024"], "argTypes": [{"nodeId": ".-1.139805112869024"}], "returnType": {"nodeId": "139805150983648", "args": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805112869024"}]}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112869024": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805112869024", "variance": "INVARIANT"}}, "139805150983648": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "flatiter", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117324128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "coords", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117324800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117325024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805461244928"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805461245376"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805461245824"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805461246272"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146360384"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805461247616"}, "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146361840"}, "items": [{"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__array__"}}], "typeVars": [{"nodeId": ".1.139805150983648"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805150983648": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805150983648", "variance": "INVARIANT"}}, "139805117324128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}], "returnType": {"nodeId": ".1.139805150983648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117324800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}], "returnType": {"nodeId": "139805146364752"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146364752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805117325024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805461244928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}], "returnType": {"nodeId": ".1.139805150983648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805461245376": {"type": "Function", "content": {"typeVars": [".-1.139805461245376"], "argTypes": [{"nodeId": ".-1.139805461245376"}], "returnType": {"nodeId": ".-1.139805461245376"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805461245376": {"type": "TypeVar", "content": {"varName": "_FlatIterSelf", "values": [], "upperBound": {"nodeId": "139805150983648", "args": [{"nodeId": "A"}]}, "def": "139805461245376", "variance": "INVARIANT"}}, "139805461245824": {"type": "Function", "content": {"typeVars": [".-1.139805461245824"], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805461245824"}]}]}]}], "returnType": {"nodeId": ".-1.139805461245824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805461245824": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805461245824", "variance": "INVARIANT"}}, "139805461246272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805146360384": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805461246720"}, {"nodeId": "139805461247168"}]}}, "139805461246720": {"type": "Function", "content": {"typeVars": [".-1.139805461246720"], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805461246720"}]}]}]}, {"nodeId": "139805146365760"}], "returnType": {"nodeId": ".-1.139805461246720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805461246720": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805461246720", "variance": "INVARIANT"}}, "139805146365760": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, {"nodeId": "139805146365648"}]}}, "139805155359232": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "integer", "members": [{"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112978336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112990432"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141861984"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431587200"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431587648"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431588096"}, "name": "is_integer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431588544"}, "name": "bit_count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431588992"}, "name": "__index__"}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155347968", "args": [{"nodeId": ".1.139805155359232"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155347968", "args": [{"nodeId": ".1.139805155359232"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431589440"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431589888"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431590336"}, "name": "__invert__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431590784"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431591232"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431591680"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431592128"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431592576"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431593024"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431593472"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431593920"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431594368"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431709760"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.139805155359232"}], "bases": [{"nodeId": "139805155357472", "args": [{"nodeId": ".1.139805155359232"}]}], "isAbstract": true}}, ".1.139805155359232": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155359232", "variance": "INVARIANT"}}, "139805154855744": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "NBitBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805372773792"}, "name": "__init_subclass__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805372773792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139805112978336": {"type": "Function", "content": {"typeVars": [".-1.139805112978336"], "argTypes": [{"nodeId": ".-1.139805112978336"}], "returnType": {"nodeId": ".-1.139805112978336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112978336": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805112978336", "variance": "INVARIANT"}}, "139805112990432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141861984": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431586304"}, {"nodeId": "139805431586752"}]}}, "139805431586304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "ndigits"]}}, "139805431586752": {"type": "Function", "content": {"typeVars": [".-1.139805431586752"], "argTypes": [{"nodeId": ".-1.139805431586752"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": ".-1.139805431586752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ndigits"]}}, ".-1.139805431586752": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431586752", "variance": "INVARIANT"}}, "139805276997408": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242510240"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__index__"]}}, "139805242510240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276997408"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805431587200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141865008"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141865008": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805141864560"}, {"nodeId": "139805141864896"}]}}, "139805141864560": {"type": "Tuple", "content": {"items": []}}, "139805141864896": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805431587648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805431588096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805431588544": {"type": "Function", "content": {"typeVars": [".-1.139805431588544"], "argTypes": [{"nodeId": ".-1.139805431588544"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805431588544": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431588544", "variance": "INVARIANT"}}, "139805431588992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805155347968": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_IntTrueDiv", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146180048"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155347968"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155347968": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155347968", "variance": "INVARIANT"}}, "139805146180048": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410634304"}, {"nodeId": "139805410634752"}, {"nodeId": "139805410635200"}, {"nodeId": "139805410635648"}, {"nodeId": "139805410636096"}]}}, "139805410634304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347968", "args": [{"nodeId": ".1.139805155347968"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805155347968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805150577056": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "floating", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431720960"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431721408"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431721856"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431722304"}, "name": "is_integer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171793056"}, "name": "hex"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805108234144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431723648"}, "name": "as_integer_ratio"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171827424"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171827200"}, "name": "__floor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171840416"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171841312"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typestr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171841088"}, "name": "__getformat__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141864112"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351488", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351488", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351840", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351840", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805150577056"}], "bases": [{"nodeId": "139805150576704", "args": [{"nodeId": ".1.139805150577056"}]}], "isAbstract": false}}, ".1.139805150577056": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805150577056", "variance": "INVARIANT"}}, "139805431720960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577056"}]}, {"nodeId": "139805141870720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141870720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150259888"}}}, "139805150259888": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805150258768"}, {"nodeId": "139805276996352"}, {"nodeId": "139805276997408"}]}}, "139805150258768": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805159546928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}]}}, "139805431721408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577056"}]}, {"nodeId": "139805141871504"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141871504": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805141871056"}, {"nodeId": "139805141871392"}]}}, "139805141871056": {"type": "Tuple", "content": {"items": []}}, "139805141871392": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805431721856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577056"}]}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805431722304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577056"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805171793056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805141871616"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141871616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805154857504": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_64Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154857152"}], "isAbstract": false}}, "139805154857152": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_80Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154856800"}], "isAbstract": false}}, "139805154856800": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_96Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154856448"}], "isAbstract": false}}, "139805154856448": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_128Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154856096"}], "isAbstract": false}}, "139805154856096": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_256Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154855744"}], "isAbstract": false}}, "139805108234144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805141871728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141871728": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805431723648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577056"}]}], "returnType": {"nodeId": "139805141871952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141871952": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805171827424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805141872064"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141872064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805171827200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805141872176"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141872176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805171840416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805141872288"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141872288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805171841312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805141872400"}], "returnType": {"nodeId": "139805141872624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141872400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805141872624": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}]}}, "139805171841088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805141872736"}, {"nodeId": "139805141873072"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141872736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805141873072": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805141864112": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431906816"}, {"nodeId": "139805431907264"}]}}, "139805431906816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577056"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "ndigits"]}}, "139805431907264": {"type": "Function", "content": {"typeVars": [".-1.139805431907264"], "argTypes": [{"nodeId": ".-1.139805431907264"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": ".-1.139805431907264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ndigits"]}}, ".-1.139805431907264": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431907264", "variance": "INVARIANT"}}, "139805155351136": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_FloatOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146243568"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155351136"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155351136": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155351136", "variance": "INVARIANT"}}, "139805146243568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414600128"}, {"nodeId": "139805414600576"}, {"nodeId": "139805414601024"}, {"nodeId": "139805414601472"}, {"nodeId": "139805414601920"}]}}, "139805414600128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805155351136"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805155351136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414600576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805155351136"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146244240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146244240": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351136"}, {"nodeId": "139805146244128"}]}}, "139805146244128": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414601024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805155351136"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146244464"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146244464": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351136"}, {"nodeId": "139805146244352"}]}}, "139805146244352": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414601472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805155351136"}]}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": "139805146244688"}, {"nodeId": "139805146244912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805150577408": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "complexfloating", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431907712"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431908160"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431908608"}, "name": "tolist"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108238400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108239520"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431909952"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171840864"}, "name": "__getnewargs__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805150577408"}, {"nodeId": ".2.139805150577408"}], "bases": [{"nodeId": "139805150576704", "args": [{"nodeId": ".1.139805150577408"}]}], "isAbstract": false}}, ".1.139805150577408": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805150577408", "variance": "INVARIANT"}}, ".2.139805150577408": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805150577408", "variance": "INVARIANT"}}, "139805431907712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577408", "args": [{"nodeId": ".1.139805150577408"}, {"nodeId": ".2.139805150577408"}]}, {"nodeId": "139805141873296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141873296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150260112"}}}, "139805150260112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805150259552"}, {"nodeId": "139805276996352"}, {"nodeId": "139805276996704"}, {"nodeId": "139805276997408"}, {"nodeId": "139805276667968"}]}}, "139805150259552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805431908160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577408", "args": [{"nodeId": ".1.139805150577408"}, {"nodeId": ".2.139805150577408"}]}, {"nodeId": "139805141874080"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141874080": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805141873632"}, {"nodeId": "139805141873968"}]}}, "139805141873632": {"type": "Tuple", "content": {"items": []}}, "139805141873968": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805431908608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577408", "args": [{"nodeId": ".1.139805150577408"}, {"nodeId": ".2.139805150577408"}]}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108238400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577408", "args": [{"nodeId": ".1.139805150577408"}, {"nodeId": ".2.139805150577408"}]}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577408"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108239520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577408", "args": [{"nodeId": ".1.139805150577408"}, {"nodeId": ".2.139805150577408"}]}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": ".2.139805150577408"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805431909952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577408", "args": [{"nodeId": ".1.139805150577408"}, {"nodeId": ".2.139805150577408"}]}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577408"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805171840864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805141874192"}], "returnType": {"nodeId": "139805141874416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141874192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805154857504"}, {"nodeId": "139805154857504"}]}}}, "139805141874416": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805155352192": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_ComplexOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146245248"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155352192"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155352192": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155352192", "variance": "INVARIANT"}}, "139805146245248": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414393216"}, {"nodeId": "139805414393664"}, {"nodeId": "139805414394112"}, {"nodeId": "139805414394560"}]}}, "139805414393216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805155352192"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": ".1.139805155352192"}, {"nodeId": ".1.139805155352192"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414393664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805155352192"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": "139805146247488"}, {"nodeId": "139805146247712"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146247488": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155352192"}, {"nodeId": "139805146247376"}]}}, "139805146247376": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805146247712": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155352192"}, {"nodeId": "139805146247600"}]}}, "139805146247600": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414394112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805155352192"}]}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": "139805146247936"}, {"nodeId": "139805146248160"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146247936": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155352192"}, {"nodeId": "139805146247824"}]}}, "139805146247824": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805146248160": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155352192"}, {"nodeId": "139805146248048"}]}}, "139805146248048": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414394560": {"type": "Function", "content": {"typeVars": [".-1.139805414394560"], "argTypes": [{"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805155352192"}]}, {"nodeId": "139805146248272"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": "139805146248384"}, {"nodeId": "139805146248496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146248272": {"type": "Union", "content": {"items": [{"nodeId": "139805155359232", "args": [{"nodeId": ".-1.139805414394560"}]}, {"nodeId": "139805150577056", "args": [{"nodeId": ".-1.139805414394560"}]}, {"nodeId": "139805150577408", "args": [{"nodeId": ".-1.139805414394560"}, {"nodeId": ".-1.139805414394560"}]}]}}, ".-1.139805414394560": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414394560", "variance": "INVARIANT"}}, "139805146248384": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155352192"}, {"nodeId": ".-1.139805414394560"}]}}, "139805146248496": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155352192"}, {"nodeId": ".-1.139805414394560"}]}}, "139805150576704": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "inexact", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431720512"}, "name": "__getnewargs__"}}], "typeVars": [{"nodeId": ".1.139805150576704"}], "bases": [{"nodeId": "139805155357472", "args": [{"nodeId": ".1.139805150576704"}]}], "isAbstract": true}}, ".1.139805150576704": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805150576704", "variance": "INVARIANT"}}, "139805431720512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150576704", "args": [{"nodeId": "139805154857504"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893408"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805155357472": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "number", "members": [{"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112873280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112874624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431406528"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431406976"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431407424"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431407872"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431408320"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431408768"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431409216"}, "name": "__abs__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805196742528"}, {"nodeId": "139805196733008"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163129872"}, {"nodeId": "139805163126848"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163127520"}, {"nodeId": "139805163139728"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163131328"}, {"nodeId": "139805163131440"}]}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805155357472"}], "bases": [{"nodeId": "139805155357120"}], "isAbstract": true}}, ".1.139805155357472": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155357472", "variance": "INVARIANT"}}, "139805112873280": {"type": "Function", "content": {"typeVars": [".-1.139805112873280"], "argTypes": [{"nodeId": ".-1.139805112873280"}], "returnType": {"nodeId": ".-1.139805112873280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112873280": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805112873280", "variance": "INVARIANT"}}, "139805155355360": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "_ArrayOrScalarCommon", "members": [{"kind": "Variable", "content": {"name": "T", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117325920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "data", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117327264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117327712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117327936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117328160"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439739264"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439739712"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439740160"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439740608"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439741056"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439741504"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439741952"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439742400"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176212704"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439743296"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439743744"}, "name": "dumps"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439744192"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439744640"}, "name": "tofile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439745088"}, "name": "tolist"}}, {"kind": "Variable", "content": {"name": "__array_interface__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117328384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__array_priority__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117329952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__array_struct__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117330176"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439746880"}, "name": "__setstate__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146364976"}, "items": [{"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "all"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146449392"}, "items": [{"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "any"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146452976"}, "items": [{"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "argmax"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146454096"}, "items": [{"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "argmin"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439752704"}, "name": "argsort"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146451856"}, "items": [{"kind": "Variable", "content": {"name": "choose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "choose"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146454656"}, "items": [{"kind": "Variable", "content": {"name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "clip"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146456560"}, "items": [{"kind": "Variable", "content": {"name": "compress", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compress", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "compress"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439937216"}, "name": "conj"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439937664"}, "name": "conjugate"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146458240"}, "items": [{"kind": "Variable", "content": {"name": "cumprod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cumprod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "cumprod"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146458912"}, "items": [{"kind": "Variable", "content": {"name": "cumsum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cumsum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "cumsum"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146459360"}, "items": [{"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "max"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146460592"}, "items": [{"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "mean"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146461376"}, "items": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "min"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new_order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176098464"}, "name": "newbyteorder"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146463056"}, "items": [{"kind": "Variable", "content": {"name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "prod"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146463616"}, "items": [{"kind": "Variable", "content": {"name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "ptp"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146250176"}, "items": [{"kind": "Variable", "content": {"name": "round", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "round", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "round"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146530304"}, "items": [{"kind": "Variable", "content": {"name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "std"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146530528"}, "items": [{"kind": "Variable", "content": {"name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sum"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146533216"}, "items": [{"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "var"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805117325920": {"type": "Function", "content": {"typeVars": [".-1.139805117325920"], "argTypes": [{"nodeId": ".-1.139805117325920"}], "returnType": {"nodeId": ".-1.139805117325920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805117325920": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805117325920", "variance": "INVARIANT"}}, "139805117327264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117327712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805154868768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154868768": {"type": "Concrete", "content": {"module": "numpy.core.multiarray", "simpleName": "flagsobj", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "aligned", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writeable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writebackifcopy", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "behaved", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120965632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120855424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "carray", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120984032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120984928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120984480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "farray", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120984256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fnc", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120983584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "forc", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120983360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fortran", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120983136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "num", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120982912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "owndata", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120982688"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805385785408"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805385785856"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805120965632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120855424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120984032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120984928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120984480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120984256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120983584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120983360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120983136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120982912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120982688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805385785408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}, {"nodeId": "139805213441632"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805213441632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155297984"}}}, "139805155297984": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805385785856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}, {"nodeId": "139805213441856"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805213441856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155146912"}}}, "139805155146912": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805117327936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117328160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805439739264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805439739712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805439740160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805439740608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805439741056": {"type": "Function", "content": {"typeVars": [".-1.139805439741056"], "argTypes": [{"nodeId": ".-1.139805439741056"}], "returnType": {"nodeId": ".-1.139805439741056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805439741056": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805439741056", "variance": "INVARIANT"}}, "139805439741504": {"type": "Function", "content": {"typeVars": [".-1.139805439741504"], "argTypes": [{"nodeId": ".-1.139805439741504"}, {"nodeId": "139805146449952"}], "returnType": {"nodeId": ".-1.139805439741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805439741504": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805439741504", "variance": "INVARIANT"}}, "139805146449952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": "A"}]}]}}, "139805439741952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805439742400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805176212704": {"type": "Function", "content": {"typeVars": [".-1.139805176212704"], "argTypes": [{"nodeId": ".-1.139805176212704"}, {"nodeId": "139805146450512"}], "returnType": {"nodeId": ".-1.139805176212704"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, ".-1.139805176212704": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805176212704", "variance": "INVARIANT"}}, "139805146450512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805150252832": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805439743296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146450624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "file"]}}, "139805146450624": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805155355008", "args": [{"nodeId": "139805276669376"}]}]}}, "139805268510496": {"type": "Protocol", "content": {"module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "content": {"name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242761600"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805268510496"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__fspath__"]}}, ".1.139805268510496": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805268510496", "variance": "COVARIANT"}}, "139805242761600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268510496", "args": [{"nodeId": ".1.139805268510496"}]}], "returnType": {"nodeId": ".1.139805268510496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805155355008": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473933568"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.139805155355008"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["write"]}}, ".1.139805155355008": {"type": "TypeVar", "content": {"varName": "_AnyStr_contra", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805155355008", "variance": "CONTRAVARIANT"}}, "139805473933568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355008", "args": [{"nodeId": ".1.139805155355008"}]}, {"nodeId": ".1.139805155355008"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805439743744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805439744192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146450736"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139805146450736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805439744640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146450848"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fid", "sep", "format"]}}, "139805146450848": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805155354304"}]}}, "139805155354304": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_IOProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464835712"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464836160"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464836608"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464837056"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["fileno", "flush", "seek", "tell"]}}, "139805464835712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354304"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805464836160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354304"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805464836608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354304"}], "returnType": {"nodeId": "139805276997408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805464837056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354304"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805439745088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117328384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117329952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117330176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805439746880": {"type": "Function", "content": {"typeVars": [".-1.139805439746880"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146451744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146451744": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805146451296"}, {"nodeId": ".-1.139805439746880"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146451520"}]}}, "139805146451296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805184453184": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276997408"}]}]}}, ".-1.139805439746880": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805439746880", "variance": "COVARIANT"}}, "139805146451520": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}]}}, "139805146364976": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439747328"}, {"nodeId": "139805439747776"}, {"nodeId": "139805439748224"}]}}, "139805439747328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805146452080"}], "returnType": {"nodeId": "139805155357824"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "139805146452080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805155357824": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "bool_", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431409664"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431410112"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431410560"}, "name": "tolist"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112875744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112876640"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431411904"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431412352"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431412800"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431413248"}, "name": "__abs__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155346208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155346208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805196531552"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805196532112"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805196531888"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805196532000"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155346560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155346560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431413696"}, "name": "__invert__"}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805196531776"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805196530656"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805196531440"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805196531328"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155346912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155346912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155347264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155347264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163131888"}, {"nodeId": "139805163127184"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163137824"}, {"nodeId": "139805163128192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163131776"}, {"nodeId": "139805163131216"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163132000"}, {"nodeId": "139805163134240"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805155357120"}], "isAbstract": false}}, "139805431409664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357824"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805431410112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357824"}, {"nodeId": "139805141861872"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141861872": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805141861424"}, {"nodeId": "139805141861760"}]}}, "139805141861424": {"type": "Tuple", "content": {"items": []}}, "139805141861760": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805431410560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357824"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805112875744": {"type": "Function", "content": {"typeVars": [".-1.139805112875744"], "argTypes": [{"nodeId": ".-1.139805112875744"}], "returnType": {"nodeId": ".-1.139805112875744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112875744": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805112875744", "variance": "INVARIANT"}}, "139805112876640": {"type": "Function", "content": {"typeVars": [".-1.139805112876640"], "argTypes": [{"nodeId": ".-1.139805112876640"}], "returnType": {"nodeId": ".-1.139805112876640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112876640": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805112876640", "variance": "INVARIANT"}}, "139805431411904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357824"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431412352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357824"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431412800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357824"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431413248": {"type": "Function", "content": {"typeVars": [".-1.139805431413248"], "argTypes": [{"nodeId": ".-1.139805431413248"}], "returnType": {"nodeId": ".-1.139805431413248"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431413248": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805431413248", "variance": "INVARIANT"}}, "139805155345504": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146177136"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155345504"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155345504": {"type": "TypeVar", "content": {"varName": "_GenericType_co", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805155345504", "variance": "COVARIANT"}}, "139805146177136": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414618752"}, {"nodeId": "139805414619200"}, {"nodeId": "139805414619648"}, {"nodeId": "139805414620096"}, {"nodeId": "139805414620544"}]}}, "139805414618752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155345504", "args": [{"nodeId": ".1.139805155345504"}]}, {"nodeId": "139805146177584"}], "returnType": {"nodeId": ".1.139805155345504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146177584": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159542784"}}}, "139805159542784": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805155357824"}]}}, "139805414619200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155345504", "args": [{"nodeId": ".1.139805155345504"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805146178256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146178256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805155359584": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "signedinteger", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431710208"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350432", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350432", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350784", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350784", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805155359584"}], "bases": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359584"}]}], "isAbstract": false}}, ".1.139805155359584": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155359584", "variance": "INVARIANT"}}, "139805431710208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359584", "args": [{"nodeId": ".1.139805155359584"}]}, {"nodeId": "139805141867920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141867920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150259664"}}}, "139805150259664": {"type": "Union", "content": {"items": [{"nodeId": "139805276996000"}, {"nodeId": "139805150258656"}, {"nodeId": "139805276997408"}]}}, "139805150258656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805155349728": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SignedIntOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146238640"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155349728"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155349728": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155349728", "variance": "INVARIANT"}}, "139805146238640": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414592960"}, {"nodeId": "139805414593408"}, {"nodeId": "139805414593856"}, {"nodeId": "139805414594304"}, {"nodeId": "139805414594752"}]}}, "139805414592960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155349728"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": ".1.139805155349728"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414593408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155349728"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "139805146239312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146239312": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155349728"}, {"nodeId": "139805146239200"}]}}, "139805146239200": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414593856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155349728"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146239536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146239536": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155349728"}, {"nodeId": "139805146239424"}]}}, "139805146239424": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414594304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155349728"}]}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": "139805146239760"}, {"nodeId": "139805146239984"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146239760": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155349728"}, {"nodeId": "139805146239648"}]}}, "139805146239648": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805146239984": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155349728"}, {"nodeId": "139805146239872"}]}}, "139805146239872": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414594752": {"type": "Function", "content": {"typeVars": [".-1.139805414594752"], "argTypes": [{"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155349728"}]}, {"nodeId": "139805155359584", "args": [{"nodeId": ".-1.139805414594752"}]}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "139805146240096"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414594752": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414594752", "variance": "INVARIANT"}}, "139805146240096": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155349728"}, {"nodeId": ".-1.139805414594752"}]}}, "139805155350080": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SignedIntBitOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805184450608"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155350080"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155350080": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155350080", "variance": "INVARIANT"}}, "139805184450608": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414595200"}, {"nodeId": "139805414595648"}, {"nodeId": "139805414596096"}]}}, "139805414595200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155350080"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": ".1.139805155350080"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414595648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155350080"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "139805146240880"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146240880": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155350080"}, {"nodeId": "139805146240768"}]}}, "139805146240768": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414596096": {"type": "Function", "content": {"typeVars": [".-1.139805414596096"], "argTypes": [{"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155350080"}]}, {"nodeId": "139805155359584", "args": [{"nodeId": ".-1.139805414596096"}]}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "139805146241216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414596096": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414596096", "variance": "INVARIANT"}}, "139805146241216": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155350080"}, {"nodeId": ".-1.139805414596096"}]}}, "139805155350432": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SignedIntMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146240992"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155350432"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155350432": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155350432", "variance": "INVARIANT"}}, "139805146240992": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414596544"}, {"nodeId": "139805414596992"}, {"nodeId": "139805414597440"}, {"nodeId": "139805414597888"}]}}, "139805414596544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350432", "args": [{"nodeId": ".1.139805155350432"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": ".1.139805155350432"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414596992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350432", "args": [{"nodeId": ".1.139805155350432"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "139805146241552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146241552": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155350432"}, {"nodeId": "139805146241440"}]}}, "139805146241440": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414597440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350432", "args": [{"nodeId": ".1.139805155350432"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146241776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146241776": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155350432"}, {"nodeId": "139805146241664"}]}}, "139805146241664": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414597888": {"type": "Function", "content": {"typeVars": [".-1.139805414597888"], "argTypes": [{"nodeId": "139805155350432", "args": [{"nodeId": ".1.139805155350432"}]}, {"nodeId": "139805155359584", "args": [{"nodeId": ".-1.139805414597888"}]}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "139805146241888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414597888": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414597888", "variance": "INVARIANT"}}, "139805146241888": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155350432"}, {"nodeId": ".-1.139805414597888"}]}}, "139805155350784": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SignedIntDivMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805155310976"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155350784"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155350784": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155350784", "variance": "INVARIANT"}}, "139805155310976": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414598336"}, {"nodeId": "139805414598784"}, {"nodeId": "139805414599232"}, {"nodeId": "139805414599680"}]}}, "139805414598336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350784", "args": [{"nodeId": ".1.139805155350784"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414598784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350784", "args": [{"nodeId": ".1.139805155350784"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414599232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350784", "args": [{"nodeId": ".1.139805155350784"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414599680": {"type": "Function", "content": {"typeVars": [".-1.139805414599680"], "argTypes": [{"nodeId": "139805155350784", "args": [{"nodeId": ".1.139805155350784"}]}, {"nodeId": "139805155359584", "args": [{"nodeId": ".-1.139805414599680"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414599680": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414599680", "variance": "INVARIANT"}}, "139805150261008": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414619648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155345504", "args": [{"nodeId": ".1.139805155345504"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805146178480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146178480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805414620096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155345504", "args": [{"nodeId": ".1.139805155345504"}]}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805146178592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146178592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805154857504"}, {"nodeId": "139805154857504"}]}}}, "139805414620544": {"type": "Function", "content": {"typeVars": [".-1.139805414620544"], "argTypes": [{"nodeId": "139805155345504", "args": [{"nodeId": ".1.139805155345504"}]}, {"nodeId": ".-1.139805414620544"}], "returnType": {"nodeId": ".-1.139805414620544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414620544": {"type": "TypeVar", "content": {"varName": "_NumberType", "values": [], "upperBound": {"nodeId": "139805155357472", "args": [{"nodeId": "A"}]}, "def": "139805414620544", "variance": "INVARIANT"}}, "139805155346208": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolSub", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146176688"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805146176688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410624896"}, {"nodeId": "139805410625344"}, {"nodeId": "139805410625792"}, {"nodeId": "139805410626240"}, {"nodeId": "139805410626688"}]}}, "139805410624896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346208"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410625344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346208"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805146179152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146179152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805410625792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346208"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805146179264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146179264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805410626240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346208"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805146179376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146179376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805154857504"}, {"nodeId": "139805154857504"}]}}}, "139805410626688": {"type": "Function", "content": {"typeVars": [".-1.139805410626688"], "argTypes": [{"nodeId": "139805155346208"}, {"nodeId": ".-1.139805410626688"}], "returnType": {"nodeId": ".-1.139805410626688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410626688": {"type": "TypeVar", "content": {"varName": "_NumberType", "values": [], "upperBound": {"nodeId": "139805155357472", "args": [{"nodeId": "A"}]}, "def": "139805410626688", "variance": "INVARIANT"}}, "139805196531552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805154858560": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_8Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154858208"}], "isAbstract": false}}, "139805154858208": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_16Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154857856"}], "isAbstract": false}}, "139805154857856": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_32Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154857504"}], "isAbstract": false}}, "139805196532112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805196531888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805196532000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805155346560": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolTrueDiv", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146178032"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805146178032": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410627136"}, {"nodeId": "139805410627584"}, {"nodeId": "139805410628032"}]}}, "139805410627136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346560"}, {"nodeId": "139805146179712"}], "returnType": {"nodeId": "139805146179824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146179712": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805146179600"}]}}, "139805146179600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805159389136": {"type": "Union", "content": {"items": [{"nodeId": "139805159542896"}, {"nodeId": "139805481893056"}, {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}]}}, "139805159542896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159542784"}}}, "139805146179824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805410627584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346560"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805146179936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146179936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805154857504"}, {"nodeId": "139805154857504"}]}}}, "139805410628032": {"type": "Function", "content": {"typeVars": [".-1.139805410628032"], "argTypes": [{"nodeId": "139805155346560"}, {"nodeId": ".-1.139805410628032"}], "returnType": {"nodeId": ".-1.139805410628032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410628032": {"type": "TypeVar", "content": {"varName": "_NumberType", "values": [], "upperBound": {"nodeId": "139805155357472", "args": [{"nodeId": "A"}]}, "def": "139805410628032", "variance": "INVARIANT"}}, "139805431413696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357824"}], "returnType": {"nodeId": "139805155357824"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805155345856": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolBitOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146177472"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155345856"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155345856": {"type": "TypeVar", "content": {"varName": "_GenericType_co", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805155345856", "variance": "COVARIANT"}}, "139805146177472": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410623552"}, {"nodeId": "139805410624000"}, {"nodeId": "139805410624448"}]}}, "139805410623552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155345856", "args": [{"nodeId": ".1.139805155345856"}]}, {"nodeId": "139805146178816"}], "returnType": {"nodeId": ".1.139805155345856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146178816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159542784"}}}, "139805410624000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155345856", "args": [{"nodeId": ".1.139805155345856"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805146178928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146178928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805410624448": {"type": "Function", "content": {"typeVars": [".-1.139805410624448"], "argTypes": [{"nodeId": "139805155345856", "args": [{"nodeId": ".1.139805155345856"}]}, {"nodeId": ".-1.139805410624448"}], "returnType": {"nodeId": ".-1.139805410624448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410624448": {"type": "TypeVar", "content": {"varName": "_IntType", "values": [], "upperBound": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "def": "139805410624448", "variance": "INVARIANT"}}, "139805196531776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805196530656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805196531440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805196531328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805155346912": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146178704"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805146178704": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410628480"}, {"nodeId": "139805410628928"}, {"nodeId": "139805410629376"}, {"nodeId": "139805410629824"}, {"nodeId": "139805410630272"}]}}, "139805410628480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346912"}, {"nodeId": "139805146180160"}], "returnType": {"nodeId": "139805146180272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146180160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159542784"}}}, "139805146180272": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805410628928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346912"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805146180384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146180384": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805410629376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346912"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805146180496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146180496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805410629824": {"type": "Function", "content": {"typeVars": [".-1.139805410629824"], "argTypes": [{"nodeId": "139805155346912"}, {"nodeId": ".-1.139805410629824"}], "returnType": {"nodeId": ".-1.139805410629824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410629824": {"type": "TypeVar", "content": {"varName": "_IntType", "values": [], "upperBound": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "def": "139805410629824", "variance": "INVARIANT"}}, "139805410630272": {"type": "Function", "content": {"typeVars": [".-1.139805410630272"], "argTypes": [{"nodeId": "139805155346912"}, {"nodeId": ".-1.139805410630272"}], "returnType": {"nodeId": ".-1.139805410630272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410630272": {"type": "TypeVar", "content": {"varName": "_FloatType", "values": [], "upperBound": {"nodeId": "139805150577056", "args": [{"nodeId": "A"}]}, "def": "139805410630272", "variance": "INVARIANT"}}, "139805155347264": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolDivMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146179040"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805146179040": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410630720"}, {"nodeId": "139805410631168"}, {"nodeId": "139805410631616"}, {"nodeId": "139805410632064"}, {"nodeId": "139805410632512"}]}}, "139805410630720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347264"}, {"nodeId": "139805146180720"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146180720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159542784"}}}, "139805410631168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347264"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410631616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347264"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410632064": {"type": "Function", "content": {"typeVars": [".-1.139805410632064"], "argTypes": [{"nodeId": "139805155347264"}, {"nodeId": ".-1.139805410632064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410632064": {"type": "TypeVar", "content": {"varName": "_IntType", "values": [], "upperBound": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "def": "139805410632064", "variance": "INVARIANT"}}, "139805410632512": {"type": "Function", "content": {"typeVars": [".-1.139805410632512"], "argTypes": [{"nodeId": "139805155347264"}, {"nodeId": ".-1.139805410632512"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410632512": {"type": "TypeVar", "content": {"varName": "_FloatType", "values": [], "upperBound": {"nodeId": "139805150577056", "args": [{"nodeId": "A"}]}, "def": "139805410632512", "variance": "INVARIANT"}}, "139805155353600": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_ComparisonOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146246032"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155353600"}, {"nodeId": ".2.139805155353600"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155353600": {"type": "TypeVar", "content": {"varName": "_T1_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805155353600", "variance": "CONTRAVARIANT"}}, ".2.139805155353600": {"type": "TypeVar", "content": {"varName": "_T2_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805155353600", "variance": "CONTRAVARIANT"}}, "139805146246032": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414396352"}, {"nodeId": "139805414396800"}, {"nodeId": "139805414397248"}]}}, "139805414396352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353600", "args": [{"nodeId": ".1.139805155353600"}, {"nodeId": ".2.139805155353600"}]}, {"nodeId": ".1.139805155353600"}], "returnType": {"nodeId": "139805155357824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414396800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353600", "args": [{"nodeId": ".1.139805155353600"}, {"nodeId": ".2.139805155353600"}]}, {"nodeId": ".2.139805155353600"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414397248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353600", "args": [{"nodeId": ".1.139805155353600"}, {"nodeId": ".2.139805155353600"}]}, {"nodeId": "139805146249392"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146249392": {"type": "Union", "content": {"items": [{"nodeId": "139805155352896"}, {"nodeId": "139805155353248"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805146249280"}]}]}}, "139805155352896": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SupportsLT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414395456"}, "name": "__lt__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__lt__"]}}, "139805414395456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155352896"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805155353248": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SupportsGT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414395904"}, "name": "__gt__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__gt__"]}}, "139805414395904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353248"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805167797344": {"type": "Protocol", "content": {"module": "numpy._typing._nested_sequence", "simpleName": "_NestedSequence", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339467360"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805167975360"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339206816"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339207264"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339207712"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339208160"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339208608"}, "name": "index"}}], "typeVars": [{"nodeId": ".1.139805167797344"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "__reversed__", "count", "index"]}}, ".1.139805167797344": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805167797344", "variance": "COVARIANT"}}, "139805339467360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805167975360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805339205920"}, {"nodeId": "139805339206368"}]}}, "139805339205920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805167975248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805167975248": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805167797344"}, {"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}]}}, "139805339206368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805339206816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805339207264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805167975696"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805167975696": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805167797344"}, {"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}]}}, "139805339207712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805167975808"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805167975808": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805167797344"}, {"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}]}}, "139805339208160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805339208608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146249280": {"type": "Union", "content": {"items": [{"nodeId": "139805155352896"}, {"nodeId": "139805155353248"}]}}, "139805163131888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805159385216": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805276667968"}, {"nodeId": "139805155357472", "args": [{"nodeId": "A"}]}, {"nodeId": "139805155357824"}]}}, "139805163127184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163137824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805163128192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163131776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805163131216": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163132000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805163134240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439747776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146452304"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146452416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "139805146452304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146452192"}]}}, "139805146452192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146452416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439748224": {"type": "Function", "content": {"typeVars": [".-1.139805439748224"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146452752"}, {"nodeId": ".-1.139805439748224"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146452864"}], "returnType": {"nodeId": ".-1.139805439748224"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "139805146452752": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146452640"}]}}, "139805146452640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805439748224": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439748224", "variance": "INVARIANT"}}, "139805146452864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146449392": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439748672"}, {"nodeId": "139805439749120"}, {"nodeId": "139805439749568"}]}}, "139805439748672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805146453200"}], "returnType": {"nodeId": "139805155357824"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "139805146453200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439749120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146453424"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146453536"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "139805146453424": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146453312"}]}}, "139805146453312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146453536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439749568": {"type": "Function", "content": {"typeVars": [".-1.139805439749568"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146453872"}, {"nodeId": ".-1.139805439749568"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146453984"}], "returnType": {"nodeId": ".-1.139805439749568"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "139805146453872": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146453760"}]}}, "139805146453760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805439749568": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439749568", "variance": "INVARIANT"}}, "139805146453984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146452976": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439750016"}, {"nodeId": "139805439750464"}, {"nodeId": "139805439750912"}]}}, "139805439750016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805146454320"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805146454320": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805150260896": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805439750464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805276997408"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805439750912": {"type": "Function", "content": {"typeVars": [".-1.139805439750912"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146454544"}, {"nodeId": ".-1.139805439750912"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": ".-1.139805439750912"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805146454544": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, ".-1.139805439750912": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439750912", "variance": "INVARIANT"}}, "139805146454096": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439751360"}, {"nodeId": "139805439751808"}, {"nodeId": "139805439752256"}]}}, "139805439751360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805146454880"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805146454880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805439751808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805276997408"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805439752256": {"type": "Function", "content": {"typeVars": [".-1.139805439752256"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146455104"}, {"nodeId": ".-1.139805439752256"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": ".-1.139805439752256"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805146455104": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, ".-1.139805439752256": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439752256", "variance": "INVARIANT"}}, "139805439752704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146455216"}, {"nodeId": "139805146455440"}, {"nodeId": "139805146455552"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "kind", "order"]}}, "139805146455216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146455440": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146455328"}]}}, "139805146455328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150255520"}}}, "139805150255520": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146455552": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805146451856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439753152"}, {"nodeId": "139805439753600"}]}}, "139805439753152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146455888"}, {"nodeId": "N"}, {"nodeId": "139805146456000"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "choices", "out", "mode"]}}, "139805146455888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146456000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805150254736": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805439753600": {"type": "Function", "content": {"typeVars": [".-1.139805439753600"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146456336"}, {"nodeId": ".-1.139805439753600"}, {"nodeId": "139805146455776"}], "returnType": {"nodeId": ".-1.139805439753600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "choices", "out", "mode"]}}, "139805146456336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, ".-1.139805439753600": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439753600", "variance": "INVARIANT"}}, "139805146455776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805146454656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439934528"}, {"nodeId": "139805439934976"}, {"nodeId": "139805439935424"}, {"nodeId": "139805439935872"}]}}, "139805439934528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146456448"}, {"nodeId": "139805146456784"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}}, "139805146456448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146456784": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146456672"}]}}, "139805146456672": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439934976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "N"}, {"nodeId": "139805146457232"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}}, "139805146457232": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439935424": {"type": "Function", "content": {"typeVars": [".-1.139805439935424"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146457568"}, {"nodeId": "139805146457680"}, {"nodeId": ".-1.139805439935424"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139805439935424"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}}, "139805146457568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146457680": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146457120"}]}}, "139805146457120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, ".-1.139805439935424": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439935424", "variance": "INVARIANT"}}, "139805439935872": {"type": "Function", "content": {"typeVars": [".-1.139805439935872"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "N"}, {"nodeId": "139805146457456"}, {"nodeId": ".-1.139805439935872"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139805439935872"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}}, "139805146457456": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, ".-1.139805439935872": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439935872", "variance": "INVARIANT"}}, "139805146456560": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439936320"}, {"nodeId": "139805439936768"}]}}, "139805439936320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146458128"}, {"nodeId": "139805146458352"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "axis", "out"]}}, "139805146458128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146458352": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805439936768": {"type": "Function", "content": {"typeVars": [".-1.139805439936768"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146458688"}, {"nodeId": "139805146458016"}, {"nodeId": ".-1.139805439936768"}], "returnType": {"nodeId": ".-1.139805439936768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "axis", "out"]}}, "139805146458688": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146458016": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, ".-1.139805439936768": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439936768", "variance": "INVARIANT"}}, "139805439937216": {"type": "Function", "content": {"typeVars": [".-1.139805439937216"], "argTypes": [{"nodeId": ".-1.139805439937216"}], "returnType": {"nodeId": ".-1.139805439937216"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805439937216": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805439937216", "variance": "INVARIANT"}}, "139805439937664": {"type": "Function", "content": {"typeVars": [".-1.139805439937664"], "argTypes": [{"nodeId": ".-1.139805439937664"}], "returnType": {"nodeId": ".-1.139805439937664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805439937664": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805439937664", "variance": "INVARIANT"}}, "139805146458240": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439938112"}, {"nodeId": "139805439938560"}]}}, "139805439938112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146458800"}, {"nodeId": "139805146459024"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805146458800": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146459024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805159384768": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805167807552", "args": [{"nodeId": "0"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805159384096"}]}}, "139805167807552": {"type": "Protocol", "content": {"module": "numpy._typing._dtype_like", "simpleName": "_SupportsDType", "members": [{"kind": "Variable", "content": {"name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196718528"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805167807552"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["dtype"]}}, ".1.139805167807552": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805167807552", "variance": "COVARIANT"}}, "139805196718528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167807552", "args": [{"nodeId": ".1.139805167807552"}]}], "returnType": {"nodeId": ".1.139805167807552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805159384096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159554208"}}}, "139805159554208": {"type": "Union", "content": {"items": [{"nodeId": "139805159553200"}, {"nodeId": "139805159553536"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, {"nodeId": "139805159553760"}, {"nodeId": "139805159554096"}]}}, "139805159553200": {"type": "Tuple", "content": {"items": [{"nodeId": "139805159551744"}, {"nodeId": "139805481893056"}]}}, "139805159551744": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805159553536": {"type": "Tuple", "content": {"items": [{"nodeId": "139805159553312"}, {"nodeId": "139805159553424"}]}}, "139805159553312": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805159553424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805159553760": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805159554096": {"type": "Tuple", "content": {"items": [{"nodeId": "139805159553872"}, {"nodeId": "139805159553984"}]}}, "139805159553872": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805159553984": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805439938560": {"type": "Function", "content": {"typeVars": [".-1.139805439938560"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146458576"}, {"nodeId": "139805146460032"}, {"nodeId": ".-1.139805439938560"}], "returnType": {"nodeId": ".-1.139805439938560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805146458576": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146460032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805439938560": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439938560", "variance": "INVARIANT"}}, "139805146458912": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439939008"}, {"nodeId": "139805439939456"}]}}, "139805439939008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146460256"}, {"nodeId": "139805146459696"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805146460256": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146459696": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805439939456": {"type": "Function", "content": {"typeVars": [".-1.139805439939456"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146459584"}, {"nodeId": "139805146459808"}, {"nodeId": ".-1.139805439939456"}], "returnType": {"nodeId": ".-1.139805439939456"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805146459584": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146459808": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805439939456": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439939456", "variance": "INVARIANT"}}, "139805146459360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439939904"}, {"nodeId": "139805439940352"}]}}, "139805439939904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146459248"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146460480"}, {"nodeId": "139805146460704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}}, "139805146459248": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146461040"}]}}, "139805146461040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146460480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146460704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439940352": {"type": "Function", "content": {"typeVars": [".-1.139805439940352"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146460928"}, {"nodeId": ".-1.139805439940352"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146459920"}, {"nodeId": "139805146460816"}], "returnType": {"nodeId": ".-1.139805439940352"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}}, "139805146460928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146461488"}]}}, "139805146461488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805439940352": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439940352", "variance": "INVARIANT"}}, "139805146459920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146460816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146460592": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439940800"}, {"nodeId": "139805439941248"}]}}, "139805439940800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146461152"}, {"nodeId": "139805146461712"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146461600"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "where"]}}, "139805146461152": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146459472"}]}}, "139805146459472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146461712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805146461600": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439941248": {"type": "Function", "content": {"typeVars": [".-1.139805439941248"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146462496"}, {"nodeId": "139805146462048"}, {"nodeId": ".-1.139805439941248"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146462272"}], "returnType": {"nodeId": ".-1.139805439941248"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "where"]}}, "139805146462496": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146461936"}]}}, "139805146461936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146462048": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805439941248": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439941248", "variance": "INVARIANT"}}, "139805146462272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146461376": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439941696"}, {"nodeId": "139805439942144"}]}}, "139805439941696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146462832"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146460368"}, {"nodeId": "139805146462160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}}, "139805146462832": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146463168"}]}}, "139805146463168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146460368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146462160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439942144": {"type": "Function", "content": {"typeVars": [".-1.139805439942144"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146462608"}, {"nodeId": ".-1.139805439942144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146462384"}, {"nodeId": "139805146462944"}], "returnType": {"nodeId": ".-1.139805439942144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}}, "139805146462608": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146463280"}]}}, "139805146463280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805439942144": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439942144", "variance": "INVARIANT"}}, "139805146462384": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146462944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805176098464": {"type": "Function", "content": {"typeVars": [".-1.139805176098464"], "argTypes": [{"nodeId": ".-1.139805176098464"}, {"nodeId": "139805146462720"}], "returnType": {"nodeId": ".-1.139805176098464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, ".-1.139805176098464": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805176098464", "variance": "INVARIANT"}}, "139805146462720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253616"}}}, "139805150253616": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146463056": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439943040"}, {"nodeId": "139805439943488"}]}}, "139805439943040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146463952"}, {"nodeId": "139805146463840"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146464064"}, {"nodeId": "139805146529856"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "initial", "where"]}}, "139805146463952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146463504"}]}}, "139805146463504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146463840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805146464064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146529856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439943488": {"type": "Function", "content": {"typeVars": [".-1.139805439943488"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146530080"}, {"nodeId": "139805146530640"}, {"nodeId": ".-1.139805439943488"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146530192"}, {"nodeId": "139805146530976"}], "returnType": {"nodeId": ".-1.139805439943488"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "initial", "where"]}}, "139805146530080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146530416"}]}}, "139805146530416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146530640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805439943488": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439943488", "variance": "INVARIANT"}}, "139805146530192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146530976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146463616": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439943936"}, {"nodeId": "139805439944384"}]}}, "139805439943936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146531536"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805146531536": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146531424"}]}}, "139805146531424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805439944384": {"type": "Function", "content": {"typeVars": [".-1.139805439944384"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146531984"}, {"nodeId": ".-1.139805439944384"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": ".-1.139805439944384"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805146531984": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146530864"}]}}, "139805146530864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805439944384": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439944384", "variance": "INVARIANT"}}, "139805146250176": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439944832"}, {"nodeId": "139805439945280"}]}}, "139805439944832": {"type": "Function", "content": {"typeVars": [".-1.139805439944832"], "argTypes": [{"nodeId": ".-1.139805439944832"}, {"nodeId": "139805276997408"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.139805439944832"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "decimals", "out"]}}, ".-1.139805439944832": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805439944832", "variance": "INVARIANT"}}, "139805439945280": {"type": "Function", "content": {"typeVars": [".-1.139805439945280"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805276997408"}, {"nodeId": ".-1.139805439945280"}], "returnType": {"nodeId": ".-1.139805439945280"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "decimals", "out"]}}, ".-1.139805439945280": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439945280", "variance": "INVARIANT"}}, "139805146530304": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439945728"}, {"nodeId": "139805439946176"}]}}, "139805439945728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146530752"}, {"nodeId": "139805146531872"}, {"nodeId": "N"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146531648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims", "where"]}}, "139805146530752": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146531088"}]}}, "139805146531088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146531872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805146531648": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439946176": {"type": "Function", "content": {"typeVars": [".-1.139805439946176"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146532656"}, {"nodeId": "139805146532096"}, {"nodeId": ".-1.139805439946176"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146532432"}], "returnType": {"nodeId": ".-1.139805439946176"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims", "where"]}}, "139805146532656": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146532208"}]}}, "139805146532208": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146532096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805439946176": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439946176", "variance": "INVARIANT"}}, "139805146532432": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146530528": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439946624"}, {"nodeId": "139805439947072"}]}}, "139805439946624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146532992"}, {"nodeId": "139805146531312"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146532320"}, {"nodeId": "139805146533888"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "initial", "where"]}}, "139805146532992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146533328"}]}}, "139805146533328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146531312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805146532320": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146533888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439947072": {"type": "Function", "content": {"typeVars": [".-1.139805439947072"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146533664"}, {"nodeId": "139805146532544"}, {"nodeId": ".-1.139805439947072"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146533776"}, {"nodeId": "139805146532880"}], "returnType": {"nodeId": ".-1.139805439947072"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "initial", "where"]}}, "139805146533664": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146532768"}]}}, "139805146532768": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146532544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805439947072": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439947072", "variance": "INVARIANT"}}, "139805146533776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146532880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146533216": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439947520"}, {"nodeId": "139805439947968"}]}}, "139805439947520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146534224"}, {"nodeId": "139805146534448"}, {"nodeId": "N"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146534000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims", "where"]}}, "139805146534224": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146534784"}]}}, "139805146534784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146534448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805146534000": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439947968": {"type": "Function", "content": {"typeVars": [".-1.139805439947968"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146534896"}, {"nodeId": "139805146534560"}, {"nodeId": ".-1.139805439947968"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146534112"}], "returnType": {"nodeId": ".-1.139805439947968"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims", "where"]}}, "139805146534896": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146533552"}]}}, "139805146533552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146534560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805439947968": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439947968", "variance": "INVARIANT"}}, "139805146534112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805112874624": {"type": "Function", "content": {"typeVars": [".-1.139805112874624"], "argTypes": [{"nodeId": ".-1.139805112874624"}], "returnType": {"nodeId": ".-1.139805112874624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112874624": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805112874624", "variance": "INVARIANT"}}, "139805431406528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139805431406976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357472", "args": [{"nodeId": ".1.139805155357472"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431407424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357472", "args": [{"nodeId": ".1.139805155357472"}]}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431407872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357472", "args": [{"nodeId": ".1.139805155357472"}]}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431408320": {"type": "Function", "content": {"typeVars": [".-1.139805431408320"], "argTypes": [{"nodeId": ".-1.139805431408320"}], "returnType": {"nodeId": ".-1.139805431408320"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431408320": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805431408320", "variance": "INVARIANT"}}, "139805431408768": {"type": "Function", "content": {"typeVars": [".-1.139805431408768"], "argTypes": [{"nodeId": ".-1.139805431408768"}], "returnType": {"nodeId": ".-1.139805431408768"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431408768": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805431408768", "variance": "INVARIANT"}}, "139805431409216": {"type": "Function", "content": {"typeVars": [".-1.139805431409216"], "argTypes": [{"nodeId": ".-1.139805431409216"}], "returnType": {"nodeId": ".-1.139805431409216"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431409216": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805431409216", "variance": "INVARIANT"}}, "139805155352544": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_NumberOp", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414395008"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805414395008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155352544"}, {"nodeId": "139805146248608"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146248608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805196742528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805196733008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163129872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805163126848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163127520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805163139728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163131328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805163131440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146244688": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351136"}, {"nodeId": "139805146244576"}]}}, "139805146244576": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805146244912": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351136"}, {"nodeId": "139805146244800"}]}}, "139805146244800": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414601920": {"type": "Function", "content": {"typeVars": [".-1.139805414601920"], "argTypes": [{"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805155351136"}]}, {"nodeId": "139805146245024"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146245136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146245024": {"type": "Union", "content": {"items": [{"nodeId": "139805155359232", "args": [{"nodeId": ".-1.139805414601920"}]}, {"nodeId": "139805150577056", "args": [{"nodeId": ".-1.139805414601920"}]}]}}, ".-1.139805414601920": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414601920", "variance": "INVARIANT"}}, "139805146245136": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351136"}, {"nodeId": ".-1.139805414601920"}]}}, "139805155351488": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_FloatMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146243680"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155351488"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155351488": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155351488", "variance": "INVARIANT"}}, "139805146243680": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414602368"}, {"nodeId": "139805414602816"}, {"nodeId": "139805414603264"}, {"nodeId": "139805414603712"}]}}, "139805414602368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351488", "args": [{"nodeId": ".1.139805155351488"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805155351488"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414602816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351488", "args": [{"nodeId": ".1.139805155351488"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146245472"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146245472": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351488"}, {"nodeId": "139805146245360"}]}}, "139805146245360": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414603264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351488", "args": [{"nodeId": ".1.139805155351488"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146245696"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146245696": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351488"}, {"nodeId": "139805146245584"}]}}, "139805146245584": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414603712": {"type": "Function", "content": {"typeVars": [".-1.139805414603712"], "argTypes": [{"nodeId": "139805155351488", "args": [{"nodeId": ".1.139805155351488"}]}, {"nodeId": "139805146245808"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146245920"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146245808": {"type": "Union", "content": {"items": [{"nodeId": "139805155359232", "args": [{"nodeId": ".-1.139805414603712"}]}, {"nodeId": "139805150577056", "args": [{"nodeId": ".-1.139805414603712"}]}]}}, ".-1.139805414603712": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414603712", "variance": "INVARIANT"}}, "139805146245920": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351488"}, {"nodeId": ".-1.139805414603712"}]}}, "139805155351840": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_FloatDivMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146244016"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155351840"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155351840": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155351840", "variance": "INVARIANT"}}, "139805146244016": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414604160"}, {"nodeId": "139805414391872"}, {"nodeId": "139805414392320"}, {"nodeId": "139805414392768"}]}}, "139805414604160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351840", "args": [{"nodeId": ".1.139805155351840"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414391872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351840", "args": [{"nodeId": ".1.139805155351840"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414392320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351840", "args": [{"nodeId": ".1.139805155351840"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414392768": {"type": "Function", "content": {"typeVars": [".-1.139805414392768"], "argTypes": [{"nodeId": "139805155351840", "args": [{"nodeId": ".1.139805155351840"}]}, {"nodeId": "139805146246928"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146246928": {"type": "Union", "content": {"items": [{"nodeId": "139805155359232", "args": [{"nodeId": ".-1.139805414392768"}]}, {"nodeId": "139805150577056", "args": [{"nodeId": ".-1.139805414392768"}]}]}}, ".-1.139805414392768": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414392768", "variance": "INVARIANT"}}, "139805410634752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347968", "args": [{"nodeId": ".1.139805155347968"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146182400"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146182400": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155347968"}, {"nodeId": "139805146182288"}]}}, "139805146182288": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805410635200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347968", "args": [{"nodeId": ".1.139805155347968"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146182624"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146182624": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155347968"}, {"nodeId": "139805146182512"}]}}, "139805146182512": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805410635648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347968", "args": [{"nodeId": ".1.139805155347968"}]}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": "139805146182848"}, {"nodeId": "139805146183072"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146182848": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155347968"}, {"nodeId": "139805146182736"}]}}, "139805146182736": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805146183072": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155347968"}, {"nodeId": "139805146182960"}]}}, "139805146182960": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805410636096": {"type": "Function", "content": {"typeVars": [".-1.139805410636096"], "argTypes": [{"nodeId": "139805155347968", "args": [{"nodeId": ".1.139805155347968"}]}, {"nodeId": "139805155359232", "args": [{"nodeId": ".-1.139805410636096"}]}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146183184"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410636096": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805410636096", "variance": "INVARIANT"}}, "139805146183184": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155347968"}, {"nodeId": ".-1.139805410636096"}]}}, "139805431589440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141865232"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141865232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431589888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141865456"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141865456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431590336": {"type": "Function", "content": {"typeVars": [".-1.139805431590336"], "argTypes": [{"nodeId": ".-1.139805431590336"}], "returnType": {"nodeId": ".-1.139805431590336"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431590336": {"type": "TypeVar", "content": {"varName": "_IntType", "values": [], "upperBound": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "def": "139805431590336", "variance": "INVARIANT"}}, "139805431590784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141865680"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141865680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431591232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141865904"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141865904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431591680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141866128"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141866128": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431592128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141866352"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141866352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431592576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141866576"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141866576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431593024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141866800"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141866800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431593472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141867024"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141867024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431593920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141867248"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141867248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431594368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141867472"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141867472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431709760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141867696"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141867696": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805146365648": {"type": "Tuple", "content": {"items": [{"nodeId": "139805146365424"}]}}, "139805146365424": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}]}}, "139805461247168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}, {"nodeId": "139805146448496"}], "returnType": {"nodeId": ".1.139805150983648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146448496": {"type": "Union", "content": {"items": [{"nodeId": "139805146447936"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805146448384"}]}}, "139805146447936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805188446512"}}}, "139805188446512": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805187919536"}]}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}]}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}]}}, "139805187919536": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}]}}, "139805276675360": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805146448384": {"type": "Tuple", "content": {"items": [{"nodeId": "139805146448160"}]}}, "139805146448160": {"type": "Union", "content": {"items": [{"nodeId": "139805146448048"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}]}}, "139805146448048": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805188446512"}}}, "139805461247616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}, {"nodeId": "139805146449168"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805146449168": {"type": "Union", "content": {"items": [{"nodeId": "139805146448608"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805146449056"}]}}, "139805146448608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805188446512"}}}, "139805146449056": {"type": "Tuple", "content": {"items": [{"nodeId": "139805146448832"}]}}, "139805146448832": {"type": "Union", "content": {"items": [{"nodeId": "139805146448720"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}]}}, "139805146448720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805188446512"}}}, "139805146361840": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805461248064"}, {"nodeId": "139805461248512"}]}}, "139805461248064": {"type": "Function", "content": {"typeVars": [".-1.139805461248064"], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".-1.139805461248064"}]}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".-1.139805461248064"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, ".-1.139805461248064": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805461248064", "variance": "INVARIANT"}}, "139805461248512": {"type": "Function", "content": {"typeVars": [".-1.139805461248512"], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}, {"nodeId": ".-1.139805461248512"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".-1.139805461248512"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805461248512": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805461248512", "variance": "INVARIANT"}}, "139805141769728": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431249408"}, {"nodeId": "139805431249856"}]}}, "139805431249408": {"type": "Function", "content": {"typeVars": [".-1.139805431249408"], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "0"}, {"nodeId": "139805141772192"}, {"nodeId": "139805141772304"}, {"nodeId": "139805481882144"}, {"nodeId": "139805141772416"}], "returnType": {"nodeId": ".-1.139805431249408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}}, "139805141772192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805141772304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805150258432": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805141772416": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805150579872"}]}}, "139805150579872": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "_CopyMode", "members": [{"kind": "Variable", "content": {"name": "ALWAYS", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "IF_NEEDED", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "NEVER", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272617056"}], "isAbstract": false}}, "139805272617056": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805222080512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805222081184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272706848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222081408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222081632"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347395872"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347396320"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347396768"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347397216"}, "name": "__reduce_ex__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805222080512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617056"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805222081184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272706848": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}]}}, "139805222081408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, "139805222081632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}}, "139805347395872": {"type": "Function", "content": {"typeVars": [".0.139805347395872"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": ".0.139805347395872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.139805347395872": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272617056"}, "def": "139805347395872", "variance": "INVARIANT"}}, "139805347396320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347396768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}}, "139805347397216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617056"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}}, ".-1.139805431249408": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431249408", "variance": "INVARIANT"}}, "139805431249856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "139805141772528"}, {"nodeId": "139805141772640"}, {"nodeId": "139805141772752"}, {"nodeId": "139805481882144"}, {"nodeId": "139805141772864"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}}, "139805141772528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805141772640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805141772752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805141772864": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805150579872"}]}}, "139805141770736": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175532000"}, {"nodeId": "139805431398464"}, {"nodeId": "139805431398912"}]}}, "139805175532000": {"type": "Function", "content": {"typeVars": [".-1.139805175532000"], "argTypes": [{"nodeId": ".-1.139805175532000"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.139805175532000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "type"]}}, ".-1.139805175532000": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805175532000", "variance": "INVARIANT"}}, "139805431398464": {"type": "Function", "content": {"typeVars": [".-1.139805431398464"], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.139805431398464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "type"]}}, ".-1.139805431398464": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431398464", "variance": "INVARIANT"}}, "139805431398912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "139805141774208"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "type"]}}, "139805141774208": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805141773984": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431399360"}, {"nodeId": "139805431399808"}]}}, "139805431399360": {"type": "Function", "content": {"typeVars": [".-1.139805431399360"], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "0"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": ".-1.139805431399360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}}, ".-1.139805431399360": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431399360", "variance": "INVARIANT"}}, "139805431399808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "139805141775552"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}}, "139805141775552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805431400256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "139805141775776"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141775776": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805141776000"}, {"nodeId": "139805141774320"}]}}, "139805141776000": {"type": "Tuple", "content": {"items": []}}, "139805141774320": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805141775104": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175645344"}, {"nodeId": "139805431401152"}, {"nodeId": "139805431401600"}]}}, "139805175645344": {"type": "Function", "content": {"typeVars": [".-1.139805175645344"], "argTypes": [{"nodeId": ".-1.139805175645344"}, {"nodeId": "139805141774880"}, {"nodeId": "139805141775664"}, {"nodeId": "N"}, {"nodeId": "139805141774096"}], "returnType": {"nodeId": ".-1.139805175645344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, ".-1.139805175645344": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805175645344", "variance": "INVARIANT"}}, "139805141774880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805141775664": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805141774096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805431401152": {"type": "Function", "content": {"typeVars": [".-1.139805431401152"], "argTypes": [{"nodeId": ".-1.139805431401152"}, {"nodeId": "139805141775888"}, {"nodeId": "139805141776112"}, {"nodeId": "N"}, {"nodeId": "139805141776224"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805431401152"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, ".-1.139805431401152": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431401152", "variance": "INVARIANT"}}, "139805141775888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141776112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805141776224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805431401600": {"type": "Function", "content": {"typeVars": [".-1.139805431401600"], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "139805141774656"}, {"nodeId": "139805141776448"}, {"nodeId": ".-1.139805431401600"}, {"nodeId": "139805141776560"}], "returnType": {"nodeId": ".-1.139805431401600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, "139805141774656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141776448": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, ".-1.139805431401600": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805431401600", "variance": "INVARIANT"}}, "139805141776560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805175644896": {"type": "Function", "content": {"typeVars": [".-1.139805175644896"], "argTypes": [{"nodeId": ".-1.139805175644896"}, {"nodeId": "139805141776672"}, {"nodeId": "139805141776784"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805175644896"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repeats", "axis"]}}, ".-1.139805175644896": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805175644896", "variance": "INVARIANT"}}, "139805141776672": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141776784": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805175647136": {"type": "Function", "content": {"typeVars": [".-1.139805175647136"], "argTypes": [{"nodeId": ".-1.139805175647136"}, {"nodeId": "139805141777008"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805175647136"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, ".-1.139805175647136": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805175647136", "variance": "INVARIANT"}}, "139805141777008": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805175648928": {"type": "Function", "content": {"typeVars": [".-1.139805175648928"], "argTypes": [{"nodeId": ".-1.139805175648928"}, {"nodeId": "139805141777232"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805175648928"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, ".-1.139805175648928": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805175648928", "variance": "INVARIANT"}}, "139805141777232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805141775440": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175651616"}, {"nodeId": "139805431403840"}]}}, "139805175651616": {"type": "Function", "content": {"typeVars": [".-1.139805175651616"], "argTypes": [{"nodeId": ".-1.139805175651616"}, {"nodeId": "139805141777680"}, {"nodeId": "139805141777792"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805175651616"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": [null, null, "order"]}}, ".-1.139805175651616": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805175651616", "variance": "INVARIANT"}}, "139805141777680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805141777792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253952"}}}, "139805150253952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805431403840": {"type": "Function", "content": {"typeVars": [".-1.139805431403840"], "argTypes": [{"nodeId": ".-1.139805431403840"}, {"nodeId": "139805276997408"}, {"nodeId": "139805141778016"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805431403840"}]}]}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "shape", "order"]}}, ".-1.139805431403840": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431403840", "variance": "INVARIANT"}}, "139805141778016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253952"}}}, "139805431404288": {"type": "Function", "content": {"typeVars": [".-1.139805431404288"], "argTypes": [{"nodeId": ".-1.139805431404288"}, {"nodeId": "139805141860640"}], "returnType": {"nodeId": ".-1.139805431404288"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "axis"]}}, ".-1.139805431404288": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431404288", "variance": "INVARIANT"}}, "139805141860640": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805141860528"}]}}, "139805141860528": {"type": "Tuple", "content": {"items": []}}, "139805431404736": {"type": "Function", "content": {"typeVars": [".-1.139805431404736"], "argTypes": [{"nodeId": ".-1.139805431404736"}, {"nodeId": "139805141860976"}], "returnType": {"nodeId": ".-1.139805431404736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, ".-1.139805431404736": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431404736", "variance": "INVARIANT"}}, "139805141860976": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805141860864"}]}}, "139805141860864": {"type": "Tuple", "content": {"items": []}}, "139805112870368": {"type": "Function", "content": {"typeVars": [".-1.139805112870368"], "argTypes": [{"nodeId": ".-1.139805112870368"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805112870368"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112870368": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805112870368", "variance": "INVARIANT"}}, "139805187924688": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}]}}, "139805146249056": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805473934464"}, {"nodeId": "139805473934912"}, {"nodeId": "139805473935360"}, {"nodeId": "139805473935808"}, {"nodeId": "139805473936256"}, {"nodeId": "139805473936704"}, {"nodeId": "139805473937152"}, {"nodeId": "139805473937600"}, {"nodeId": "139805473938048"}, {"nodeId": "139805473938496"}, {"nodeId": "139805473938944"}, {"nodeId": "139805473939392"}, {"nodeId": "139805473939840"}, {"nodeId": "139805473940288"}, {"nodeId": "139805473940736"}, {"nodeId": "139805473941184"}, {"nodeId": "139805473941632"}, {"nodeId": "139805473942080"}, {"nodeId": "139805473942528"}, {"nodeId": "139805473942976"}, {"nodeId": "139805473943424"}, {"nodeId": "139805473943872"}, {"nodeId": "139805473944320"}, {"nodeId": "139805473944768"}, {"nodeId": "139805473945216"}, {"nodeId": "139805473945664"}, {"nodeId": "139805473946112"}, {"nodeId": "139805473946560"}, {"nodeId": "139805473947008"}, {"nodeId": "139805465444416"}, {"nodeId": "139805465444864"}, {"nodeId": "139805465445312"}, {"nodeId": "139805465445760"}, {"nodeId": "139805465446208"}, {"nodeId": "139805465446656"}, {"nodeId": "139805465447104"}, {"nodeId": "139805465447552"}, {"nodeId": "139805465448000"}, {"nodeId": "139805465448448"}, {"nodeId": "139805465448896"}, {"nodeId": "139805465449344"}, {"nodeId": "139805465449792"}, {"nodeId": "139805465450240"}, {"nodeId": "139805465450688"}, {"nodeId": "139805465451136"}, {"nodeId": "139805465451584"}, {"nodeId": "139805465452032"}, {"nodeId": "139805465452480"}, {"nodeId": "139805465452928"}, {"nodeId": "139805465453376"}, {"nodeId": "139805465453824"}]}}, "139805473934464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805473934912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805473935360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146250288"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146250288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805473935808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146250400"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146250512"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146250400": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805146250512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805150263360"}]}}}, "139805150263360": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473936256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146250624"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146250624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805150264368"}, {"nodeId": "139805150265152"}]}}}, "139805150264368": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805150265152": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473936704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150579168"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805150579168": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "str_", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141875872"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431918016"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431918464"}, "name": "tolist"}}], "typeVars": [], "bases": [{"nodeId": "139805150578464"}, {"nodeId": "139805276669024"}], "isAbstract": false}}, "139805141875872": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431917120"}, {"nodeId": "139805431917568"}]}}, "139805431917120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579168"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805431917568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579168"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, "encoding", "errors"]}}, "139805431918016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579168"}, {"nodeId": "139805142008768"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805142008768": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805142008320"}, {"nodeId": "139805142008656"}]}}, "139805142008320": {"type": "Tuple", "content": {"items": []}}, "139805142008656": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805431918464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579168"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150578464": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "character", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431914432"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431914880"}, "name": "__float__"}}], "typeVars": [], "bases": [{"nodeId": "139805150577760"}], "isAbstract": true}}, "139805431914432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578464"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431914880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578464"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805150577760": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "flexible", "members": [], "typeVars": [], "bases": [{"nodeId": "139805155357120"}], "isAbstract": true}}, "139805473937152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578816"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805150578816": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "bytes_", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141876096"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431916224"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431916672"}, "name": "tolist"}}], "typeVars": [], "bases": [{"nodeId": "139805150578464"}, {"nodeId": "139805276669376"}], "isAbstract": false}}, "139805141876096": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431915328"}, {"nodeId": "139805431915776"}]}}, "139805431915328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578816"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805431915776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578816"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, "encoding", "errors"]}}, "139805431916224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578816"}, {"nodeId": "139805142007872"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805142007872": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805141874528"}, {"nodeId": "139805141876208"}]}}, "139805141874528": {"type": "Tuple", "content": {"items": []}}, "139805141876208": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805431916672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578816"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805473937600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146250848"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146250960"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146250848": {"type": "Union", "content": {"items": [{"nodeId": "139805146250736"}, {"nodeId": "0"}]}}, "139805146250736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184458000"}}}, "139805184458000": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146250960": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805155360288": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "unsignedinteger", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431720064"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349024", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349024", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349376", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349376", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805155360288"}], "bases": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155360288"}]}], "isAbstract": false}}, ".1.139805155360288": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155360288", "variance": "INVARIANT"}}, "139805431720064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155360288", "args": [{"nodeId": ".1.139805155360288"}]}, {"nodeId": "139805141870608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141870608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150259664"}}}, "139805155348320": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_UnsignedIntOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146180608"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155348320"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155348320": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155348320", "variance": "INVARIANT"}}, "139805146180608": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410636544"}, {"nodeId": "139805410636992"}, {"nodeId": "139805410637440"}, {"nodeId": "139805410637888"}, {"nodeId": "139805410638336"}]}}, "139805410636544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155348320"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155360288", "args": [{"nodeId": ".1.139805155348320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410636992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155348320"}]}, {"nodeId": "139805146183520"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146183520": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805155359584", "args": [{"nodeId": "A"}]}]}}, "139805410637440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155348320"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146183856"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146183856": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155348320"}, {"nodeId": "139805146183744"}]}}, "139805146183744": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805410637888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155348320"}]}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": "139805146184080"}, {"nodeId": "139805146184304"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146184080": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155348320"}, {"nodeId": "139805146183968"}]}}, "139805146183968": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805146184304": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155348320"}, {"nodeId": "139805146184192"}]}}, "139805146184192": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805410638336": {"type": "Function", "content": {"typeVars": [".-1.139805410638336"], "argTypes": [{"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155348320"}]}, {"nodeId": "139805155360288", "args": [{"nodeId": ".-1.139805410638336"}]}], "returnType": {"nodeId": "139805155360288", "args": [{"nodeId": "139805146184416"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410638336": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805410638336", "variance": "INVARIANT"}}, "139805146184416": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155348320"}, {"nodeId": ".-1.139805410638336"}]}}, "139805155348672": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_UnsignedIntBitOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146182176"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155348672"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155348672": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155348672", "variance": "INVARIANT"}}, "139805146182176": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410638784"}, {"nodeId": "139805410639232"}, {"nodeId": "139805414588480"}, {"nodeId": "139805414588928"}]}}, "139805410638784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155348672"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155360288", "args": [{"nodeId": ".1.139805155348672"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410639232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155348672"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414588480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155348672"}]}, {"nodeId": "139805155359584", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414588928": {"type": "Function", "content": {"typeVars": [".-1.139805414588928"], "argTypes": [{"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155348672"}]}, {"nodeId": "139805155360288", "args": [{"nodeId": ".-1.139805414588928"}]}], "returnType": {"nodeId": "139805155360288", "args": [{"nodeId": "139805146235168"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414588928": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414588928", "variance": "INVARIANT"}}, "139805146235168": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155348672"}, {"nodeId": ".-1.139805414588928"}]}}, "139805155349024": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_UnsignedIntMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805184448928"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155349024"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155349024": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155349024", "variance": "INVARIANT"}}, "139805184448928": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414589376"}, {"nodeId": "139805414589824"}, {"nodeId": "139805414590272"}, {"nodeId": "139805414590720"}]}}, "139805414589376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349024", "args": [{"nodeId": ".1.139805155349024"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155360288", "args": [{"nodeId": ".1.139805155349024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414589824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349024", "args": [{"nodeId": ".1.139805155349024"}]}, {"nodeId": "139805146235952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146235952": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805155359584", "args": [{"nodeId": "A"}]}]}}, "139805414590272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349024", "args": [{"nodeId": ".1.139805155349024"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146236512"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146236512": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155349024"}, {"nodeId": "139805146236400"}]}}, "139805146236400": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414590720": {"type": "Function", "content": {"typeVars": [".-1.139805414590720"], "argTypes": [{"nodeId": "139805155349024", "args": [{"nodeId": ".1.139805155349024"}]}, {"nodeId": "139805155360288", "args": [{"nodeId": ".-1.139805414590720"}]}], "returnType": {"nodeId": "139805155360288", "args": [{"nodeId": "139805146236848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414590720": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414590720", "variance": "INVARIANT"}}, "139805146236848": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155349024"}, {"nodeId": ".-1.139805414590720"}]}}, "139805155349376": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_UnsignedIntDivMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805184449152"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155349376"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155349376": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155349376", "variance": "INVARIANT"}}, "139805184449152": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414591168"}, {"nodeId": "139805414591616"}, {"nodeId": "139805414592064"}, {"nodeId": "139805414592512"}]}}, "139805414591168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349376", "args": [{"nodeId": ".1.139805155349376"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414591616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349376", "args": [{"nodeId": ".1.139805155349376"}]}, {"nodeId": "139805146237744"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146237744": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805155359584", "args": [{"nodeId": "A"}]}]}}, "139805414592064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349376", "args": [{"nodeId": ".1.139805155349376"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414592512": {"type": "Function", "content": {"typeVars": [".-1.139805414592512"], "argTypes": [{"nodeId": "139805155349376", "args": [{"nodeId": ".1.139805155349376"}]}, {"nodeId": "139805155360288", "args": [{"nodeId": ".-1.139805414592512"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414592512": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414592512", "variance": "INVARIANT"}}, "139805473938048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146349632"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146349744"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146349632": {"type": "Union", "content": {"items": [{"nodeId": "139805146251072"}, {"nodeId": "0"}]}}, "139805146251072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184589888"}}}, "139805184589888": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146349744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858208"}]}}}, "139805473938496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146349968"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146350080"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146349968": {"type": "Union", "content": {"items": [{"nodeId": "139805146349856"}, {"nodeId": "0"}]}}, "139805146349856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184590560"}}}, "139805184590560": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146350080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805473938944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146350304"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146350416"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146350304": {"type": "Union", "content": {"items": [{"nodeId": "139805146350192"}, {"nodeId": "0"}]}}, "139805146350192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591232"}}}, "139805184591232": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146350416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805473939392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146350640"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146350752"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146350640": {"type": "Union", "content": {"items": [{"nodeId": "139805146350528"}, {"nodeId": "0"}]}}, "139805146350528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184602320"}}}, "139805184602320": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146350752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150261232"}]}}}, "139805150261232": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473939840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146350976"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146351088"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146350976": {"type": "Union", "content": {"items": [{"nodeId": "139805146350864"}, {"nodeId": "0"}]}}, "139805146350864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184602992"}}}, "139805184602992": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146351088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150261792"}]}}}, "139805150261792": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473940288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146351312"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146351424"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146351312": {"type": "Union", "content": {"items": [{"nodeId": "139805146351200"}, {"nodeId": "0"}]}}, "139805146351200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184603664"}}}, "139805184603664": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146351424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150261904"}]}}}, "139805150261904": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473940736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146351648"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146351760"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146351648": {"type": "Union", "content": {"items": [{"nodeId": "139805146351536"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146351536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184604560"}}}, "139805184604560": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146351760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262016"}]}}}, "139805150262016": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473941184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146351984"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146352096"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146351984": {"type": "Union", "content": {"items": [{"nodeId": "139805146351872"}, {"nodeId": "0"}]}}, "139805146351872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184605344"}}}, "139805184605344": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146352096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262128"}]}}}, "139805150262128": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473941632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146352320"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146352432"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146352320": {"type": "Union", "content": {"items": [{"nodeId": "139805146352208"}, {"nodeId": "0"}]}}, "139805146352208": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184605904"}}}, "139805184605904": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146352432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262240"}]}}}, "139805150262240": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473942080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146352656"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146352768"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146352656": {"type": "Union", "content": {"items": [{"nodeId": "139805146352544"}, {"nodeId": "0"}]}}, "139805146352544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591904"}}}, "139805184591904": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146352768": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805473942528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146352992"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146353104"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146352992": {"type": "Union", "content": {"items": [{"nodeId": "139805146352880"}, {"nodeId": "0"}]}}, "139805146352880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184592576"}}}, "139805184592576": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146353104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858208"}]}}}, "139805473942976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146353328"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146353440"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146353328": {"type": "Union", "content": {"items": [{"nodeId": "139805146353216"}, {"nodeId": "0"}]}}, "139805146353216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593248"}}}, "139805184593248": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146353440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857856"}]}}}, "139805473943424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146353664"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146353776"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146353664": {"type": "Union", "content": {"items": [{"nodeId": "139805146353552"}, {"nodeId": "0"}]}}, "139805146353552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593920"}}}, "139805184593920": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146353776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805473943872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146354000"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146354112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146354000": {"type": "Union", "content": {"items": [{"nodeId": "139805146353888"}, {"nodeId": "0"}]}}, "139805146353888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184597952"}}}, "139805184597952": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146354112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150259776"}]}}}, "139805150259776": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473944320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146354336"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146354448"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146354336": {"type": "Union", "content": {"items": [{"nodeId": "139805146354224"}, {"nodeId": "0"}]}}, "139805146354224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184598624"}}}, "139805184598624": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146354448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260672"}]}}}, "139805150260672": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473944768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146354672"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146354784"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146354672": {"type": "Union", "content": {"items": [{"nodeId": "139805146354560"}, {"nodeId": "0"}]}}, "139805146354560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184599296"}}}, "139805184599296": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146354784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260784"}]}}}, "139805150260784": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473945216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146355008"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146355120"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146355008": {"type": "Union", "content": {"items": [{"nodeId": "139805146354896"}, {"nodeId": "0"}]}}, "139805146354896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184600192"}}}, "139805184600192": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146355120": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805473945664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146355344"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146355456"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146355344": {"type": "Union", "content": {"items": [{"nodeId": "139805146355232"}, {"nodeId": "0"}]}}, "139805146355232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184601200"}}}, "139805184601200": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146355456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805473946112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146355680"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146355792"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146355680": {"type": "Union", "content": {"items": [{"nodeId": "139805146355568"}, {"nodeId": "0"}]}}, "139805146355568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184601648"}}}, "139805184601648": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146355792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261120"}]}}}, "139805150261120": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473946560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146355904"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146356016"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146355904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184594592"}}}, "139805184594592": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146356016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154858208"}]}}}, "139805473947008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146356128"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146356240"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146356128": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184595264"}}}, "139805184595264": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146356240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805465444416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146356352"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146356464"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146356352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184595936"}}}, "139805184595936": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146356464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805465444864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146356576"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146356688"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146356576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184655872"}}}, "139805184655872": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146356688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805150262800"}]}}}, "139805150262800": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805465445312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146356912"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146357024"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146356912": {"type": "Union", "content": {"items": [{"nodeId": "139805146356800"}, {"nodeId": "0"}]}}, "139805146356800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184656544"}}}, "139805184656544": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146357024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805150263136"}]}}}, "139805150263136": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805465445760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146357248"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146357360"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146357248": {"type": "Union", "content": {"items": [{"nodeId": "139805146357136"}, {"nodeId": "0"}]}}, "139805146357136": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184657664"}}}, "139805184657664": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146357360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805150263248"}]}}}, "139805150263248": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805465446208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146357584"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146357696"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146357584": {"type": "Union", "content": {"items": [{"nodeId": "139805146357472"}, {"nodeId": "0"}]}}, "139805146357472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184658336"}}}, "139805184658336": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146357696": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805150263472"}]}}}, "139805150263472": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805465446656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146357808"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146357920"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146357808": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184596608"}}}, "139805184596608": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146357920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805154857856"}, {"nodeId": "139805154857856"}]}}}, "139805465447104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146358032"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146358144"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146358032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184597280"}}}, "139805184597280": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146358144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805154857504"}, {"nodeId": "139805154857504"}]}}}, "139805465447552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146358256"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146358368"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146358256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184659120"}}}, "139805184659120": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146358368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805150263696"}, {"nodeId": "139805150264480"}]}}}, "139805150263696": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805150264480": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805465448000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146358480"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146358592"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146358480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184660352"}}}, "139805184660352": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146358592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805150264256"}, {"nodeId": "139805150264928"}]}}}, "139805150264256": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805150264928": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805465448448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146358704"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146358816"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146358704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184661136"}}}, "139805184661136": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146358816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805150264816"}, {"nodeId": "139805150642576"}]}}}, "139805150264816": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805150642576": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805465448896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146359040"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146359040": {"type": "Union", "content": {"items": [{"nodeId": "139805146358928"}, {"nodeId": "0"}]}}, "139805146358928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184457552"}}}, "139805184457552": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805465449344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146359152"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146359152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184736192"}}}, "139805184736192": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805155359936": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "timedelta64", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431710656"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805113261120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805113261568"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431712000"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431712448"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431712896"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431713344"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431713792"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431714240"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431714688"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431715136"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431715584"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431716032"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431716480"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431716928"}, "name": "__rmul__"}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155347616", "args": [{"nodeId": "139805196528416"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155347616", "args": [{"nodeId": "139805150261456"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431717376"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431717824"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431718272"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431718720"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431719168"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431719616"}, "name": "__rdivmod__"}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805196528864"}, {"nodeId": "139805196530096"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163132560"}, {"nodeId": "139805163132784"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163133120"}, {"nodeId": "139805163133344"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163127744"}, {"nodeId": "139805163139392"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805155357120"}], "isAbstract": false}}, "139805431710656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805141868144"}, {"nodeId": "139805141868816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null]}}, "139805141868144": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}, {"nodeId": "139805141868032"}, {"nodeId": "139805167799456"}, {"nodeId": "139805155359936"}]}}, "139805141868032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805167799456": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "timedelta", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799456"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "days", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "milliseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minutes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hours", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weeks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360738976"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "days", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163202464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163203584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microseconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163204480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360740768"}, "name": "total_seconds"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360741216"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360741664"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360742112"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360742560"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360743008"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360743456"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360743904"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360744352"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360744800"}, "name": "__rmul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805162873216"}, "items": [{"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__floordiv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805162874896"}, "items": [{"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360747040"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360747488"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360747936"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360748384"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360748832"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360749280"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360749728"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805360738976": {"type": "Function", "content": {"typeVars": [".0.139805360738976"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": ".0.139805360738976"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "days", "seconds", "microseconds", "milliseconds", "minutes", "hours", "weeks"]}}, ".0.139805360738976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799456"}, "def": "139805360738976", "variance": "INVARIANT"}}, "139805163202464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163203584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163204480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360740768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360741216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360741664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360742112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360742560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360743008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805360743456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805360743904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805360744352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360744800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805162873216": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805360745248"}, {"nodeId": "139805360745696"}]}}, "139805360745248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360745696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805162874896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805360746144"}, {"nodeId": "139805360746592"}]}}, "139805360746144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360746592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360747040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360747488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805162876128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805162876128": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805167799456"}]}}, "139805360747936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360748384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360748832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360749280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360749728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141868816": {"type": "Union", "content": {"items": [{"nodeId": "139805141868256"}, {"nodeId": "139805141868704"}]}}, "139805141868256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805141868704": {"type": "Tuple", "content": {"items": [{"nodeId": "139805141868368"}, {"nodeId": "139805141868480"}]}}, "139805141868368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805141868480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805113261120": {"type": "Function", "content": {"typeVars": [".-1.139805113261120"], "argTypes": [{"nodeId": ".-1.139805113261120"}], "returnType": {"nodeId": ".-1.139805113261120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805113261120": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805113261120", "variance": "INVARIANT"}}, "139805113261568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805431712000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431712448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431712896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431713344": {"type": "Function", "content": {"typeVars": [".-1.139805431713344"], "argTypes": [{"nodeId": ".-1.139805431713344"}], "returnType": {"nodeId": ".-1.139805431713344"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431713344": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805431713344", "variance": "INVARIANT"}}, "139805431713792": {"type": "Function", "content": {"typeVars": [".-1.139805431713792"], "argTypes": [{"nodeId": ".-1.139805431713792"}], "returnType": {"nodeId": ".-1.139805431713792"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431713792": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805431713792", "variance": "INVARIANT"}}, "139805431714240": {"type": "Function", "content": {"typeVars": [".-1.139805431714240"], "argTypes": [{"nodeId": ".-1.139805431714240"}], "returnType": {"nodeId": ".-1.139805431714240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431714240": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805431714240", "variance": "INVARIANT"}}, "139805431714688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805141869040"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805159384992": {"type": "Union", "content": {"items": [{"nodeId": "139805159386672"}, {"nodeId": "139805155359936"}]}}, "139805159386672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431715136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805141869264"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805431715584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805141869376"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805431716032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805141869488"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805431716480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805141869600"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387008"}}}, "139805159387008": {"type": "Union", "content": {"items": [{"nodeId": "139805159389248"}, {"nodeId": "139805481893408"}, {"nodeId": "139805150577056", "args": [{"nodeId": "A"}]}]}}, "139805159389248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431716928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805141869152"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387008"}}}, "139805155347616": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_TD64Div", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146179488"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155347616"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155347616": {"type": "TypeVar", "content": {"varName": "_NumberType_co", "values": [], "upperBound": {"nodeId": "139805155357472", "args": [{"nodeId": "A"}]}, "def": "139805155347616", "variance": "COVARIANT"}}, "139805146179488": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410632960"}, {"nodeId": "139805410633408"}, {"nodeId": "139805410633856"}]}}, "139805410632960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347616", "args": [{"nodeId": ".1.139805155347616"}]}, {"nodeId": "139805155359936"}], "returnType": {"nodeId": ".1.139805155347616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410633408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347616", "args": [{"nodeId": ".1.139805155347616"}]}, {"nodeId": "139805146181952"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146181952": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159542784"}}}, "139805410633856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347616", "args": [{"nodeId": ".1.139805155347616"}]}, {"nodeId": "139805146182064"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146182064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387008"}}}, "139805196528416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805150261456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805431717376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805141869712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805431717824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805141869824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805431718272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805431718720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805431719168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805141870160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141870160": {"type": "Tuple", "content": {"items": [{"nodeId": "139805141869936"}, {"nodeId": "139805155359936"}]}}, "139805141869936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805431719616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805141870496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805141870496": {"type": "Tuple", "content": {"items": [{"nodeId": "139805141870272"}, {"nodeId": "139805155359936"}]}}, "139805141870272": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805196528864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805196530096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163132560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805163132784": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163133120": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805163133344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163127744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805163139392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805465449792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146359264"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805155358880"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146359264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184723088"}}}, "139805184723088": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805155358880": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "datetime64", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141777344"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431583168"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431583616"}, "name": "__radd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146971632"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431584960"}, "name": "__rsub__"}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805155358880"}, {"nodeId": "139805163132448"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805155358880"}, {"nodeId": "139805163131552"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805155358880"}, {"nodeId": "139805163136144"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805155358880"}, {"nodeId": "139805163132224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805155357120"}], "isAbstract": false}}, "139805141777344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431582272"}, {"nodeId": "139805431582720"}]}}, "139805431582272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358880"}, {"nodeId": "139805141862208"}, {"nodeId": "139805141862880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null]}}, "139805141862208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155358880"}, {"nodeId": "139805141862096"}, {"nodeId": "139805155358528"}]}}, "139805141862096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805155358528": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_DatetimeScalar", "members": [{"kind": "Variable", "content": {"name": "day", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112976992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "month", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112977440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "year", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112977664"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["day", "month", "year"]}}, "139805112976992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358528"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805112977440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358528"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805112977664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358528"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141862880": {"type": "Union", "content": {"items": [{"nodeId": "139805141862320"}, {"nodeId": "139805141862768"}]}}, "139805141862320": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805141862768": {"type": "Tuple", "content": {"items": [{"nodeId": "139805141862432"}, {"nodeId": "139805141862544"}]}}, "139805141862432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805141862544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431582720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358880"}, {"nodeId": "139805481893056"}, {"nodeId": "139805141863552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805141863552": {"type": "Union", "content": {"items": [{"nodeId": "139805141862992"}, {"nodeId": "139805141863440"}]}}, "139805141862992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805141863440": {"type": "Tuple", "content": {"items": [{"nodeId": "139805141863104"}, {"nodeId": "139805141863216"}]}}, "139805141863104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805141863216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431583168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358880"}, {"nodeId": "139805141863664"}], "returnType": {"nodeId": "139805155358880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141863664": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805431583616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358880"}, {"nodeId": "139805141863888"}], "returnType": {"nodeId": "139805155358880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141863888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805146971632": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431584064"}, {"nodeId": "139805431584512"}]}}, "139805431584064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358880"}, {"nodeId": "139805155358880"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805431584512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358880"}, {"nodeId": "139805141863776"}], "returnType": {"nodeId": "139805155358880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141863776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805431584960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358880"}, {"nodeId": "139805155358880"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805163132448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805175561376": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155358880"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155358880"}]}]}]}]}}, "139805154853984": {"type": "Protocol", "content": {"module": "numpy._typing._array_like", "simpleName": "_SupportsArray", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335725984"}, "name": "__array__"}}], "typeVars": [{"nodeId": ".1.139805154853984"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__array__"]}}, ".1.139805154853984": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805154853984", "variance": "COVARIANT"}}, "139805335725984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154853984", "args": [{"nodeId": ".1.139805154853984"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".1.139805154853984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163131552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805163136144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805163132224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805465450240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146359376"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150579168"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146359376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184662480"}}}, "139805184662480": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805465450688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146359600"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578816"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146359600": {"type": "Union", "content": {"items": [{"nodeId": "139805146359488"}, {"nodeId": "0"}]}}, "139805146359488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184663152"}}}, "139805184663152": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805465451136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146359712"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146359712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184663824"}}}, "139805184663824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805150578112": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "void", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141864000"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108410560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108411008"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431912640"}, "name": "setfield"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141873184"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431913984"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805150577760"}], "isAbstract": false}}, "139805141864000": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431910848"}, {"nodeId": "139805431911296"}]}}, "139805431910848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578112"}, {"nodeId": "139805141874752"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, "dtype"]}}, "139805141874752": {"type": "Union", "content": {"items": [{"nodeId": "139805141874640"}, {"nodeId": "139805276669376"}]}}, "139805141874640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431911296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578112"}, {"nodeId": "A"}, {"nodeId": "139805141874976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, "dtype"]}}, "139805141874976": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805200897568"}}}, "139805200897568": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805167807552", "args": [{"nodeId": "0"}]}, {"nodeId": "139805200897680"}, {"nodeId": "139805200897344"}]}}, "139805200897680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184663824"}}}, "139805200897344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159554208"}}}, "139805108410560": {"type": "Function", "content": {"typeVars": [".-1.139805108410560"], "argTypes": [{"nodeId": ".-1.139805108410560"}], "returnType": {"nodeId": ".-1.139805108410560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805108410560": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805108410560", "variance": "INVARIANT"}}, "139805108411008": {"type": "Function", "content": {"typeVars": [".-1.139805108411008"], "argTypes": [{"nodeId": ".-1.139805108411008"}], "returnType": {"nodeId": ".-1.139805108411008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805108411008": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805108411008", "variance": "INVARIANT"}}, "139805431912640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578112"}, {"nodeId": "139805141875536"}, {"nodeId": "139805141875200"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "val", "dtype", "offset"]}}, "139805141875536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141875200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805141873184": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431913088"}, {"nodeId": "139805431913536"}]}}, "139805431913088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578112"}, {"nodeId": "139805141876320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141876320": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276997408"}]}}, "139805431913536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578112"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805150578112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805431913984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578112"}, {"nodeId": "139805141875088"}, {"nodeId": "139805141875424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805141875088": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276997408"}]}}, "139805141875424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805465451584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146360048"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805155358176"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146360048": {"type": "Union", "content": {"items": [{"nodeId": "139805146359824"}, {"nodeId": "0"}]}}, "139805146359824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184664608"}}}, "139805184664608": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805155358176": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "object_", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431414144"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112975872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112976320"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431579584"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431580032"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431580480"}, "name": "__complex__"}}], "typeVars": [], "bases": [{"nodeId": "139805155357120"}], "isAbstract": false}}, "139805431414144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358176"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805112975872": {"type": "Function", "content": {"typeVars": [".-1.139805112975872"], "argTypes": [{"nodeId": ".-1.139805112975872"}], "returnType": {"nodeId": ".-1.139805112975872"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112975872": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805112975872", "variance": "INVARIANT"}}, "139805112976320": {"type": "Function", "content": {"typeVars": [".-1.139805112976320"], "argTypes": [{"nodeId": ".-1.139805112976320"}], "returnType": {"nodeId": ".-1.139805112976320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112976320": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805112976320", "variance": "INVARIANT"}}, "139805431579584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358176"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431580032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358176"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431580480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358176"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805465452032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805465452480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}]}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805465452928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805465453376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146360272"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146360272": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159554208"}}}, "139805465453824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805155358176"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805465454272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139805146249616": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805167422592"}, {"nodeId": "139805465454720"}]}}, "139805167422592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805465454720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}, {"nodeId": "139805146361056"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146361056": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276997408"}]}}, "139805155311200": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805465455168"}, {"nodeId": "139805465455616"}, {"nodeId": "139805465456512"}]}}, "139805465455168": {"type": "Function", "content": {"typeVars": [".-1.139805465455168"], "argTypes": [{"nodeId": ".-1.139805465455168"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.139805465455168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805465455168": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805465455168", "variance": "INVARIANT"}}, "139805465455616": {"type": "Function", "content": {"typeVars": [".-1.139805465455616"], "argTypes": [{"nodeId": ".-1.139805465455616"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": ".-1.139805465455616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805465455616": {"type": "TypeVar", "content": {"varName": "_FlexDType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150577760"}]}, "def": "139805465455616", "variance": "INVARIANT"}}, "139805465456512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146361280": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805465456064"}, {"nodeId": "139805465457408"}]}}, "139805465456064": {"type": "Function", "content": {"typeVars": [".-1.139805465456064"], "argTypes": [{"nodeId": ".-1.139805465456064"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": ".-1.139805465456064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805465456064": {"type": "TypeVar", "content": {"varName": "_FlexDType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150577760"}]}, "def": "139805465456064", "variance": "INVARIANT"}}, "139805465457408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805465457856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "139805146361168"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146361168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805465458304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "139805146360944"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146360944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805465458752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "139805146362288"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146362288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805465459200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "139805146361392"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146361392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805465459648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805465460096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805117104416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117143680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117143904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117144128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117144352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805146361616"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146361616": {"type": "Union", "content": {"items": [{"nodeId": "139805146362736"}, {"nodeId": "139805146362848"}]}}, "139805146362736": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805146362848": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805146361504"}]}}, "139805146361504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805117144576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805146363632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146363632": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272032352", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805146363520"}]}]}}, "139805146363520": {"type": "Union", "content": {"items": [{"nodeId": "139805146362512"}, {"nodeId": "139805146363408"}]}}, "139805146362512": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481893056"}]}}, "139805146363408": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481893056"}, {"nodeId": "A"}]}}, "139805117144800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117145024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117145248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117145472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117145696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117145920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117146144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117146368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805146363856"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146363856": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272032352", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805117146592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117146816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117147040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805146363968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146363968": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805117147264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117147488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805146364528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146364528": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146364416"}]}}, "139805146364416": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, {"nodeId": "139805146364192"}]}}, "139805146364192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805176214944": {"type": "Function", "content": {"typeVars": [".-1.139805176214944"], "argTypes": [{"nodeId": ".-1.139805176214944"}, {"nodeId": "139805146364640"}], "returnType": {"nodeId": ".-1.139805176214944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, ".-1.139805176214944": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805176214944", "variance": "INVARIANT"}}, "139805146364640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253616"}}}, "139805117147712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117147936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117580672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805146535344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146535344": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}]}}, "139805117580448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117581120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146533104": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176096224"}]}}, "139805176096224": {"type": "Function", "content": {"typeVars": [".-1.139805176096224"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155356064", "args": [{"nodeId": ".-1.139805176096224"}]}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805176096224"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805155356064": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_SupportsReal", "members": [{"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117430272"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805155356064"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["real"]}}, ".1.139805155356064": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805155356064", "variance": "COVARIANT"}}, "139805117430272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356064", "args": [{"nodeId": ".1.139805155356064"}]}], "returnType": {"nodeId": ".1.139805155356064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805176096224": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805176096224", "variance": "INVARIANT"}}, "139805117581344": {"type": "Function", "content": {"typeVars": [".-1.139805117581344"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155356064", "args": [{"nodeId": ".-1.139805117581344"}]}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805117581344"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805117581344": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805117581344", "variance": "INVARIANT"}}, "139805146535680": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176093088"}]}}, "139805176093088": {"type": "Function", "content": {"typeVars": [".-1.139805176093088"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155356416", "args": [{"nodeId": ".-1.139805176093088"}]}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805176093088"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805155356416": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_SupportsImag", "members": [{"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117431392"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805155356416"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["imag"]}}, ".1.139805155356416": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805155356416", "variance": "COVARIANT"}}, "139805117431392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356416", "args": [{"nodeId": ".1.139805155356416"}]}], "returnType": {"nodeId": ".1.139805155356416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805176093088": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805176093088", "variance": "INVARIANT"}}, "139805117581568": {"type": "Function", "content": {"typeVars": [".-1.139805117581568"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155356416", "args": [{"nodeId": ".-1.139805117581568"}]}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805117581568"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805117581568": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805117581568", "variance": "INVARIANT"}}, "139805176095104": {"type": "Function", "content": {"typeVars": [".-1.139805176095104"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146535120"}, {"nodeId": "139805146535904"}, {"nodeId": "139805146536240"}, {"nodeId": "139805276997408"}, {"nodeId": "139805146536128"}, {"nodeId": "139805146536576"}], "returnType": {"nodeId": ".-1.139805176095104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "shape", "dtype", "buffer", "offset", "strides", "order"]}}, "139805146535120": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146535904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805146536240": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146535568"}]}}, "139805146535568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805196974928"}}}, "139805196974928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}, {"nodeId": "139805276670080"}, {"nodeId": "139805184481536", "args": [{"nodeId": "A"}]}, {"nodeId": "139805171901088"}, {"nodeId": "0"}, {"nodeId": "139805155357120"}]}}, "139805184481536": {"type": "Concrete", "content": {"module": "array", "simpleName": "array", "members": [{"kind": "Variable", "content": {"name": "typecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805180390848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805180392864"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805180141392"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355841504"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355841952"}, "name": "buffer_info"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355842400"}, "name": "byteswap"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355842848"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355843296"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355843744"}, "name": "frombytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805201321760"}, "name": "fromfile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355844640"}, "name": "fromlist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ustr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355845088"}, "name": "fromunicode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355845536"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355846432"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355846880"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355847328"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355847776"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355848224"}, "name": "tofile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355848672"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355849120"}, "name": "tounicode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355850464"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805180141504"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805180141728"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356000416"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356000864"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356001312"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356001760"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356002208"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356002656"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356003104"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356003552"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356004000"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356004448"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356004896"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__unused", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356005344"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356005792"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356006240"}, "name": "__release_buffer__"}}], "typeVars": [{"nodeId": ".1.139805184481536"}], "bases": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805184481536"}]}], "isAbstract": false}}, ".1.139805184481536": {"type": "TypeVar", "content": {"varName": "_T", "values": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805276669024"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805184481536", "variance": "INVARIANT"}}, "139805180390848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805180141616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805180141616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180141168"}}}, "139805180141168": {"type": "Union", "content": {"items": [{"nodeId": "139805180138928"}, {"nodeId": "139805180139936"}, {"nodeId": "139805180139712"}]}}, "139805180138928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180141056"}}}, "139805180141056": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805180139936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180139152"}}}, "139805180139152": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805180139712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805180392864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805180141392": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180433504"}, {"nodeId": "139805183768864"}, {"nodeId": "139805180431936"}, {"nodeId": "139805355840608"}, {"nodeId": "139805180433280"}]}}, "139805180433504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805180141840"}, {"nodeId": "139805180141952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805180141840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180141056"}}}, "139805180141952": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481893056"}]}]}}, "139805183768864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": "139805481893408"}]}, {"nodeId": "139805180139600"}, {"nodeId": "139805180142176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805180139600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180139152"}}}, "139805180142176": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481893408"}]}]}}, "139805180431936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805180142288"}, {"nodeId": "139805180142400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805180142288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805180142400": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}]}}, "139805355840608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805180433280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805180142512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805180142512": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, "139805355841504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": ".1.139805184481536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805355841952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805180142736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805180142736": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805355842400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805355842848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": ".1.139805184481536"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805355843296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805355843744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805201321760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805267819712", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805267819712": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443972608"}, "name": "read"}}], "typeVars": [{"nodeId": ".1.139805267819712"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["read"]}}, ".1.139805267819712": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267819712", "variance": "COVARIANT"}}, "139805443972608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267819712", "args": [{"nodeId": ".1.139805267819712"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805267819712"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805355844640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805355845088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805355845536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": ".1.139805184481536"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805355846432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805481893056"}, {"nodeId": ".1.139805184481536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805355846880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805184481536"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805355847328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": ".1.139805184481536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805355847776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805355848224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805268033952", "args": [{"nodeId": "139805276669376"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805268033952": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443973952"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.139805268033952"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["write"]}}, ".1.139805268033952": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805268033952", "variance": "CONTRAVARIANT"}}, "139805443973952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268033952", "args": [{"nodeId": ".1.139805268033952"}]}, {"nodeId": ".1.139805268033952"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805355848672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805184481536"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805355849120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805355850464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805180141504": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805355850912"}, {"nodeId": "139805355851360"}]}}, "139805355850912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".1.139805184481536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805355851360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805180141728": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805355999520"}, {"nodeId": "139805355999968"}]}}, "139805355999520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805277009376"}, {"nodeId": ".1.139805184481536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805355999968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805276670432"}, {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805356000416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805180143072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805180143072": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805276670432"}]}}, "139805356000864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805356001312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805356001760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805356002208": {"type": "Function", "content": {"typeVars": [".0.139805356002208"], "argTypes": [{"nodeId": ".0.139805356002208"}, {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": ".0.139805356002208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805356002208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "def": "139805356002208", "variance": "INVARIANT"}}, "139805356002656": {"type": "Function", "content": {"typeVars": [".0.139805356002656"], "argTypes": [{"nodeId": ".0.139805356002656"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805356002656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805356002656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "def": "139805356002656", "variance": "INVARIANT"}}, "139805356003104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805356003552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805356004000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805356004448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805356004896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805356005344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805356005792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805356006240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805276670080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805171901088": {"type": "Concrete", "content": {"module": "mmap", "simpleName": "mmap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "access", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352157344"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352157792"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352158240"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dest", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "src", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352159136"}, "name": "move"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352159584"}, "name": "read_byte"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352160032"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352160480"}, "name": "resize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352160928"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352161376"}, "name": "size"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352161824"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byte", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352162272"}, "name": "write_byte"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352162720"}, "name": "__len__"}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "option", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352163168"}, "name": "madvise"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352163616"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352164064"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352164512"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352164960"}, "name": "write"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805175553536"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352412320"}, "name": "__delitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805175553648"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352413664"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352414112"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352414560"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352415008"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352415456"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352415904"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805276997760"}], "isAbstract": false}}, "139805352157344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fileno", "length", "flags", "prot", "access", "offset"]}}, "139805352157792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805352158240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "size"]}}, "139805352159136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "dest", "src", "count"]}}, "139805352159584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805352160032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805352160480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "newsize"]}}, "139805352160928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "pos", "whence"]}}, "139805352161376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805352161824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805352162272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "byte"]}}, "139805352162720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805352163168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "option", "start", "length"]}}, "139805352163616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "stop"]}}, "139805352164064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "stop"]}}, "139805352164512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805175553872"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "139805175553872": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805352164960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "bytes"]}}, "139805175553536": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805352411424"}, {"nodeId": "139805352411872"}]}}, "139805352411424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805352411872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805352412320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805175554208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805175554208": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276670432"}]}}, "139805175553648": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805352412768"}, {"nodeId": "139805352413216"}]}}, "139805352412768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805352413216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805276670432"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805352413664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805352414112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805352414560": {"type": "Function", "content": {"typeVars": [".0.139805352414560"], "argTypes": [{"nodeId": ".0.139805352414560"}], "returnType": {"nodeId": ".0.139805352414560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805352414560": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805171901088"}, "def": "139805352414560", "variance": "INVARIANT"}}, "139805352415008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139805352415456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805352415904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805276670080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805146536128": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146536016"}]}}, "139805146536016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146536576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, ".-1.139805176095104": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805176095104", "variance": "INVARIANT"}}, "139805440166592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139805146536352": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440167040"}, {"nodeId": "139805440167488"}]}}, "139805440167040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805440167488": {"type": "Function", "content": {"typeVars": [".-1.139805440167488"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": ".-1.139805440167488"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".-1.139805440167488"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805440167488": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805440167488", "variance": "INVARIANT"}}, "139805440167936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805150579520"}, {"nodeId": "139805146537808"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "ufunc", "method", "inputs", "kwargs"]}}, "139805150579520": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ufunc", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108416160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108417056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163617440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108417280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108417504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108417728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108417952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "types", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108418176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108418400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108418624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduce", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "accumulate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805108416160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108417056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163617440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805108417280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108417504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108417728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108417952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108418176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108418400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108418624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805142008992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142008992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805146537808": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805440168384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805176094880"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481892352"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "types", "args", "kwargs"]}}, "139805176094880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805440168832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146538928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146538928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805440169280": {"type": "Function", "content": {"typeVars": [".-1.139805440169280", ".-2.139805440169280"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805155356768", "args": [{"nodeId": ".-1.139805440169280"}, {"nodeId": ".-2.139805440169280"}]}, {"nodeId": "139805146539376"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".-1.139805440169280"}, {"nodeId": ".-2.139805440169280"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, ".-1.139805440169280": {"type": "TypeVar", "content": {"varName": "_ShapeType2", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805440169280", "variance": "INVARIANT"}}, ".-2.139805440169280": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805440169280", "variance": "INVARIANT"}}, "139805146539376": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146539264"}]}}, "139805146539264": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150579520"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481893056"}]}}, "139805440169728": {"type": "Function", "content": {"typeVars": [".-1.139805440169728", ".-2.139805440169728"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805155356768", "args": [{"nodeId": ".-1.139805440169728"}, {"nodeId": ".-2.139805440169728"}]}, {"nodeId": "139805146539824"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".-1.139805440169728"}, {"nodeId": ".-2.139805440169728"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, ".-1.139805440169728": {"type": "TypeVar", "content": {"varName": "_ShapeType2", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805440169728", "variance": "INVARIANT"}}, ".-2.139805440169728": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805440169728", "variance": "INVARIANT"}}, "139805146539824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146539712"}]}}, "139805146539712": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150579520"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481893056"}]}}, "139805146536688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440170176"}, {"nodeId": "139805440170624"}, {"nodeId": "139805440171072"}, {"nodeId": "139805440171520"}, {"nodeId": "139805440171968"}]}}, "139805440170176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146540832"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146540832": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805146540720"}]}]}}, "139805146540720": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805440170624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146541056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146541056": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276997408"}]}]}}, "139805440171072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146541616"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146541616": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805276997408"}, {"nodeId": "139805146541280"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805146541504"}]}]}}, "139805146541280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146541504": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805146541392"}, {"nodeId": "139805276997408"}]}}, "139805146541392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440171520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805440171968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805117582016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805155353952", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146536912": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440172864"}]}}, "139805440172864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805146542400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146542400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805117581792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805146542400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146541952": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440173760"}]}}, "139805440173760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805146542736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146542736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805117582912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805146542736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805440174656": {"type": "Function", "content": {"typeVars": [".-1.139805440174656"], "argTypes": [{"nodeId": ".-1.139805440174656"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": ".-1.139805440174656"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "inplace"]}}, ".-1.139805440174656": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805440174656", "variance": "INVARIANT"}}, "139805440175104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139805117583136": {"type": "Function", "content": {"typeVars": [".-1.139805117583136"], "argTypes": [{"nodeId": ".-1.139805117583136"}], "returnType": {"nodeId": "139805150983648", "args": [{"nodeId": ".-1.139805117583136"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805117583136": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805117583136", "variance": "INVARIANT"}}, "139805146542288": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176091968"}, {"nodeId": "139805440176448"}]}}, "139805176091968": {"type": "Function", "content": {"typeVars": [".-1.139805176091968"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155355712", "args": [{"nodeId": ".-1.139805176091968"}]}]}]}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": ".-1.139805176091968"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "139805155355712": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_SupportsItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439948416"}, "name": "item"}}], "typeVars": [{"nodeId": ".1.139805155355712"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["item"]}}, ".1.139805155355712": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805155355712", "variance": "COVARIANT"}}, "139805439948416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355712", "args": [{"nodeId": ".1.139805155355712"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805155355712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805176091968": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805176091968", "variance": "INVARIANT"}}, "139805440176448": {"type": "Function", "content": {"typeVars": [".-1.139805440176448"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155355712", "args": [{"nodeId": ".-1.139805440176448"}]}]}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276997408"}]}], "returnType": {"nodeId": ".-1.139805440176448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805440176448": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805440176448", "variance": "INVARIANT"}}, "139805146542624": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440176896"}, {"nodeId": "139805440177344"}]}}, "139805440176896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805440177344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146543632"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805146543632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146543072": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440177792"}, {"nodeId": "139805440178240"}]}}, "139805440177792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146543968"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": [null, null, "refcheck"]}}, "139805146543968": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805440178240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805276997408"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "new_shape", "refcheck"]}}, "139805440178688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "write", "align", "uic"]}}, "139805440179136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146544080"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "axis"]}}, "139805146544080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276997408"}]}]}}, "139805440179584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805276997408"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "axis1", "axis2"]}}, "139805146543408": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176091296"}, {"nodeId": "139805440344576"}]}}, "139805176091296": {"type": "Function", "content": {"typeVars": [".-1.139805176091296"], "argTypes": [{"nodeId": ".-1.139805176091296"}, {"nodeId": "139805146544640"}], "returnType": {"nodeId": ".-1.139805176091296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805176091296": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805176091296", "variance": "INVARIANT"}}, "139805146544640": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146544528"}]}}, "139805146544528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805440344576": {"type": "Function", "content": {"typeVars": [".-1.139805440344576"], "argTypes": [{"nodeId": ".-1.139805440344576"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": ".-1.139805440344576"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "axes"]}}, ".-1.139805440344576": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805440344576", "variance": "INVARIANT"}}, "139805440345024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146544752"}, {"nodeId": "139805146544864"}, {"nodeId": "139805146544976"}, {"nodeId": "139805146545088"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805146545312"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "kth", "axis", "kind", "order"]}}, "139805146544752": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146544864": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146544976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146545088": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805146545312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805440345472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805276997408"}, {"nodeId": "139805276997408"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "axis1", "axis2"]}}, "139805146543856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440345920"}, {"nodeId": "139805440346368"}, {"nodeId": "139805440346816"}]}}, "139805440345920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146545424"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "b", "out"]}}, "139805146545424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805159387120": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805276667968"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805155357120"}]}}, "139805440346368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146545872"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "b", "out"]}}, "139805146545872": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440346816": {"type": "Function", "content": {"typeVars": [".-1.139805440346816"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146644544"}, {"nodeId": ".-1.139805440346816"}], "returnType": {"nodeId": ".-1.139805440346816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "b", "out"]}}, "139805146644544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, ".-1.139805440346816": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805440346816", "variance": "INVARIANT"}}, "139805440347264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805146644656"}]}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146644656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805440347712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146644880"}, {"nodeId": "139805276997408"}, {"nodeId": "139805146644992"}, {"nodeId": "139805146645104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "kth", "axis", "kind", "order"]}}, "139805146644880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146644992": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146645104": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805440348160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146645328"}, {"nodeId": "139805146645440"}, {"nodeId": "139805146645216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ind", "v", "mode"]}}, "139805146645328": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146645440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146645216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805146545536": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440348608"}, {"nodeId": "139805440349056"}]}}, "139805440348608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146645664"}, {"nodeId": "139805146645776"}, {"nodeId": "139805146646000"}], "returnType": {"nodeId": "139805146646112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "v", "side", "sorter"]}}, "139805146645664": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805146645776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150255632"}}}, "139805150255632": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146646000": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146645888"}]}}, "139805146645888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146646112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805440349056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146646448"}, {"nodeId": "139805146645552"}, {"nodeId": "139805146646560"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805146646784"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "v", "side", "sorter"]}}, "139805146646448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146645552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150255632"}}}, "139805146646560": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146646224"}]}}, "139805146646224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146646784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805440349504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146646336"}, {"nodeId": "139805146647120"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "val", "dtype", "offset"]}}, "139805146646336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146647120": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805440349952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805276997408"}, {"nodeId": "139805146647904"}, {"nodeId": "139805146648464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "kind", "order"]}}, "139805146647904": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146647232"}]}}, "139805146647232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150255520"}}}, "139805146648464": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805146463392": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440350400"}, {"nodeId": "139805440350848"}]}}, "139805440350400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805276997408"}, {"nodeId": "139805276997408"}, {"nodeId": "139805276997408"}, {"nodeId": "139805146647792"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "axis1", "axis2", "dtype", "out"]}}, "139805146647792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805440350848": {"type": "Function", "content": {"typeVars": [".-1.139805440350848"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805276997408"}, {"nodeId": "139805276997408"}, {"nodeId": "139805276997408"}, {"nodeId": "139805146648016"}, {"nodeId": ".-1.139805440350848"}], "returnType": {"nodeId": ".-1.139805440350848"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "axis1", "axis2", "dtype", "out"]}}, "139805146648016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805440350848": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805440350848", "variance": "INVARIANT"}}, "139805146647456": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176087488"}, {"nodeId": "139805440351744"}, {"nodeId": "139805440352192"}]}}, "139805176087488": {"type": "Function", "content": {"typeVars": [".-1.139805176087488"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805176087488"}]}]}, {"nodeId": "139805146647568"}, {"nodeId": "139805146648688"}, {"nodeId": "N"}, {"nodeId": "139805146647344"}], "returnType": {"nodeId": ".-1.139805176087488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, ".-1.139805176087488": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805176087488", "variance": "INVARIANT"}}, "139805146647568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805146648688": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146647344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805440351744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146648576"}, {"nodeId": "139805146649248"}, {"nodeId": "N"}, {"nodeId": "139805146646896"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, "139805146648576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146649248": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146646896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805440352192": {"type": "Function", "content": {"typeVars": [".-1.139805440352192"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146648800"}, {"nodeId": "139805146648352"}, {"nodeId": ".-1.139805440352192"}, {"nodeId": "139805146648912"}], "returnType": {"nodeId": ".-1.139805440352192"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, "139805146648800": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146648352": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, ".-1.139805440352192": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805440352192", "variance": "INVARIANT"}}, "139805146648912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805440352640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146649024"}, {"nodeId": "139805146647680"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repeats", "axis"]}}, "139805146649024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146647680": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805440353088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146649808"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139805146649808": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805440353536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146649584"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139805146649584": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805146649136": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440353984"}, {"nodeId": "139805440354432"}]}}, "139805440353984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146650144"}, {"nodeId": "139805146650256"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": [null, null, "order"]}}, "139805146650144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146650256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253952"}}}, "139805440354432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805276997408"}, {"nodeId": "139805146650480"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "shape", "order"]}}, "139805146650480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253952"}}}, "139805146649696": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440354880"}, {"nodeId": "139805440355328"}]}}, "139805440354880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "0"}, {"nodeId": "139805146650928"}, {"nodeId": "139805146651040"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146651152"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}}, "139805146650928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805146651040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805146651152": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805150579872"}]}}, "139805440355328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146651376"}, {"nodeId": "139805146651488"}, {"nodeId": "139805146651600"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146651712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}}, "139805146651376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805146651488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805146651600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805146651712": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805150579872"}]}}, "139805146650032": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440355776"}, {"nodeId": "139805440356224"}, {"nodeId": "139805440356672"}, {"nodeId": "139805440357120"}, {"nodeId": "139805440357568"}]}}, "139805440355776": {"type": "Function", "content": {"typeVars": [".-1.139805440355776"], "argTypes": [{"nodeId": ".-1.139805440355776"}], "returnType": {"nodeId": ".-1.139805440355776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805440355776": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805440355776", "variance": "INVARIANT"}}, "139805440356224": {"type": "Function", "content": {"typeVars": [".-1.139805440356224"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.139805440356224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}}, ".-1.139805440356224": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805440356224", "variance": "INVARIANT"}}, "139805440356672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dtype"]}}, "139805440357120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146652160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dtype"]}}, "139805146652160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805440357568": {"type": "Function", "content": {"typeVars": [".-1.139805440357568"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146650704"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.139805440357568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "dtype", "type"]}}, "139805146650704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805440357568": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805440357568", "variance": "INVARIANT"}}, "139805146652944": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440358016"}, {"nodeId": "139805440358464"}]}}, "139805440358016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "0"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}}, "139805440358464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146653616"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}}, "139805146653616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805176147840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805276996000"}]}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805176144480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805276996352"}]}]}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805176144256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805276996704"}]}]}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805176143808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805276997408"}]}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805440492032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440415648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805440492480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440492928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146654064": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176143584"}, {"nodeId": "139805440493824"}, {"nodeId": "139805440494272"}, {"nodeId": "139805440494720"}, {"nodeId": "139805440495168"}]}}, "139805176143584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146654624"}, {"nodeId": "139805146653056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146654624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146653056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440493824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146653728"}, {"nodeId": "139805146653840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146653728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146653840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440494272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146654512"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146654512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805440494720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805440495168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146655744"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146655744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805175559920": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155358176"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155358176"}]}]}]}]}}, "139805146654288": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176144032"}, {"nodeId": "139805440496064"}, {"nodeId": "139805440496512"}, {"nodeId": "139805440496960"}, {"nodeId": "139805440497408"}]}}, "139805176144032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146656080"}, {"nodeId": "139805146656192"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146656080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146656192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440496064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146656640"}, {"nodeId": "139805146655968"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146656640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146655968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440496512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146656528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146656528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805440496960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805440497408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146657648"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146657648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146654960": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176142688"}, {"nodeId": "139805440498304"}, {"nodeId": "139805440498752"}, {"nodeId": "139805440499200"}, {"nodeId": "139805440499648"}]}}, "139805176142688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146657984"}, {"nodeId": "139805146658096"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146657984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146658096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440498304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146658544"}, {"nodeId": "139805146657872"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146658544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146657872": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440498752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146658432"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146658432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805440499200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805440499648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146659552"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146659552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146656864": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176142912"}, {"nodeId": "139805440500544"}, {"nodeId": "139805440500992"}, {"nodeId": "139805440501440"}, {"nodeId": "139805440501888"}]}}, "139805176142912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146659888"}, {"nodeId": "139805146660000"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146659888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146660000": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440500544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146660448"}, {"nodeId": "139805146659776"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146660448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146659776": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440500992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146660672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146660672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805440501440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805440501888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146694368"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146694368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146658768": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176142016"}, {"nodeId": "139805440502784"}, {"nodeId": "139805440503232"}, {"nodeId": "139805440503680"}, {"nodeId": "139805440504128"}]}}, "139805176142016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440502784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440503232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440503680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440504128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805146544416": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176141568"}, {"nodeId": "139805440505024"}, {"nodeId": "139805440505472"}]}}, "139805176141568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440505024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440505472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805146694592": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176144928"}, {"nodeId": "139805440506368"}, {"nodeId": "139805440506816"}]}}, "139805176144928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440506368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440506816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805146695824": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176139776"}, {"nodeId": "139805435363392"}, {"nodeId": "139805435363840"}]}}, "139805176139776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805435363392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805435363840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805146696608": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176140672"}, {"nodeId": "139805435364736"}, {"nodeId": "139805435365184"}, {"nodeId": "139805435365632"}, {"nodeId": "139805435366080"}, {"nodeId": "139805435366528"}, {"nodeId": "139805435366976"}, {"nodeId": "139805435367424"}]}}, "139805176140672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146698400"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146698400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435364736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146698624"}, {"nodeId": "139805146698736"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146698624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146698736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435365184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146699184"}, {"nodeId": "139805146698176"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146699184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146698176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435365632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146699744"}, {"nodeId": "139805146699072"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146699744": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146699072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435366080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146700192"}, {"nodeId": "139805146699632"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146700192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146699632": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435366528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146700528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146700528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435366976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435367424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146701648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146701648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146697392": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176138880"}, {"nodeId": "139805435368320"}, {"nodeId": "139805435368768"}, {"nodeId": "139805435369216"}, {"nodeId": "139805435369664"}, {"nodeId": "139805435370112"}, {"nodeId": "139805435370560"}, {"nodeId": "139805435371008"}]}}, "139805176138880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146702096"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146702096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435368320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146702320"}, {"nodeId": "139805146702432"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146702320": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146702432": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435368768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146702880"}, {"nodeId": "139805146701872"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146702880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146701872": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435369216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146703440"}, {"nodeId": "139805146702768"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146703440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146702768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435369664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146703888"}, {"nodeId": "139805146703328"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146703888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146703328": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435370112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146704224"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146704224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435370560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435371008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146705344"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146705344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146701200": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176140000"}, {"nodeId": "139805435371904"}, {"nodeId": "139805435372352"}, {"nodeId": "139805435372800"}, {"nodeId": "139805435373248"}, {"nodeId": "139805435373696"}, {"nodeId": "139805435374144"}]}}, "139805176140000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146705792"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146705792": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435371904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146706128"}, {"nodeId": "139805146706240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146706128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146706240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435372352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146706688"}, {"nodeId": "139805146705568"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146706688": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146705568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435372800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146707248"}, {"nodeId": "139805146706576"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146707248": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146706576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435373248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146707696"}, {"nodeId": "139805146707136"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146707696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146707136": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805435373696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435374144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146708368"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146708368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146704896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176139328"}, {"nodeId": "139805435375040"}, {"nodeId": "139805435375488"}, {"nodeId": "139805435375936"}, {"nodeId": "139805435376384"}, {"nodeId": "139805435376832"}, {"nodeId": "139805435377280"}]}}, "139805176139328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146708816"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146708816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435375040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146709152"}, {"nodeId": "139805146709264"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146709152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146709264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435375488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146709712"}, {"nodeId": "139805146708592"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146709712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146708592": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435375936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146743072"}, {"nodeId": "139805146743184"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146743072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146743184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435376384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146743520"}, {"nodeId": "139805146743632"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146743520": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146743632": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805435376832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435377280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146744304"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146744304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146707584": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176138656"}, {"nodeId": "139805435378176"}, {"nodeId": "139805435378624"}, {"nodeId": "139805435379072"}, {"nodeId": "139805435560000"}]}}, "139805176138656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146744752"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146744752": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435378176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146745200"}, {"nodeId": "139805146745312"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146745200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146745312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435378624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146745872"}, {"nodeId": "139805146744528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146745872": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146744528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435379072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146746544"}, {"nodeId": "139805146745760"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146746544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146745760": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435560000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146747104"}, {"nodeId": "139805146746432"}], "returnType": {"nodeId": "139805146747552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146747104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146746432": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805146747552": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146660336": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176139552"}, {"nodeId": "139805435560896"}, {"nodeId": "139805435561344"}, {"nodeId": "139805435561792"}, {"nodeId": "139805435562240"}]}}, "139805176139552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146747888"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805146747888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435560896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146748336"}, {"nodeId": "139805146748448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805146748336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146748448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435561344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146749008"}, {"nodeId": "139805146747664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805146749008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146747664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435561792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146749680"}, {"nodeId": "139805146748896"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805146749680": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146748896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435562240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146750240"}, {"nodeId": "139805146749568"}], "returnType": {"nodeId": "139805146750688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805146750240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146749568": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805146750688": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146746992": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176137312"}, {"nodeId": "139805435563136"}, {"nodeId": "139805435563584"}, {"nodeId": "139805435564032"}, {"nodeId": "139805435564480"}, {"nodeId": "139805435564928"}, {"nodeId": "139805435565376"}, {"nodeId": "139805435565824"}, {"nodeId": "139805435566272"}, {"nodeId": "139805435566720"}, {"nodeId": "139805435567168"}]}}, "139805176137312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146751024"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146751024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435563136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146751248"}, {"nodeId": "139805146751360"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146751248": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146751360": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435563584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146751808"}, {"nodeId": "139805146750800"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146751808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146750800": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435564032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146752368"}, {"nodeId": "139805146751696"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146752368": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146751696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435564480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146752816"}, {"nodeId": "139805146752256"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146752816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146752256": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435564928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146753152"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146753152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435565376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146753936"}, {"nodeId": "139805146753264"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146753936": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146753264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435565824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146754272"}, {"nodeId": "139805146753824"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146754272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146753824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805435566272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146754496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146754496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435566720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435567168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146755280"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146755280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146750128": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176136864"}, {"nodeId": "139805435568064"}, {"nodeId": "139805435568512"}, {"nodeId": "139805435568960"}, {"nodeId": "139805435569408"}, {"nodeId": "139805435569856"}, {"nodeId": "139805435570304"}, {"nodeId": "139805435570752"}, {"nodeId": "139805435571200"}, {"nodeId": "139805435571648"}, {"nodeId": "139805435572096"}]}}, "139805176136864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146755728"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146755728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435568064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146755952"}, {"nodeId": "139805146756064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146755952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146756064": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435568512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146756512"}, {"nodeId": "139805146755504"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146756512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146755504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435568960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146757072"}, {"nodeId": "139805146756400"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146757072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146756400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435569408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146757520"}, {"nodeId": "139805146756960"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146757520": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146756960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435569856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146757856"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146757856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435570304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146758640"}, {"nodeId": "139805146757968"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146758640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146757968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435570752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146758976"}, {"nodeId": "139805146758528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146758976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146758528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805435571200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146792112"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146792112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435571648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435572096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146792896"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146792896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146754832": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176150976"}, {"nodeId": "139805435572992"}, {"nodeId": "139805435573440"}, {"nodeId": "139805435573888"}, {"nodeId": "139805435574336"}, {"nodeId": "139805435574784"}, {"nodeId": "139805435575232"}, {"nodeId": "139805435575680"}, {"nodeId": "139805435740224"}, {"nodeId": "139805435740672"}, {"nodeId": "139805435741120"}, {"nodeId": "139805435741568"}]}}, "139805176150976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146793344"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146793344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435572992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146793792"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146793792": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435573440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146793904"}, {"nodeId": "139805146794016"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146793904": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146794016": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435573888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146794464"}, {"nodeId": "139805146793120"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146794464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146793120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435574336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146795024"}, {"nodeId": "139805146794352"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146795024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146794352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435574784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146795472"}, {"nodeId": "139805146794912"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146795472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146794912": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435575232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146795808"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146795808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435575680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146796592"}, {"nodeId": "139805146795920"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146796592": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146795920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435740224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146796480"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146796480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435740672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146796816"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146796816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805435741120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435741568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146797936"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146797936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146709600": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176140224"}, {"nodeId": "139805435742464"}, {"nodeId": "139805435742912"}, {"nodeId": "139805435743360"}, {"nodeId": "139805435743808"}, {"nodeId": "139805435744256"}, {"nodeId": "139805435744704"}, {"nodeId": "139805435745152"}, {"nodeId": "139805435745600"}, {"nodeId": "139805435746048"}, {"nodeId": "139805435746496"}, {"nodeId": "139805435746944"}]}}, "139805176140224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146798384"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146798384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435742464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146798832"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146798832": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435742912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146798944"}, {"nodeId": "139805146799056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146798944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146799056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435743360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146799504"}, {"nodeId": "139805146798160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146799504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146798160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435743808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146800064"}, {"nodeId": "139805146799392"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146800064": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146799392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435744256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146800512"}, {"nodeId": "139805146799952"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146800512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146799952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435744704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146800848"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146800848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435745152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146801632"}, {"nodeId": "139805146800960"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146801632": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146800960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435745600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146801968"}, {"nodeId": "139805146801520"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146801968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146801520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805435746048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146802192"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146802192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805435746496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435746944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146802976"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146802976": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146797152": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176144704"}, {"nodeId": "139805176140448"}, {"nodeId": "139805435747840"}, {"nodeId": "139805435748288"}, {"nodeId": "139805435748736"}, {"nodeId": "139805435749184"}, {"nodeId": "139805435749632"}, {"nodeId": "139805435750080"}, {"nodeId": "139805435750528"}, {"nodeId": "139805435750976"}]}}, "139805176144704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146803424"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146803424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805176140448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146803648"}, {"nodeId": "139805146803760"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146803648": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146803760": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435747840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146804208"}, {"nodeId": "139805146803200"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146804208": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146803200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435748288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146804768"}, {"nodeId": "139805146804096"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146804768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146804096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435748736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146805216"}, {"nodeId": "139805146804656"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146805216": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146804656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435749184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146805552"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146805552": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435749632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146806336"}, {"nodeId": "139805146805664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146806336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146805664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435750080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146806672"}, {"nodeId": "139805146806224"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146806672": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146806224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435750528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435750976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146807344"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146807344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146801856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805435751424"}, {"nodeId": "139805176148288"}, {"nodeId": "139805435752320"}, {"nodeId": "139805435752768"}, {"nodeId": "139805435753216"}, {"nodeId": "139805435753664"}, {"nodeId": "139805435754112"}, {"nodeId": "139805435754560"}, {"nodeId": "139805435755008"}, {"nodeId": "139805435755456"}]}}, "139805435751424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146807792"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146807792": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805176148288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146808016"}, {"nodeId": "139805146808128"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146808016": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146808128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435752320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146824992"}, {"nodeId": "139805146825104"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146824992": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146825104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435752768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146825552"}, {"nodeId": "139805146825664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146825552": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146825664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435753216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146826000"}, {"nodeId": "139805146826112"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146826000": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146826112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435753664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146826448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146826448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435754112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146827120"}, {"nodeId": "139805146827232"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146827120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146827232": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435754560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146827456"}, {"nodeId": "139805146827568"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146827456": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146827568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435755008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435755456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146828240"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146828240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146806896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805435755904"}, {"nodeId": "139805435838976"}, {"nodeId": "139805435839424"}, {"nodeId": "139805435839872"}, {"nodeId": "139805435840320"}, {"nodeId": "139805435840768"}, {"nodeId": "139805435841216"}, {"nodeId": "139805435841664"}, {"nodeId": "139805435842112"}]}}, "139805435755904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146828688"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146828688": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435838976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146829024"}, {"nodeId": "139805146829136"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146829024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146829136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435839424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146829584"}, {"nodeId": "139805146828464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146829584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146828464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435839872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146830144"}, {"nodeId": "139805146829472"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146830144": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146829472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435840320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146830032"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146830032": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805435840768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146830928"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146830928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435841216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146831152"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146831152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435841664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435842112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146831936"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146831936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146758864": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175724320"}, {"nodeId": "139805435843008"}, {"nodeId": "139805435843456"}, {"nodeId": "139805435843904"}, {"nodeId": "139805435844352"}, {"nodeId": "139805435844800"}, {"nodeId": "139805435845248"}, {"nodeId": "139805435845696"}, {"nodeId": "139805435846144"}]}}, "139805175724320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146832384"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146832384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435843008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146832720"}, {"nodeId": "139805146832832"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146832720": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146832832": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435843456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146833280"}, {"nodeId": "139805146832160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146833280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146832160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435843904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146833840"}, {"nodeId": "139805146833168"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146833840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146833168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435844352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146833728"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146833728": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805435844800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146834624"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146834624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435845248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146834960"}, {"nodeId": "139805146834176"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146834960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146834176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435845696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435846144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146835632"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146835632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146831488": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175723200"}, {"nodeId": "139805435847040"}, {"nodeId": "139805435847488"}, {"nodeId": "139805435847936"}, {"nodeId": "139805435848384"}, {"nodeId": "139805435848832"}, {"nodeId": "139805435849280"}, {"nodeId": "139805435849728"}]}}, "139805175723200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146836080"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146836080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435847040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146836416"}, {"nodeId": "139805146836528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146836416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146836528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435847488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146836976"}, {"nodeId": "139805146835856"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146836976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146835856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435847936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146837536"}, {"nodeId": "139805146836864"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146837536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146836864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435848384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146837984"}, {"nodeId": "139805146837424"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146837984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146837424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435848832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146838320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146838320": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435849280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435849728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146839440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146839440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146835184": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175722752"}, {"nodeId": "139805435850624"}, {"nodeId": "139805435851072"}, {"nodeId": "139805435851520"}, {"nodeId": "139805435851968"}, {"nodeId": "139805435852416"}, {"nodeId": "139805435852864"}, {"nodeId": "139805435853312"}]}}, "139805175722752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146839888"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146839888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435850624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146840224"}, {"nodeId": "139805146840336"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146840224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146840336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435851072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146840784"}, {"nodeId": "139805146839664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146840784": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146839664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435851520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146874144"}, {"nodeId": "139805146874256"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146874144": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146874256": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435851968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146874592"}, {"nodeId": "139805146874704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146874592": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146874704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435852416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146875040"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146875040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435852864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435853312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146876160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146876160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146838992": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175724544"}, {"nodeId": "139805435854208"}, {"nodeId": "139805436002368"}, {"nodeId": "139805436002816"}, {"nodeId": "139805436003264"}, {"nodeId": "139805436003712"}, {"nodeId": "139805436004160"}, {"nodeId": "139805436004608"}, {"nodeId": "139805436005056"}]}}, "139805175724544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146876496"}, {"nodeId": "139805146876608"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146876496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146876608": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435854208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146876944"}, {"nodeId": "139805146877056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146876944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146877056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436002368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146877616"}, {"nodeId": "139805146876384"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146877616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146876384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436002816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146877952"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146877952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436003264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146878064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146878064": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805436003712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146879072"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146879072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436004160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146879296"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146879296": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436004608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436005056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146880080"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146880080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146807568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175725216"}, {"nodeId": "139805436005952"}, {"nodeId": "139805436006400"}, {"nodeId": "139805436006848"}, {"nodeId": "139805436007296"}, {"nodeId": "139805436007744"}, {"nodeId": "139805436008192"}, {"nodeId": "139805436008640"}, {"nodeId": "139805436009088"}]}}, "139805175725216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146880416"}, {"nodeId": "139805146880528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146880416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146880528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436005952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146880864"}, {"nodeId": "139805146880976"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146880864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146880976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436006400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146881536"}, {"nodeId": "139805146880304"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146881536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146880304": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436006848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146881872"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146881872": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436007296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146881984"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146881984": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805436007744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146882992"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146882992": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436008192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146883328"}, {"nodeId": "139805146882544"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146883328": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146882544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436008640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436009088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146884000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146884000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146879632": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175724992"}, {"nodeId": "139805436009984"}, {"nodeId": "139805436010432"}, {"nodeId": "139805436010880"}, {"nodeId": "139805436011328"}]}}, "139805175724992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146884448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146884448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436009984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146884784"}, {"nodeId": "139805146884896"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146884784": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146884896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436010432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146885344"}, {"nodeId": "139805146884224"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146885344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146884224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436010880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436011328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146886240"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146886240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146883552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175725440"}, {"nodeId": "139805436012224"}, {"nodeId": "139805436012672"}, {"nodeId": "139805436013120"}, {"nodeId": "139805436013568"}]}}, "139805175725440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146886688"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146886688": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436012224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146887024"}, {"nodeId": "139805146887136"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146887024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146887136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436012672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146887584"}, {"nodeId": "139805146886464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146887584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146886464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436013120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436013568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146888480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146888480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146885792": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175723872"}, {"nodeId": "139805436014464"}, {"nodeId": "139805436014912"}, {"nodeId": "139805436015360"}, {"nodeId": "139805436015808"}]}}, "139805175723872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146888928"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146888928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436014464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146889264"}, {"nodeId": "139805146889376"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146889264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146889376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436014912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146889824"}, {"nodeId": "139805146888704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146889824": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146888704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436015360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436015808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146907248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146907248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146888032": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175724096"}, {"nodeId": "139805436016704"}, {"nodeId": "139805436017152"}, {"nodeId": "139805436017600"}, {"nodeId": "139805436018048"}]}}, "139805175724096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146907696"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146907696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436016704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146908032"}, {"nodeId": "139805146908144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146908032": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146908144": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436017152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146908592"}, {"nodeId": "139805146907472"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146908592": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146907472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436017600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436018048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146909488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146909488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146840672": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175723648"}, {"nodeId": "139805436150272"}, {"nodeId": "139805436150720"}, {"nodeId": "139805436151168"}, {"nodeId": "139805436151616"}]}}, "139805175723648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146909936"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146909936": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436150272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146910160"}, {"nodeId": "139805146910272"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146910160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146910272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436150720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146910720"}, {"nodeId": "139805146909712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146910720": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146909712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436151168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436151616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146911616"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146911616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146909040": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175723424"}, {"nodeId": "139805436152512"}, {"nodeId": "139805436152960"}, {"nodeId": "139805436153408"}, {"nodeId": "139805436153856"}]}}, "139805175723424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146912064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146912064": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436152512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146912288"}, {"nodeId": "139805146912400"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146912288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146912400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436152960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146912848"}, {"nodeId": "139805146911840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146912848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146911840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436153408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436153856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146913744"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146913744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146911168": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175722976"}, {"nodeId": "139805175724768"}, {"nodeId": "139805436154752"}, {"nodeId": "139805436155200"}, {"nodeId": "139805436155648"}]}}, "139805175722976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146914192"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146914192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805175724768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146914416"}, {"nodeId": "139805146914528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146914416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146914528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436154752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146914976"}, {"nodeId": "139805146913968"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146914976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146913968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436155200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436155648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146915872"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146915872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146913296": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805436156096"}, {"nodeId": "139805175721856"}, {"nodeId": "139805436156992"}, {"nodeId": "139805436157440"}, {"nodeId": "139805436157888"}]}}, "139805436156096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146916320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146916320": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805175721856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146916544"}, {"nodeId": "139805146916656"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146916544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146916656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436156992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146917104"}, {"nodeId": "139805146916096"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146917104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146916096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436157440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436157888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146918000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146918000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146915424": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805436158336"}, {"nodeId": "139805436159232"}, {"nodeId": "139805436159680"}, {"nodeId": "139805436160128"}, {"nodeId": "139805436160576"}]}}, "139805436158336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146918448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146918448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436159232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146918672"}, {"nodeId": "139805146918784"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146918672": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146918784": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436159680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146919232"}, {"nodeId": "139805146918224"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146919232": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146918224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436160128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436160576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146920128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146920128": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146917552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176200800"}, {"nodeId": "139805176199904"}, {"nodeId": "139805436161472"}, {"nodeId": "139805436161920"}, {"nodeId": "139805436162368"}]}}, "139805176200800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146920576"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146920576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805176199904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146920800"}, {"nodeId": "139805146920912"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146920800": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146920912": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436161472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146921360"}, {"nodeId": "139805146920352"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146921360": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146920352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436161920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436162368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146922256"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146922256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146919680": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805436162816"}, {"nodeId": "139805175398688"}, {"nodeId": "139805176200576"}, {"nodeId": "139805175398464"}, {"nodeId": "139805436163712"}, {"nodeId": "139805436164160"}, {"nodeId": "139805436280896"}, {"nodeId": "139805436281344"}]}}, "139805436162816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146922704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146922704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805175398688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146956176"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146956176": {"type": "Union", "content": {"items": [{"nodeId": "139805146955952"}, {"nodeId": "139805146956064"}]}}, "139805146955952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146956064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805176200576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146956400"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146956400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805175398464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146956736"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146956736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436163712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146957072"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146957072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436164160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146957408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146957408": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436280896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146957968"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146957968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436281344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146921808": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805436165504"}, {"nodeId": "139805436164608"}, {"nodeId": "139805436282240"}, {"nodeId": "139805436282688"}, {"nodeId": "139805436283136"}, {"nodeId": "139805436283584"}, {"nodeId": "139805436284032"}]}}, "139805436165504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146958864"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146958864": {"type": "Union", "content": {"items": [{"nodeId": "139805146958640"}, {"nodeId": "139805146958752"}]}}, "139805146958640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146958752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805436164608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146959088"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146959088": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436282240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146959424"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146959424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436282688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146959760"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146959760": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436283136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146960096"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146960096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436283584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146960320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146960320": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436284032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146889712": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805436284480"}, {"nodeId": "139805436165056"}, {"nodeId": "139805436285376"}, {"nodeId": "139805436285824"}, {"nodeId": "139805436286272"}, {"nodeId": "139805436286720"}, {"nodeId": "139805436287168"}]}}, "139805436284480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146961328"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146961328": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436165056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146961888"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146961888": {"type": "Union", "content": {"items": [{"nodeId": "139805146961664"}, {"nodeId": "139805146961776"}]}}, "139805146961664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146961776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805436285376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146962112"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146962112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436285824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146962448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146962448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436286272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146962784"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146962784": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436286720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146963120"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146963120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436287168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146960880": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805436287616"}, {"nodeId": "139805436288512"}, {"nodeId": "139805436288960"}, {"nodeId": "139805436289408"}, {"nodeId": "139805436289856"}]}}, "139805436287616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146964016"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146964016": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436288512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146964240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146964240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436288960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146964576"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146964576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436289408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146964912"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146964912": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436289856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146963568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175535808"}, {"nodeId": "139805436290752"}, {"nodeId": "139805436291200"}, {"nodeId": "139805436291648"}, {"nodeId": "139805436292096"}, {"nodeId": "139805436292544"}, {"nodeId": "139805436292992"}]}}, "139805175535808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146965920"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146965920": {"type": "Union", "content": {"items": [{"nodeId": "139805146965696"}, {"nodeId": "139805146965808"}]}}, "139805146965696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146965808": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805436290752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146966144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146966144": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436291200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146966480"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146966480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436291648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146966816"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146966816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436292096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146967152"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146967152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436292544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146967488"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146967488": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436292992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146965248": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175538720"}, {"nodeId": "139805436293888"}, {"nodeId": "139805436294336"}, {"nodeId": "139805436294784"}, {"nodeId": "139805436295232"}]}}, "139805175538720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146968496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146968496": {"type": "Union", "content": {"items": [{"nodeId": "139805146968272"}, {"nodeId": "139805146968384"}]}}, "139805146968272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146968384": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805436293888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146968720"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146968720": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436294336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146969056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146969056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436294784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146969392"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146969392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436295232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146967824": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175538272"}, {"nodeId": "139805436296128"}, {"nodeId": "139805436296576"}, {"nodeId": "139805431234624"}, {"nodeId": "139805431235072"}]}}, "139805175538272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146970512"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146970512": {"type": "Union", "content": {"items": [{"nodeId": "139805146970288"}, {"nodeId": "139805146970400"}]}}, "139805146970288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146970400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805436296128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146970736"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146970736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436296576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146971072"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146971072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431234624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146971408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146971408": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805431235072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146969952": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175537376"}, {"nodeId": "139805431235968"}, {"nodeId": "139805431236416"}]}}, "139805175537376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141762560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141762560": {"type": "Union", "content": {"items": [{"nodeId": "139805141762336"}, {"nodeId": "139805141762448"}]}}, "139805141762336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141762448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431235968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141762784"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141762784": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431236416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146922480": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175538496"}, {"nodeId": "139805431237312"}, {"nodeId": "139805431237760"}]}}, "139805175538496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141763904"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141763904": {"type": "Union", "content": {"items": [{"nodeId": "139805141763680"}, {"nodeId": "139805141763792"}]}}, "139805141763680": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141763792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431237312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141764128"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141764128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431237760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141763344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175532672"}, {"nodeId": "139805431238656"}, {"nodeId": "139805431239104"}, {"nodeId": "139805431239552"}]}}, "139805175532672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141765024"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141765024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431238656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141765584"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141765584": {"type": "Union", "content": {"items": [{"nodeId": "139805141765360"}, {"nodeId": "139805141765472"}]}}, "139805141765360": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141765472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431239104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141765808"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141765808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431239552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141764688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175530880"}, {"nodeId": "139805431240448"}, {"nodeId": "139805431240896"}, {"nodeId": "139805431241344"}]}}, "139805175530880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141766704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141766704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431240448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141767264"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141767264": {"type": "Union", "content": {"items": [{"nodeId": "139805141767040"}, {"nodeId": "139805141767152"}]}}, "139805141767040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141767152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431240896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141767488"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141767488": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431241344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141766368": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175530432"}, {"nodeId": "139805431242240"}, {"nodeId": "139805431242688"}, {"nodeId": "139805431243136"}]}}, "139805175530432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141768384"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141768384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431242240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141768944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141768944": {"type": "Union", "content": {"items": [{"nodeId": "139805141768720"}, {"nodeId": "139805141768832"}]}}, "139805141768720": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141768832": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431242688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141769168"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141769168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431243136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805175530656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805141770064"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "stream"]}}, "139805141770064": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805431244032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805141770400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141770400": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "0"}]}}, "139805112873504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": ".2.139805155356768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414614272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": ".1.139805155353952"}], "returnType": {"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "array", "ptr"]}}, "139805116804320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}], "returnType": {"nodeId": ".1.139805155353952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805116708256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}], "returnType": {"nodeId": "139805171900384", "args": [{"nodeId": "139805171892288"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805171900384": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "Array", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805172056128"}, "items": [{"kind": "Variable", "content": {"name": "_length_", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805171841536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_length_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "_length_"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805172059488"}, "items": [{"kind": "Variable", "content": {"name": "_type_", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805171841984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_type_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "_type_"}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314721696"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805172060048"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805172060160"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314723936"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314724384"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314724832"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805171900384"}], "bases": [{"nodeId": "139805184482240"}], "isAbstract": true}}, ".1.139805171900384": {"type": "TypeVar", "content": {"varName": "_CT", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805171900384", "variance": "INVARIANT"}}, "139805184482240": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_CData", "members": [{"kind": "Variable", "content": {"name": "_b_base_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_b_needsfree_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_objects", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171774656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171834368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_buffer_copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171835488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_address", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171836608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171837056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "in_dll", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171837280"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292788448"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292788896"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805171774656": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": "139805481893056"}]}, {"nodeId": "N"}]}}, "139805171834368": {"type": "Function", "content": {"typeVars": [".0.139805171834368"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805171834368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "source", "offset"]}}, ".0.139805171834368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805171834368", "variance": "INVARIANT"}}, "139805171835488": {"type": "Function", "content": {"typeVars": [".0.139805171835488"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805171835488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "source", "offset"]}}, ".0.139805171835488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805171835488", "variance": "INVARIANT"}}, "139805171836608": {"type": "Function", "content": {"typeVars": [".0.139805171836608"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805171836608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "address"]}}, ".0.139805171836608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805171836608", "variance": "INVARIANT"}}, "139805171837056": {"type": "Function", "content": {"typeVars": [".0.139805171837056"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805171774992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "obj"]}}, "139805171774992": {"type": "Union", "content": {"items": [{"nodeId": ".0.139805171837056"}, {"nodeId": "139805184483648"}]}}, ".0.139805171837056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805171837056", "variance": "INVARIANT"}}, "139805184483648": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_CArgObject", "members": [], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805171837280": {"type": "Function", "content": {"typeVars": [".0.139805171837280"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805184486464"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805171837280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "library", "name"]}}, "139805184486464": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "CDLL", "members": [{"kind": "Variable", "content": {"name": "_func_flags_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_func_restype_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805184482240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_handle", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_FuncPtr", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handle", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "use_errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "use_last_error", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "winmode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352417248"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352418144"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name_or_ordinal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352418592"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805352417248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184486464"}, {"nodeId": "139805172061504"}, {"nodeId": "139805481893056"}, {"nodeId": "139805172061616"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805172061728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "name", "mode", "handle", "use_errno", "use_last_error", "winmode"]}}, "139805172061504": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805172061616": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805172061728": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805352418144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184486464"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805184487520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184487520": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "_NamedFuncPointer", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805184487168"}], "isAbstract": false}}, "139805184487168": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "_FuncPointer", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184484000"}], "isAbstract": false}}, "139805184484000": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "CFuncPtr", "members": [{"kind": "Variable", "content": {"name": "restype", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171776112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481889888", "args": [{"nodeId": "0"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errcheck", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171764240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_flags_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805171773984"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314717664"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805184483296"}, {"nodeId": "139805184482240"}], "isAbstract": false}}, "139805171776112": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805171791936"}, {"nodeId": "N"}]}}, "139805171791936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805171764240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805183984128"}}}, "139805183984128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171775888"}, {"nodeId": "139805184484000"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805184482240"}]}], "returnType": {"nodeId": "139805184482240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805171775888": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805171773984": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314715424"}, {"nodeId": "139805314715872"}, {"nodeId": "139805314716320"}, {"nodeId": "139805314716768"}]}}, "139805314715424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184484000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805314715872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184484000"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805314716320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184484000"}, {"nodeId": "139805171792160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805171792160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805314716768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184484000"}, {"nodeId": "139805172058928"}, {"nodeId": "139805172059152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805172058928": {"type": "Tuple", "content": {"items": [{"nodeId": "139805172057920"}, {"nodeId": "139805184486464"}]}}, "139805172057920": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805172059152": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805172059040"}]}, {"nodeId": "N"}]}}, "139805172059040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805171765472"}}}, "139805171765472": {"type": "Union", "content": {"items": [{"nodeId": "139805171763792"}, {"nodeId": "139805171762112"}, {"nodeId": "139805171765360"}]}}, "139805171763792": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}]}}, "139805171762112": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805171764016"}]}}, "139805171764016": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805171765360": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805171763904"}, {"nodeId": "A"}]}}, "139805171763904": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805314717664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184484000"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805184483296": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_PointerLike", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482944"}], "isAbstract": false}}, "139805184482944": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_CanCastTo", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482240"}], "isAbstract": false}}, "139805352418592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184486464"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805184487520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805171837280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805171837280", "variance": "INVARIANT"}}, "139805292788448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184482240"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805292788896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184482240"}, {"nodeId": "139805276670080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805172056128": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314719904"}]}}, "139805314719904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805171841536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805172059488": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314720800"}]}}, "139805314720800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805171841984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805314721696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "139805172060048": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314722144"}, {"nodeId": "139805314722592"}]}}, "139805314722144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805314722592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805172060160": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314723040"}, {"nodeId": "139805314723488"}]}}, "139805314723040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}, {"nodeId": "139805481893056"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805314723488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}, {"nodeId": "139805276670432"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805314723936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805314724384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805314724832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805171892288": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_int64", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805184482592": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_SimpleCData", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805184482592"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292789344"}, "name": "__init__"}}], "typeVars": [{"nodeId": ".1.139805184482592"}], "bases": [{"nodeId": "139805184482240"}], "isAbstract": false}}, ".1.139805184482592": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805184482592", "variance": "INVARIANT"}}, "139805292789344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184482592", "args": [{"nodeId": ".1.139805184482592"}]}, {"nodeId": ".1.139805184482592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "139805116702656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}], "returnType": {"nodeId": "139805171900384", "args": [{"nodeId": "139805171892288"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805116704448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}], "returnType": {"nodeId": "139805171897568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805171897568": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_void_p", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184483296"}, {"nodeId": "139805184482592", "args": [{"nodeId": "139805171768272"}]}], "isAbstract": false}}, "139805171768272": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805414616512": {"type": "Function", "content": {"typeVars": [".-1.139805414616512"], "argTypes": [{"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.139805414616512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, ".-1.139805414616512": {"type": "TypeVar", "content": {"varName": "_CastT", "values": [], "upperBound": {"nodeId": "139805184482944"}, "def": "139805414616512", "variance": "INVARIANT"}}, "139805414616960": {"type": "Function", "content": {"typeVars": [".-1.139805414616960"], "argTypes": [{"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "139805171900384", "args": [{"nodeId": ".-1.139805414616960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, ".-1.139805414616960": {"type": "TypeVar", "content": {"varName": "_CT", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805414616960", "variance": "INVARIANT"}}, "139805414617408": {"type": "Function", "content": {"typeVars": [".-1.139805414617408"], "argTypes": [{"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "139805171900384", "args": [{"nodeId": ".-1.139805414617408"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, ".-1.139805414617408": {"type": "TypeVar", "content": {"varName": "_CT", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805414617408", "variance": "INVARIANT"}}, "139805154854688": {"type": "Concrete", "content": {"module": "numpy._typing._array_like", "simpleName": "_UnknownType", "members": [], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805150978368": {"type": "Concrete", "content": {"module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin1_Nout1", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100323136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100322464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100321344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100320224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100321120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100320896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100272192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100272864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100272640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100273088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100273536"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138444112"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330819552"}, "name": "at"}}], "typeVars": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}], "bases": [{"nodeId": "139805150579520"}], "isAbstract": false}}, ".1.139805150978368": {"type": "TypeVar", "content": {"varName": "_NameType", "values": [], "upperBound": {"nodeId": "139805276669024"}, "def": "139805150978368", "variance": "INVARIANT"}}, ".2.139805150978368": {"type": "TypeVar", "content": {"varName": "_NTypes", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805150978368", "variance": "INVARIANT"}}, ".3.139805150978368": {"type": "TypeVar", "content": {"varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150978368", "variance": "INVARIANT"}}, "139805100323136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": ".1.139805150978368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100322464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": ".2.139805150978368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100321344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": ".3.139805150978368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100320224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100321120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100320896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100272192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100272864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100272640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100273088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100273536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138444112": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805330818208"}, {"nodeId": "139805330818656"}, {"nodeId": "139805330819104"}]}}, "139805330818208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}, {"nodeId": "139805138446128"}, {"nodeId": "N"}, {"nodeId": "139805138446352"}, {"nodeId": "139805138446464"}, {"nodeId": "139805138446576"}, {"nodeId": "139805138446688"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138447024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138446128": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138446352": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138446240"}]}}, "139805138446240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138446464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138446576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138446688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138447024": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330818656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}, {"nodeId": "139805138447360"}, {"nodeId": "139805138447584"}, {"nodeId": "139805138446016"}, {"nodeId": "139805138448368"}, {"nodeId": "139805138447920"}, {"nodeId": "139805138448592"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138449040"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138447360": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138447584": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805138448480"}]}}, "139805138448480": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805138446016": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138447808"}]}}, "139805138447808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138448368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138447920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138448592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138449040": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330819104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}, {"nodeId": "139805150978016"}, {"nodeId": "139805138450608"}, {"nodeId": "139805138449936"}, {"nodeId": "139805138449600"}, {"nodeId": "139805138450496"}, {"nodeId": "139805138450048"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138451056"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805150978016": {"type": "Protocol", "content": {"module": "numpy._typing._ufunc", "simpleName": "_SupportsArrayUFunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "inputs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335727776"}, "name": "__array_ufunc__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__array_ufunc__"]}}, "139805335727776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978016"}, {"nodeId": "139805150579520"}, {"nodeId": "139805138445232"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "ufunc", "method", "inputs", "kwargs"]}}, "139805138445232": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138450608": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805138450384"}]}}, "139805138450384": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805138449936": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138449712"}]}}, "139805138449712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138449600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138450496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138450048": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138451056": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330819552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}, {"nodeId": "139805150978016"}, {"nodeId": "139805138451392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805138451392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805150978720": {"type": "Concrete", "content": {"module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin2_Nout1", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100274208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100272416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100274880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100267712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100267936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100268160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100267488"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138444448"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330824032"}, "name": "at"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "where", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330824480"}, "name": "reduce"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330824928"}, "name": "accumulate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330825376"}, "name": "reduceat"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138451840"}, "items": [{"kind": "Variable", "content": {"name": "outer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "outer"}}], "typeVars": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}], "bases": [{"nodeId": "139805150579520"}], "isAbstract": false}}, ".1.139805150978720": {"type": "TypeVar", "content": {"varName": "_NameType", "values": [], "upperBound": {"nodeId": "139805276669024"}, "def": "139805150978720", "variance": "INVARIANT"}}, ".2.139805150978720": {"type": "TypeVar", "content": {"varName": "_NTypes", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805150978720", "variance": "INVARIANT"}}, ".3.139805150978720": {"type": "TypeVar", "content": {"varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150978720", "variance": "INVARIANT"}}, "139805100274208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}], "returnType": {"nodeId": ".1.139805150978720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100272416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}], "returnType": {"nodeId": ".2.139805150978720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100274880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}], "returnType": {"nodeId": ".3.139805150978720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100267712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100267936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100268160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100267488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138444448": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805330823136"}, {"nodeId": "139805330823584"}]}}, "139805330823136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "139805138451504"}, {"nodeId": "139805138451616"}, {"nodeId": "N"}, {"nodeId": "139805138449824"}, {"nodeId": "139805138534464"}, {"nodeId": "139805138534576"}, {"nodeId": "139805138534688"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138535024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138451504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138451616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138449824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138452176"}]}}, "139805138452176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138534464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138534576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138534688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138535024": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330823584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "139805138535696"}, {"nodeId": "139805138536032"}, {"nodeId": "139805138535808"}, {"nodeId": "139805138536368"}, {"nodeId": "139805138535920"}, {"nodeId": "139805138536592"}, {"nodeId": "139805138536816"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138537152"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138535696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138536032": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138535808": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805138535584"}]}}, "139805138535584": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805138536368": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138535360"}]}}, "139805138535360": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138535920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138536592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138536816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138537152": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330824032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "0"}, {"nodeId": "139805138538384"}, {"nodeId": "139805138538944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805138538384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138538944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805330824480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "139805138538496"}, {"nodeId": "139805138538720"}, {"nodeId": "139805138537824"}, {"nodeId": "139805138538608"}, {"nodeId": "139805481882144"}, {"nodeId": "A"}, {"nodeId": "139805138538832"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "array", "axis", "dtype", "out", "keepdims", "initial", "where"]}}, "139805138538496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138538720": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138537936"}]}}, "139805138537936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138537824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138538608": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138538832": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805330824928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "139805138539168"}, {"nodeId": "139805276997408"}, {"nodeId": "139805138539280"}, {"nodeId": "139805138540064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "array", "axis", "dtype", "out"]}}, "139805138539168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138539280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138540064": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805330825376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "139805138539952"}, {"nodeId": "139805138540624"}, {"nodeId": "139805276997408"}, {"nodeId": "139805138540736"}, {"nodeId": "139805138540176"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "array", "indices", "axis", "dtype", "out"]}}, "139805138539952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138540624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138540736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138540176": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138451840": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805330825824"}, {"nodeId": "139805330826272"}]}}, "139805330825824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "139805138541520"}, {"nodeId": "139805138541632"}, {"nodeId": "N"}, {"nodeId": "139805138540512"}, {"nodeId": "139805138541744"}, {"nodeId": "139805138541968"}, {"nodeId": "139805138539840"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138541856"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": [null, null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138541520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138541632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138540512": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138542192"}]}}, "139805138542192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138541744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138541968": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138539840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138541856": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330826272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "139805138542304"}, {"nodeId": "139805138543088"}, {"nodeId": "139805138542752"}, {"nodeId": "139805138543312"}, {"nodeId": "139805138542864"}, {"nodeId": "139805138543536"}, {"nodeId": "139805138543760"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138544096"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": [null, null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138542304": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138543088": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138542752": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805138542528"}]}}, "139805138542528": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805138543312": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138540400"}]}}, "139805138540400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138542864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138543536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138543760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138544096": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805150979072": {"type": "Concrete", "content": {"module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin1_Nout2", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100266816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100266368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100266144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100265920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100265696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100265472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100265248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "at", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100264800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100264352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100263232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100264576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100265024"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805201008000"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}], "bases": [{"nodeId": "139805150579520"}], "isAbstract": false}}, ".1.139805150979072": {"type": "TypeVar", "content": {"varName": "_NameType", "values": [], "upperBound": {"nodeId": "139805276669024"}, "def": "139805150979072", "variance": "INVARIANT"}}, ".2.139805150979072": {"type": "TypeVar", "content": {"varName": "_NTypes", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805150979072", "variance": "INVARIANT"}}, ".3.139805150979072": {"type": "TypeVar", "content": {"varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150979072", "variance": "INVARIANT"}}, "139805100266816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": ".1.139805150979072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100266368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": ".2.139805150979072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100266144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": ".3.139805150979072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100265920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100265696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100265472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100265248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100264800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100264352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100263232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100264576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100265024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201008000": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805330832096"}, {"nodeId": "139805330832544"}, {"nodeId": "139805330832992"}]}}, "139805330832096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}, {"nodeId": "139805138545216"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "139805138545664"}, {"nodeId": "139805138544768"}, {"nodeId": "139805138544992"}, {"nodeId": "139805138544656"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138545776"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, null, "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138545216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138545664": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138545440"}]}}, "139805138545440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138544768": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138544992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138544656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138545776": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330832544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}, {"nodeId": "139805138546336"}, {"nodeId": "139805138546672"}, {"nodeId": "139805138547456"}, {"nodeId": "0"}, {"nodeId": "139805138546896"}, {"nodeId": "139805138547568"}, {"nodeId": "139805138547792"}, {"nodeId": "139805138547904"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138548240"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138546336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138546672": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138547456": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138546896": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138547344"}]}}, "139805138547344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138547568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138547792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138547904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138548240": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330832992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}, {"nodeId": "139805150978016"}, {"nodeId": "139805138550144"}, {"nodeId": "139805138549696"}, {"nodeId": "0"}, {"nodeId": "139805138549808"}, {"nodeId": "139805138549360"}, {"nodeId": "139805138550032"}, {"nodeId": "139805138550256"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138550592"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138550144": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138549696": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138549808": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138548912"}]}}, "139805138548912": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138549360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138550032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138550256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138550592": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805150979424": {"type": "Concrete", "content": {"module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin2_Nout2", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100263680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100263456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100262560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100263008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100262336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100262112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100261888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "at", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100261664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100261440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100276000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100276224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100276448"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138544880"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}], "bases": [{"nodeId": "139805150579520"}], "isAbstract": false}}, ".1.139805150979424": {"type": "TypeVar", "content": {"varName": "_NameType", "values": [], "upperBound": {"nodeId": "139805276669024"}, "def": "139805150979424", "variance": "INVARIANT"}}, ".2.139805150979424": {"type": "TypeVar", "content": {"varName": "_NTypes", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805150979424", "variance": "INVARIANT"}}, ".3.139805150979424": {"type": "TypeVar", "content": {"varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150979424", "variance": "INVARIANT"}}, "139805100263680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": ".1.139805150979424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100263456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": ".2.139805150979424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100262560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": ".3.139805150979424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100263008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100262336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100262112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100261888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100261664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100261440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100276000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100276224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100276448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138544880": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805331084832"}, {"nodeId": "139805331085280"}]}}, "139805331084832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}, {"nodeId": "139805138584848"}, {"nodeId": "139805138584064"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "139805138584176"}, {"nodeId": "139805138584400"}, {"nodeId": "139805138583952"}, {"nodeId": "139805138584960"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138585408"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, null, null, "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138584848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138584064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138584176": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138585072"}]}}, "139805138585072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138584400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138583952": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138584960": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138585408": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805331085280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}, {"nodeId": "139805138549136"}, {"nodeId": "139805138586640"}, {"nodeId": "139805138586528"}, {"nodeId": "139805138586080"}, {"nodeId": "0"}, {"nodeId": "139805138587088"}, {"nodeId": "139805138587312"}, {"nodeId": "139805138587424"}, {"nodeId": "139805138587536"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138587872"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138549136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138586640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138586528": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138586080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138587088": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138586416"}]}}, "139805138586416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138587312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138587424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138587536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138587872": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805150979776": {"type": "Concrete", "content": {"module": "numpy._typing._ufunc", "simpleName": "_GUFunc_Nin2_Nout1", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100277120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099917376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099917600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099917824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099918048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099918272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099918496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099918720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099918944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099919168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099919392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "at", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099919616"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805200907424"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}], "bases": [{"nodeId": "139805150579520"}], "isAbstract": false}}, ".1.139805150979776": {"type": "TypeVar", "content": {"varName": "_NameType", "values": [], "upperBound": {"nodeId": "139805276669024"}, "def": "139805150979776", "variance": "INVARIANT"}}, ".2.139805150979776": {"type": "TypeVar", "content": {"varName": "_NTypes", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805150979776", "variance": "INVARIANT"}}, ".3.139805150979776": {"type": "TypeVar", "content": {"varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150979776", "variance": "INVARIANT"}}, "139805100277120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": ".1.139805150979776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099917376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": ".2.139805150979776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099917600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": ".3.139805150979776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099917824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099918048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099918272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099918496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099918720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099918944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099919168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099919392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099919616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200907424": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805331091104"}, {"nodeId": "139805331091552"}]}}, "139805331091104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}, {"nodeId": "139805138589664"}, {"nodeId": "139805138588880"}, {"nodeId": "N"}, {"nodeId": "139805138589440"}, {"nodeId": "139805138589328"}, {"nodeId": "139805138589216"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138589776"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": "0"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, "out", "casting", "order", "dtype", "subok", "signature", "extobj", "axes"]}}, "139805138589664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138588880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138589440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138589328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138589216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138589776": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805331091552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}, {"nodeId": "139805138591904"}, {"nodeId": "139805138591456"}, {"nodeId": "139805138591568"}, {"nodeId": "139805138591120"}, {"nodeId": "139805138591792"}, {"nodeId": "139805138592016"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138592352"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": "0"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, "out", "casting", "order", "dtype", "subok", "signature", "extobj", "axes"]}}, "139805138591904": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138591456": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138591568": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805138590000"}]}}, "139805138590000": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805138591120": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138591792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138592016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138592352": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805150981888": {"type": "Concrete", "content": {"module": "numpy.lib.arrayterator", "simpleName": "Arrayterator", "members": [{"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "buf_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171183824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481893056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481893056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481893056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805125129184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805125128288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buf_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380920480"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805209034336"}, "items": [{"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__array__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380921824"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380922272"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}], "bases": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}], "isAbstract": false}}, ".1.139805150981888": {"type": "TypeVar", "content": {"varName": "_Shape", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150981888", "variance": "INVARIANT"}}, ".2.139805150981888": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805150981888", "variance": "INVARIANT"}}, "139805171183824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805125129184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981888", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805125128288": {"type": "Function", "content": {"typeVars": [".-1.139805125128288"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805125128288"}]}]}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".-1.139805125128288"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805125128288": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805125128288", "variance": "INVARIANT"}}, "139805481887072": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444405760"}, "name": "__next__"}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242595744"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263677024"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444686336"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444686784"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242595968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242596416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242597088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242597312"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481887072"}]}], "isAbstract": true}}, ".1.139805481887072": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481887072", "variance": "COVARIANT"}}, ".2.139805481887072": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481887072", "variance": "CONTRAVARIANT"}}, ".3.139805481887072": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481887072", "variance": "COVARIANT"}}, "139805444405760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}], "returnType": {"nodeId": ".1.139805481887072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242595744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}, {"nodeId": ".2.139805481887072"}], "returnType": {"nodeId": ".1.139805481887072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805263677024": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805444406656"}, {"nodeId": "139805444685888"}]}}, "139805444406656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}, {"nodeId": "0"}, {"nodeId": "139805263689792"}, {"nodeId": "139805263689904"}], "returnType": {"nodeId": ".1.139805481887072"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805263689792": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "139805481881792"}]}}, "139805263689904": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805444685888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}, {"nodeId": "139805276675712"}, {"nodeId": "N"}, {"nodeId": "139805263690016"}], "returnType": {"nodeId": ".1.139805481887072"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805263690016": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805444686336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444686784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805242595968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}], "returnType": {"nodeId": "139805272032000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242596416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}], "returnType": {"nodeId": "139805272037632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242597088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242597312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}], "returnType": {"nodeId": "139805263690464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263690464": {"type": "Union", "content": {"items": [{"nodeId": "139805481887072", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805380920480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981888", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}, {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}, {"nodeId": "139805205693488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "var", "buf_size"]}}, "139805205693488": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805209034336": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805380920928"}, {"nodeId": "139805380921376"}]}}, "139805380920928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981888", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150981888"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype"]}}, "139805380921376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981888", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}, {"nodeId": "139805205694832"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dtype"]}}, "139805205694832": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805380921824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981888", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}, {"nodeId": "139805205694160"}], "returnType": {"nodeId": "139805150981888", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150981888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805205694160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805154604224"}}}, "139805154604224": {"type": "Union", "content": {"items": [{"nodeId": "139805276675360"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805154603888"}]}]}}, "139805154603888": {"type": "Union", "content": {"items": [{"nodeId": "139805276675360"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276670432"}]}}, "139805380922272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981888", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150981888"}]}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805155354656": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_MemMapIOProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464837504"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473931328"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473931776"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473932224"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473932672"}, "name": "write"}}, {"kind": "Variable", "content": {"name": "read", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117110464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["fileno", "flush", "read", "seek", "tell", "write"]}}, "139805464837504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354656"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805473931328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354656"}], "returnType": {"nodeId": "139805276997408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805473931776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354656"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805473932224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354656"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805473932672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354656"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805117110464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354656"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150580224": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ModuleDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276875488"}], "isAbstract": false}}, "139805276875488": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276874784": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276677120": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276675712"}], "isAbstract": false}}, "139805150580576": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "VisibleDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276875136"}], "isAbstract": false}}, "139805276875136": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805150580928": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ComplexWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276876192"}], "isAbstract": false}}, "139805276876192": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805150581280": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "RankWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276875136"}], "isAbstract": false}}, "139805150581632": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "TooHardError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276681696"}], "isAbstract": false}}, "139805276681696": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805150581984": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "AxisError", "members": [{"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805196524720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201278096"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141876544"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276683456"}, {"nodeId": "139805276865632"}], "isAbstract": false}}, "139805196524720": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805201278096": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805141876544": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805432103424"}, {"nodeId": "139805432103872"}]}}, "139805432103424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150581984"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "ndim", "msg_prefix"]}}, "139805432103872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150581984"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805142009216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "ndim", "msg_prefix"]}}, "139805142009216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805276683456": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276865632": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276680288"}], "isAbstract": false}}, "139805276680288": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805150582336": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "errstate", "members": [{"kind": "Variable", "content": {"name": "call", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805150582336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150648400"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "call", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "divide", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "over", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "under", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "invalid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432104320"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432104768"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432105216"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139805150582336"}], "bases": [{"nodeId": "139805267653408"}], "isAbstract": false}}, ".1.139805150582336": {"type": "TypeVar", "content": {"varName": "_CallType", "values": [], "upperBound": {"nodeId": "139805196522816"}, "def": "139805150582336", "variance": "INVARIANT"}}, "139805196522816": {"type": "Union", "content": {"items": [{"nodeId": "139805196525280"}, {"nodeId": "139805155355008", "args": [{"nodeId": "139805276669024"}]}]}}, "139805196525280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805213377248"}}}, "139805213377248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805150648400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805432104320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150582336", "args": [{"nodeId": ".1.139805150582336"}]}, {"nodeId": ".1.139805150582336"}, {"nodeId": "139805142009440"}, {"nodeId": "139805142009664"}, {"nodeId": "139805142009888"}, {"nodeId": "139805142010112"}, {"nodeId": "139805142010336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "call", "all", "divide", "over", "under", "invalid"]}}, "139805142009440": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142009328"}]}}, "139805142009328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155301792"}}}, "139805155301792": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805142009664": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142009552"}]}}, "139805142009552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155301792"}}}, "139805142009888": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142009776"}]}}, "139805142009776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155301792"}}}, "139805142010112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142010000"}]}}, "139805142010000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155301792"}}}, "139805142010336": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142010224"}]}}, "139805142010224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155301792"}}}, "139805432104768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150582336", "args": [{"nodeId": ".1.139805150582336"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805432105216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150582336", "args": [{"nodeId": ".1.139805150582336"}]}, {"nodeId": "139805142010448"}, {"nodeId": "139805142010560"}, {"nodeId": "139805142010672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805142010448": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805142010560": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276675712"}]}}, "139805142010672": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272037280"}]}}, "139805267653408": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360512736"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805360512736": {"type": "Function", "content": {"typeVars": [".-1.139805360512736"], "argTypes": [{"nodeId": "139805267653408"}, {"nodeId": ".-1.139805360512736"}], "returnType": {"nodeId": ".-1.139805360512736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.139805360512736": {"type": "TypeVar", "content": {"varName": "_F", "values": [], "upperBound": {"nodeId": "139805276239040"}, "def": "139805360512736", "variance": "INVARIANT"}}, "139805276239040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805150984000": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ndenumerate", "members": [{"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150983648", "args": [{"nodeId": "0"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142007984"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171835264"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432110592"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.139805150984000"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805150984000": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805150984000", "variance": "INVARIANT"}}, "139805142007984": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805432107008"}, {"nodeId": "139805432107456"}, {"nodeId": "139805432107904"}, {"nodeId": "139805432108352"}, {"nodeId": "139805432108800"}, {"nodeId": "139805432109248"}, {"nodeId": "139805432109696"}]}}, "139805432107008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805150984000", "args": [{"nodeId": ".1.139805150984000"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805432107456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142011008"}], "returnType": {"nodeId": "139805150984000", "args": [{"nodeId": "139805150579168"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805142011008": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805276669024"}]}]}}, "139805432107904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142011120"}], "returnType": {"nodeId": "139805150984000", "args": [{"nodeId": "139805150578816"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805142011120": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805276669376"}]}]}}, "139805432108352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142011232"}], "returnType": {"nodeId": "139805150984000", "args": [{"nodeId": "139805155357824"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805142011232": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805481882144"}]}]}}, "139805432108800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142011344"}], "returnType": {"nodeId": "139805150984000", "args": [{"nodeId": "139805142011456"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805142011344": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805481893056"}]}]}}, "139805142011456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805432109248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142011568"}], "returnType": {"nodeId": "139805150984000", "args": [{"nodeId": "139805142011680"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805142011568": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805481893408"}]}]}}, "139805142011680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805150263360"}]}}}, "139805432109696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142011792"}], "returnType": {"nodeId": "139805150984000", "args": [{"nodeId": "139805142011904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805142011792": {"type": "Union", "content": {"items": [{"nodeId": "139805276667968"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805276667968"}]}]}}, "139805142011904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805150264368"}, {"nodeId": "139805150265152"}]}}}, "139805171835264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984000", "args": [{"nodeId": ".1.139805150984000"}]}], "returnType": {"nodeId": "139805142012240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142012240": {"type": "Tuple", "content": {"items": [{"nodeId": "139805142012016"}, {"nodeId": ".1.139805150984000"}]}}, "139805142012016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805432110592": {"type": "Function", "content": {"typeVars": [".-1.139805432110592"], "argTypes": [{"nodeId": ".-1.139805432110592"}], "returnType": {"nodeId": ".-1.139805432110592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805432110592": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805432110592", "variance": "INVARIANT"}}, "139805150582688": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ndindex", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142009104"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432111936"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432112384"}, "name": "__next__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805142009104": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805432111040"}, {"nodeId": "139805432111488"}]}}, "139805432111040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150582688"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276997408"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805432111488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150582688"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "shape"]}}, "139805432111936": {"type": "Function", "content": {"typeVars": [".-1.139805432111936"], "argTypes": [{"nodeId": ".-1.139805432111936"}], "returnType": {"nodeId": ".-1.139805432111936"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805432111936": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805432111936", "variance": "INVARIANT"}}, "139805432112384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150582688"}], "returnType": {"nodeId": "139805142012464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142012464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805150583040": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "DataSource", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "destpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432112832"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432113280"}, "name": "__del__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432113728"}, "name": "abspath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432114176"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432114624"}, "name": "open"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805432112832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583040"}, {"nodeId": "139805142012576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "destpath"]}}, "139805142012576": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}]}}, "139805432113280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805432113728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583040"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805432114176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583040"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805432114624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583040"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805142012688"}, {"nodeId": "139805142012800"}], "returnType": {"nodeId": "139805277000224", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "path", "mode", "encoding", "newline"]}}, "139805142012688": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805142012800": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805277000224": {"type": "Concrete", "content": {"module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242960448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242961568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242962464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242963136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242963808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242964480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242965152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243080768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243081440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243082336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243083008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243083904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243084800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243085472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243086144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243086816"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263879008"}, "items": [{"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "write"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263879344"}, "items": [{"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "writelines"}}, {"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243090176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243090848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243091744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243092864"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805277000224"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277000224"}]}], "isAbstract": true}}, ".1.139805277000224": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277000224", "variance": "INVARIANT"}}, "139805242960448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242961568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242962464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242963136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242963808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242964480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242965152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243080768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805277000224"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805243081440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243082336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805277000224"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805243083008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805277000224"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805243083904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805243084800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243085472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243086144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": "139805263879680"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805263879680": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805243086816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263879008": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452415296"}, {"nodeId": "139805276232992"}, {"nodeId": "139805452416192"}]}}, "139805452415296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276232992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805452416192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": ".1.139805277000224"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805263879344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452416640"}, {"nodeId": "139805276231648"}, {"nodeId": "139805452417536"}]}}, "139805452416640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276231648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805277011488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805452417536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805243090176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": ".1.139805277000224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243090848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277000224"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805243091744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805243092864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": "139805263880016"}, {"nodeId": "139805263880128"}, {"nodeId": "139805263880240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805263880016": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805263880128": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805263880240": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805150583392": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "broadcast", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432115072"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "index", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108525696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iters", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108526368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nd", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108526592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108526816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "numiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108527040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108527264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108527488"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432118656"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427171392"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427171840"}, "name": "reset"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805432115072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142013024"}], "returnType": {"nodeId": "139805150583392"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "139805142013024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805108525696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108526368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805150983648", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108526592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108526816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108527040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108527264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805142012352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142012352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805108527488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805432118656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427171392": {"type": "Function", "content": {"typeVars": [".-1.139805427171392"], "argTypes": [{"nodeId": ".-1.139805427171392"}], "returnType": {"nodeId": ".-1.139805427171392"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805427171392": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805427171392", "variance": "INVARIANT"}}, "139805427171840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150583744": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "busdaycalendar", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weekmask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "holidays", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427172288"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "weekmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108528160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "holidays", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108525024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805427172288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142013472"}, {"nodeId": "139805142013696"}], "returnType": {"nodeId": "139805150583744"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "weekmask", "holidays"]}}, "139805142013472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142013696": {"type": "Union", "content": {"items": [{"nodeId": "139805142013584"}, {"nodeId": "139805167798752"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805167798752"}]}]}}, "139805142013584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805167798752": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "date", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167798752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167798752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799456"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356011616"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162990144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "today", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162991488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromordinal", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162991712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162991936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromisocalendar", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162992608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "year", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805162992160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "month", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805162992832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "day", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805162993056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360210208"}, "name": "ctime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360211104"}, "name": "strftime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360211552"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360212000"}, "name": "isoformat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360212448"}, "name": "timetuple"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360212896"}, "name": "toordinal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360213344"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360213792"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360214240"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360214688"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360215136"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360215584"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360216032"}, "name": "__radd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805162873104"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360220064"}, "name": "weekday"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360220512"}, "name": "isoweekday"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360220960"}, "name": "isocalendar"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805356011616": {"type": "Function", "content": {"typeVars": [".0.139805356011616"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".0.139805356011616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "month", "day"]}}, ".0.139805356011616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805356011616", "variance": "INVARIANT"}}, "139805162990144": {"type": "Function", "content": {"typeVars": [".0.139805162990144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": ".0.139805162990144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805162990144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805162990144", "variance": "INVARIANT"}}, "139805162991488": {"type": "Function", "content": {"typeVars": [".0.139805162991488"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805162991488"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805162991488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805162991488", "variance": "INVARIANT"}}, "139805162991712": {"type": "Function", "content": {"typeVars": [".0.139805162991712"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805162991712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805162991712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805162991712", "variance": "INVARIANT"}}, "139805162991936": {"type": "Function", "content": {"typeVars": [".0.139805162991936"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805162991936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805162991936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805162991936", "variance": "INVARIANT"}}, "139805162992608": {"type": "Function", "content": {"typeVars": [".0.139805162992608"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805162992608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "week", "day"]}}, ".0.139805162992608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805162992608", "variance": "INVARIANT"}}, "139805162992160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162992832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162993056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360210208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360211104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805360211552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805360212000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360212448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805162874784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162874784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184099712"}}}, "139805184099712": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805360212896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360213344": {"type": "Function", "content": {"typeVars": [".0.139805360213344"], "argTypes": [{"nodeId": ".0.139805360213344"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".0.139805360213344"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "year", "month", "day"]}}, ".0.139805360213344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805360213344", "variance": "INVARIANT"}}, "139805360213792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}, {"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360214240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}, {"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360214688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}, {"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360215136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}, {"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360215584": {"type": "Function", "content": {"typeVars": [".0.139805360215584"], "argTypes": [{"nodeId": ".0.139805360215584"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": ".0.139805360215584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805360215584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805360215584", "variance": "INVARIANT"}}, "139805360216032": {"type": "Function", "content": {"typeVars": [".0.139805360216032"], "argTypes": [{"nodeId": ".0.139805360216032"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": ".0.139805360216032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805360216032": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805360216032", "variance": "INVARIANT"}}, "139805162873104": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805360216480"}, {"nodeId": "139805360216928"}, {"nodeId": "139805360217376"}]}}, "139805360216480": {"type": "Function", "content": {"typeVars": [".0.139805360216480"], "argTypes": [{"nodeId": ".0.139805360216480"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": ".0.139805360216480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805360216480": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805360216480", "variance": "INVARIANT"}}, "139805360216928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}, {"nodeId": "139805167799808"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805167799808": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "datetime", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799808"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360750176"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163307520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163308416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163308640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163308864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163309088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163309312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163309984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcfromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163310432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "now", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163312000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcnow", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163311552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "combine", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163312224"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360609696"}, "name": "timestamp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360610144"}, "name": "utctimetuple"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360610592"}, "name": "date"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360611040"}, "name": "time"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360611488"}, "name": "timetz"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360611936"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tz", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360612384"}, "name": "astimezone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360613280"}, "name": "isoformat"}}, {"kind": "Variable", "content": {"name": "strptime", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163314016"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360614176"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360614624"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360615072"}, "name": "dst"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360615520"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360615968"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360616416"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360616864"}, "name": "__gt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805162875792"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}], "typeVars": [], "bases": [{"nodeId": "139805167798752"}], "isAbstract": false}}, "139805360750176": {"type": "Function", "content": {"typeVars": [".0.139805360750176"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805162876240"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805360750176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, "139805162876240": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, "139805167797696": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "tzinfo", "members": [{"kind": "Variable", "content": {"name": "tzname", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162985664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcoffset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162986112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dst", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162986336"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356009376"}, "name": "fromutc"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": true}}, "139805162985664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797696"}, {"nodeId": "139805162873328"}], "returnType": {"nodeId": "139805162873440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805162873328": {"type": "Union", "content": {"items": [{"nodeId": "139805167799808"}, {"nodeId": "N"}]}}, "139805162873440": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805162986112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797696"}, {"nodeId": "139805162873552"}], "returnType": {"nodeId": "139805162873664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805162873552": {"type": "Union", "content": {"items": [{"nodeId": "139805167799808"}, {"nodeId": "N"}]}}, "139805162873664": {"type": "Union", "content": {"items": [{"nodeId": "139805167799456"}, {"nodeId": "N"}]}}, "139805162986336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797696"}, {"nodeId": "139805162873776"}], "returnType": {"nodeId": "139805162873888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805162873776": {"type": "Union", "content": {"items": [{"nodeId": "139805167799808"}, {"nodeId": "N"}]}}, "139805162873888": {"type": "Union", "content": {"items": [{"nodeId": "139805167799456"}, {"nodeId": "N"}]}}, "139805356009376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797696"}, {"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805167799808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.139805360750176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805360750176", "variance": "INVARIANT"}}, "139805163307520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163308416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163308640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163308864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163309088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805162876352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162876352": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, "139805163309312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163309984": {"type": "Function", "content": {"typeVars": [".0.139805163309984"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893408"}, {"nodeId": "139805162876464"}], "returnType": {"nodeId": ".0.139805163309984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "tz"]}}, "139805162876464": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, ".0.139805163309984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805163309984", "variance": "INVARIANT"}}, "139805163310432": {"type": "Function", "content": {"typeVars": [".0.139805163310432"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": ".0.139805163310432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805163310432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805163310432", "variance": "INVARIANT"}}, "139805163312000": {"type": "Function", "content": {"typeVars": [".0.139805163312000"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805162876576"}], "returnType": {"nodeId": ".0.139805163312000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "tz"]}}, "139805162876576": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, ".0.139805163312000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805163312000", "variance": "INVARIANT"}}, "139805163311552": {"type": "Function", "content": {"typeVars": [".0.139805163311552"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805163311552"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805163311552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805163311552", "variance": "INVARIANT"}}, "139805163312224": {"type": "Function", "content": {"typeVars": [".0.139805163312224"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805167798752"}, {"nodeId": "139805167799104"}, {"nodeId": "139805162876688"}], "returnType": {"nodeId": ".0.139805163312224"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "date", "time", "tzinfo"]}}, "139805167799104": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "time", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799456"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360221856"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163193056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163198432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163198880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163199104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163199328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163199552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360224992"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360225440"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360225888"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360734496"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360734944"}, "name": "isoformat"}}, {"kind": "Variable", "content": {"name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163199776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360736288"}, "name": "strftime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360736736"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360737184"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360737632"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360738080"}, "name": "dst"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360738528"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805360221856": {"type": "Function", "content": {"typeVars": [".0.139805360221856"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805162875120"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805360221856"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, "139805162875120": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, ".0.139805360221856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799104"}, "def": "139805360221856", "variance": "INVARIANT"}}, "139805163193056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163198432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163198880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163199104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163199328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805162875232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162875232": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, "139805163199552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360224992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}, {"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360225440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}, {"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360225888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}, {"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360734496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}, {"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360734944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timespec"]}}, "139805163199776": {"type": "Function", "content": {"typeVars": [".0.139805163199776"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805163199776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805163199776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799104"}, "def": "139805163199776", "variance": "INVARIANT"}}, "139805360736288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805360736736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805360737184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805162875344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162875344": {"type": "Union", "content": {"items": [{"nodeId": "139805167799456"}, {"nodeId": "N"}]}}, "139805360737632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805162875456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162875456": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805360738080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805162875568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162875568": {"type": "Union", "content": {"items": [{"nodeId": "139805167799456"}, {"nodeId": "N"}]}}, "139805360738528": {"type": "Function", "content": {"typeVars": [".0.139805360738528"], "argTypes": [{"nodeId": ".0.139805360738528"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805162875680"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805360738528"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, ".0.139805360738528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799104"}, "def": "139805360738528", "variance": "INVARIANT"}}, "139805162875680": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, "139805162876688": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, ".0.139805163312224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805163312224", "variance": "INVARIANT"}}, "139805360609696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360610144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805162876800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162876800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184099712"}}}, "139805360610592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805167798752"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360611040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805167799104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360611488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805167799104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360611936": {"type": "Function", "content": {"typeVars": [".0.139805360611936"], "argTypes": [{"nodeId": ".0.139805360611936"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805162876912"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805360611936"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, ".0.139805360611936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805360611936", "variance": "INVARIANT"}}, "139805162876912": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, "139805360612384": {"type": "Function", "content": {"typeVars": [".0.139805360612384"], "argTypes": [{"nodeId": ".0.139805360612384"}, {"nodeId": "139805162877024"}], "returnType": {"nodeId": ".0.139805360612384"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tz"]}}, ".0.139805360612384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805360612384", "variance": "INVARIANT"}}, "139805162877024": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, "139805360613280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "timespec"]}}, "139805163314016": {"type": "Function", "content": {"typeVars": [".0.139805163314016"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805163314016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".0.139805163314016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805163314016", "variance": "INVARIANT"}}, "139805360614176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805162877136"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162877136": {"type": "Union", "content": {"items": [{"nodeId": "139805167799456"}, {"nodeId": "N"}]}}, "139805360614624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805162877248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162877248": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805360615072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805162877360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162877360": {"type": "Union", "content": {"items": [{"nodeId": "139805167799456"}, {"nodeId": "N"}]}}, "139805360615520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}, {"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360615968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}, {"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360616416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}, {"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360616864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}, {"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805162875792": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805360617312"}, {"nodeId": "139805360617760"}]}}, "139805360617312": {"type": "Function", "content": {"typeVars": [".0.139805360617312"], "argTypes": [{"nodeId": ".0.139805360617312"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": ".0.139805360617312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805360617312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805360617312", "variance": "INVARIANT"}}, "139805360617760": {"type": "Function", "content": {"typeVars": [".-1.139805360617760"], "argTypes": [{"nodeId": ".-1.139805360617760"}, {"nodeId": ".-1.139805360617760"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805360617760": {"type": "TypeVar", "content": {"varName": "_D", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805360617760", "variance": "INVARIANT"}}, "139805360217376": {"type": "Function", "content": {"typeVars": [".-1.139805360217376"], "argTypes": [{"nodeId": ".-1.139805360217376"}, {"nodeId": ".-1.139805360217376"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805360217376": {"type": "TypeVar", "content": {"varName": "_D", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805360217376", "variance": "INVARIANT"}}, "139805360220064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360220512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360220960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805162875008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162875008": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805162871536"}}}, "139805162871536": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805108528160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583744"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108525024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583744"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150984352": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "finfo", "members": [{"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150984352"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bits", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "eps", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805150984352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epsneg", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805150984352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "machep", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805150984352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maxexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805150984352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "negep", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nmant", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "precision", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805150984352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "smallest_subnormal", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805150984352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "smallest_normal", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108529952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tiny", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108531072"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142010784"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}], "typeVars": [{"nodeId": ".1.139805150984352"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805150984352": {"type": "TypeVar", "content": {"varName": "_FloatType", "values": [], "upperBound": {"nodeId": "139805150577056", "args": [{"nodeId": "A"}]}, "def": "139805150984352", "variance": "INVARIANT"}}, "139805108529952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984352", "args": [{"nodeId": ".1.139805150984352"}]}], "returnType": {"nodeId": ".1.139805150984352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108531072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984352", "args": [{"nodeId": ".1.139805150984352"}]}], "returnType": {"nodeId": ".1.139805150984352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142010784": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427174528"}, {"nodeId": "139805427174976"}, {"nodeId": "139805427175424"}]}}, "139805427174528": {"type": "Function", "content": {"typeVars": [".-1.139805427174528"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142014256"}], "returnType": {"nodeId": "139805150984352", "args": [{"nodeId": "139805150577056", "args": [{"nodeId": ".-1.139805427174528"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "139805142014256": {"type": "Union", "content": {"items": [{"nodeId": "139805150576704", "args": [{"nodeId": ".-1.139805427174528"}]}, {"nodeId": "0"}]}}, ".-1.139805427174528": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805427174528", "variance": "INVARIANT"}}, "139805427174976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142014368"}], "returnType": {"nodeId": "139805150984352", "args": [{"nodeId": "139805142014480"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "139805142014368": {"type": "Union", "content": {"items": [{"nodeId": "139805276667968"}, {"nodeId": "139805481893408"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805142014480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805150263360"}]}}}, "139805427175424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805150984352", "args": [{"nodeId": "139805150577056", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "139805150584096": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "iinfo", "members": [{"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150584096"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bits", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108531744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108532192"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142013808"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}], "typeVars": [{"nodeId": ".1.139805150584096"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805150584096": {"type": "TypeVar", "content": {"varName": "_IntType", "values": [], "upperBound": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "def": "139805150584096", "variance": "INVARIANT"}}, "139805108531744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584096", "args": [{"nodeId": ".1.139805150584096"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108532192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584096", "args": [{"nodeId": ".1.139805150584096"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142013808": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427176768"}, {"nodeId": "139805427177216"}, {"nodeId": "139805427177664"}]}}, "139805427176768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142014928"}], "returnType": {"nodeId": "139805150584096", "args": [{"nodeId": ".1.139805150584096"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "139805142014928": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805150584096"}, {"nodeId": "0"}]}}, "139805427177216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142015040"}], "returnType": {"nodeId": "139805150584096", "args": [{"nodeId": "139805142015152"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "139805142015040": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "0"}]}}, "139805142015152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805427177664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805150584096", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "139805150584448": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "format_parser", "members": [{"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "formats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "titles", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "aligned", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427178112"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805427178112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584448"}, {"nodeId": "139805142015376"}, {"nodeId": "139805142015488"}, {"nodeId": "139805142015600"}, {"nodeId": "139805481882144"}, {"nodeId": "139805142015824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "formats", "names", "titles", "aligned", "byteorder"]}}, "139805142015376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805142015488": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805142015600": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805142015824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142015712"}]}}, "139805142015712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253616"}}}, "139805150584800": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "recarray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142014032"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427179456"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427179904"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427180352"}, "name": "__setattr__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142016832"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142019072"}, "items": [{"kind": "Variable", "content": {"name": "field", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "field", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "field"}}], "typeVars": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}], "bases": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}], "isAbstract": false}}, ".1.139805150584800": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150584800", "variance": "INVARIANT"}}, ".2.139805150584800": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805150584800", "variance": "COVARIANT"}}, "139805142014032": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427178560"}, {"nodeId": "139805427179008"}]}}, "139805427178560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142016720"}, {"nodeId": "N"}, {"nodeId": "139805142016048"}, {"nodeId": "139805276997408"}, {"nodeId": "139805142016272"}, {"nodeId": "139805142017056"}, {"nodeId": "139805142016160"}, {"nodeId": "139805142016384"}, {"nodeId": "139805142016944"}, {"nodeId": "139805481882144"}, {"nodeId": "139805142016496"}], "returnType": {"nodeId": "139805150584800", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150585152"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["subtype", "shape", "dtype", "buf", "offset", "strides", "formats", "names", "titles", "byteorder", "aligned", "order"]}}, "139805142016720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142016048": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142017280"}]}}, "139805142017280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805196974928"}}}, "139805142016272": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142016608"}]}}, "139805142016608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142017056": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805142016160": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805142016384": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805142016944": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142015936"}]}}, "139805142015936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253616"}}}, "139805142016496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805150585152": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "record", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427183936"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427184384"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427184832"}, "name": "pprint"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142020752"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805150578112"}], "isAbstract": false}}, "139805427183936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585152"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427184384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585152"}, {"nodeId": "139805276669024"}, {"nodeId": "139805142020640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}}, "139805142020640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427184832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585152"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142020752": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427185280"}, {"nodeId": "139805427185728"}]}}, "139805427185280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585152"}, {"nodeId": "139805142021424"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142021424": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276997408"}]}}, "139805427185728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585152"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805150585152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427179008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142017616"}, {"nodeId": "139805142017728"}, {"nodeId": "139805142014704"}, {"nodeId": "139805276997408"}, {"nodeId": "139805142017840"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805142017504"}], "returnType": {"nodeId": "139805150584800", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "shape", "dtype", "buf", "offset", "strides", "formats", "names", "titles", "byteorder", "aligned", "order"]}}, "139805142017616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142017728": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805142014704": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142018064"}]}}, "139805142018064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805196974928"}}}, "139805142017840": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142017392"}]}}, "139805142017392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142017504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805427179456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805427179904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427180352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805142018400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}}, "139805142018400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142016832": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427180800"}, {"nodeId": "139805171826976"}, {"nodeId": "139805427181696"}, {"nodeId": "139805427182144"}, {"nodeId": "139805427182592"}]}}, "139805427180800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805142017952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142017952": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805142018736"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805142019632"}]}]}}, "139805142018736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142019632": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805142018176"}]}}, "139805142018176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805171826976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}]}, {"nodeId": "139805142019744"}], "returnType": {"nodeId": "139805150584800", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150584800"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142019744": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805276997408"}, {"nodeId": "139805142018512"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805142019184"}]}]}}, "139805142018512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142019184": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805142019856"}, {"nodeId": "139805276997408"}]}}, "139805142019856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427181696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805142020416"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150584800"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142020416": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805276997408"}, {"nodeId": "139805142020304"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805142020080"}]}]}}, "139805142020304": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142020080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805142018960"}, {"nodeId": "139805276997408"}]}}, "139805142018960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427182144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427182592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150585152"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142019072": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427183040"}, {"nodeId": "139805427183488"}]}}, "139805427183040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805142020976"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "attr", "val"]}}, "139805142020976": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805427183488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805142021200"}, {"nodeId": "139805142021312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}}, "139805142021200": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805142021312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805150585504": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "nditer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "op_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "op_dtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "casting", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "op_axes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "itershape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffersize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427186176"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427186624"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427187072"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427368000"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427368448"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427368896"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427369344"}, "name": "__copy__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142021648"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427370688"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427371136"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427371584"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427372032"}, "name": "debug_print"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427372480"}, "name": "enable_external_loop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427372928"}, "name": "iternext"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427373376"}, "name": "remove_axis"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427373824"}, "name": "remove_multi_index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427374272"}, "name": "reset"}}, {"kind": "Variable", "content": {"name": "dtypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108718048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finished", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108718496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_delayed_bufalloc", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108718720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_index", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108718944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_multi_index", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108719168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108719392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterationneedsapi", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108719616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108719840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterrange", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108720064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itersize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108720288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itviews", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108720512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "multi_index", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108720736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108720960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nop", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108721184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "operands", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108721408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108721632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108721856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805427186176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142022208"}, {"nodeId": "139805142022432"}, {"nodeId": "139805142022656"}, {"nodeId": "139805142022992"}, {"nodeId": "139805142023104"}, {"nodeId": "139805142023216"}, {"nodeId": "139805142023328"}, {"nodeId": "139805142023552"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "139805150585504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "op", "flags", "op_flags", "op_dtypes", "order", "casting", "op_axes", "itershape", "buffersize"]}}, "139805142022208": {"type": "Union", "content": {"items": [{"nodeId": "139805142021984"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805142022096"}]}]}}, "139805142021984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142022096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142022432": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805142022320"}]}]}}, "139805142022320": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150652544"}}}, "139805150652544": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805142022656": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805142022544"}]}]}]}}, "139805142022544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150654448"}}}, "139805150654448": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805142022992": {"type": "Union", "content": {"items": [{"nodeId": "139805142022768"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805142022880"}]}]}}, "139805142022768": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805142022880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805142023104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805142023216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805142023328": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276997408"}]}]}]}}, "139805142023552": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142023440"}]}}, "139805142023440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805427186624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805150585504"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805427187072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}, {"nodeId": "139805142021760"}, {"nodeId": "139805142023776"}, {"nodeId": "139805142023888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805142021760": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805142023776": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276675712"}]}}, "139805142023888": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272037280"}]}}, "139805427368000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805150585504"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805427368448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427368896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805427369344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805150585504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142021648": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427369792"}, {"nodeId": "139805427370240"}]}}, "139805427369792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427370240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427370688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}, {"nodeId": "139805142139616"}, {"nodeId": "139805142139728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805142139616": {"type": "Union", "content": {"items": [{"nodeId": "139805276670432"}, {"nodeId": "139805276997408"}]}}, "139805142139728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427371136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427371584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805150585504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427372032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427372480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427372928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427373376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427373824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427374272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108718048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108718496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108718720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108718944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108719168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108719392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108719616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108719840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108720064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108720288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108720512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108720736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108720960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108721184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108721408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108721632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108721856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150585856": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "memmap", "members": [{"kind": "Variable", "content": {"name": "__array_priority__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201135680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141777568"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427383680"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427499072"}, "name": "__array_wrap__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427499520"}, "name": "flush"}}], "typeVars": [{"nodeId": ".1.139805150585856"}, {"nodeId": ".2.139805150585856"}], "bases": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150585856"}, {"nodeId": ".2.139805150585856"}]}], "isAbstract": false}}, ".1.139805150585856": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150585856", "variance": "INVARIANT"}}, ".2.139805150585856": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805150585856", "variance": "COVARIANT"}}, "139805201135680": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805141777568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427382336"}, {"nodeId": "139805427382784"}, {"nodeId": "139805427383232"}]}}, "139805427382336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142140736"}, {"nodeId": "0"}, {"nodeId": "139805142140848"}, {"nodeId": "139805481893056"}, {"nodeId": "139805142140960"}, {"nodeId": "139805142141072"}], "returnType": {"nodeId": "139805150585856", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805142141296"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "filename", "dtype", "mode", "offset", "shape", "order"]}}, "139805142140736": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805155354656"}]}}, "139805142140848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150654784"}}}, "139805150654784": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805142140960": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}]}}, "139805142141072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805142141296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805427382784": {"type": "Function", "content": {"typeVars": [".-1.139805427382784"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142141408"}, {"nodeId": "0"}, {"nodeId": "139805142141632"}, {"nodeId": "139805481893056"}, {"nodeId": "139805142141744"}, {"nodeId": "139805142141856"}], "returnType": {"nodeId": "139805150585856", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805427382784"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "filename", "dtype", "mode", "offset", "shape", "order"]}}, "139805142141408": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805155354656"}]}}, "139805142141632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150654784"}}}, "139805142141744": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}]}}, "139805142141856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, ".-1.139805427382784": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805427382784", "variance": "INVARIANT"}}, "139805427383232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142142080"}, {"nodeId": "139805142142192"}, {"nodeId": "139805142142304"}, {"nodeId": "139805481893056"}, {"nodeId": "139805142142416"}, {"nodeId": "139805142142528"}], "returnType": {"nodeId": "139805150585856", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "filename", "dtype", "mode", "offset", "shape", "order"]}}, "139805142142080": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805155354656"}]}}, "139805142142192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805142142304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150654784"}}}, "139805142142416": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}]}}, "139805142142528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805427383680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585856", "args": [{"nodeId": ".1.139805150585856"}, {"nodeId": ".2.139805150585856"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805427499072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585856", "args": [{"nodeId": ".1.139805150585856"}, {"nodeId": ".2.139805150585856"}]}, {"nodeId": "139805150585856", "args": [{"nodeId": ".1.139805150585856"}, {"nodeId": ".2.139805150585856"}]}, {"nodeId": "139805142142976"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "array", "context"]}}, "139805142142976": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142144208"}]}}, "139805142144208": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150579520"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481893056"}]}}, "139805427499520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585856", "args": [{"nodeId": ".1.139805150585856"}, {"nodeId": ".2.139805150585856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150586208": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "vectorize", "members": [{"kind": "Variable", "content": {"name": "pyfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163617664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cache", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201132992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "otypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201133216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "excluded", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003040", "args": [{"nodeId": "139805150655008"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150650080"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pyfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "otypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excluded", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cache", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427499968"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427500416"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805163617664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805201132992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805201133216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805150655008": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805150650080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805427499968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586208"}, {"nodeId": "139805171717216"}, {"nodeId": "139805142143312"}, {"nodeId": "139805142142864"}, {"nodeId": "139805142143424"}, {"nodeId": "139805481882144"}, {"nodeId": "139805142144096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "pyfunc", "otypes", "doc", "excluded", "cache", "signature"]}}, "139805171717216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805142143312": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805142143984"}]}]}}, "139805142143984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805142142864": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805142143424": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805142143872"}]}]}}, "139805142143872": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805142144096": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805427500416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586208"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805150586560": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "poly1d", "members": [{"kind": "Variable", "content": {"name": "variable", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108726336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "order", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108726784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "o", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108727008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "roots", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108727232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "r", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108727456"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142139840"}, "items": [{"kind": "Variable", "content": {"name": "coeffs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108727680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "coeffs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "coeffs"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142145216"}, "items": [{"kind": "Variable", "content": {"name": "c", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108727904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "c"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142144544"}, "items": [{"kind": "Variable", "content": {"name": "coef", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108728128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "coef", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "coef"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142145552"}, "items": [{"kind": "Variable", "content": {"name": "coefficients", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108728352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "coefficients", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "coefficients"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142146224"}, "items": [{"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__array__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142146784"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "c_or_r", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "r", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "variable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427508928"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427509376"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427509824"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427510272"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427510720"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427511168"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427511616"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427512064"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427512512"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427512960"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427513408"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427513856"}, "name": "__div__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427514304"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427514752"}, "name": "__rdiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427646528"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427646976"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427647424"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427647872"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427648320"}, "name": "deriv"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427648768"}, "name": "integ"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805108726336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108726784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108727008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108727232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108727456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142139840": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427503104"}]}}, "139805427503104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108727680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142145216": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427504000"}]}}, "139805427504000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108727904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142144544": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427504896"}]}}, "139805427504896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108728128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142145552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427505792"}]}}, "139805427505792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108728352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142146224": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427506688"}, {"nodeId": "139805427507136"}]}}, "139805427506688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "t"]}}, "139805427507136": {"type": "Function", "content": {"typeVars": [".-1.139805427507136"], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": ".-1.139805427507136"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".-1.139805427507136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "t"]}}, ".-1.139805427507136": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805427507136", "variance": "INVARIANT"}}, "139805142146784": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427507584"}, {"nodeId": "139805427508032"}, {"nodeId": "139805427508480"}]}}, "139805427507584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142147904"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "val"]}}, "139805142147904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805427508032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "val"]}}, "139805427508480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142148128"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "val"]}}, "139805142148128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427508928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142148576"}, {"nodeId": "139805481882144"}, {"nodeId": "139805142147792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "c_or_r", "r", "variable"]}}, "139805142148576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142147792": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805427509376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805427509824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805427510272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805427510720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142148800"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142148800": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427511168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142148912"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142148912": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427511616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149024"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142149024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427512064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149136"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142149136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427512512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149248"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142149248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387008"}}}, "139805427512960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142148464"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142148464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427513408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149472"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142149472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427513856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149584"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805142149584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427514304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149696"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142149696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427514752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149808"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142149808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427646528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149920"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142149920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427646976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427647424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805481893056"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805427647872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805427648320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142150256"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, "139805142150256": {"type": "Union", "content": {"items": [{"nodeId": "139805276996000"}, {"nodeId": "139805276997408"}]}}, "139805427648768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142150368"}, {"nodeId": "139805142150704"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "m", "k"]}}, "139805142150368": {"type": "Union", "content": {"items": [{"nodeId": "139805276996000"}, {"nodeId": "139805276997408"}]}}, "139805142150704": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142150480"}, {"nodeId": "139805142150592"}]}}, "139805142150480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142150592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805150586912": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "matrix", "members": [{"kind": "Variable", "content": {"name": "__array_priority__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "subtype", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427649216"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427649664"}, "name": "__array_finalize__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142147344"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427651904"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427652352"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427652800"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427653248"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427653696"}, "name": "__ipow__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142151600"}, "items": [{"kind": "Variable", "content": {"name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sum"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142153280"}, "items": [{"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "mean"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142024000"}, "items": [{"kind": "Variable", "content": {"name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "std"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142255088"}, "items": [{"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "var"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142256208"}, "items": [{"kind": "Variable", "content": {"name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "prod"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142257328"}, "items": [{"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "any"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142258448"}, "items": [{"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "all"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142256656"}, "items": [{"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "max"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142259568"}, "items": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "min"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142259456"}, "items": [{"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "argmax"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142260016"}, "items": [{"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "argmin"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142260688"}, "items": [{"kind": "Variable", "content": {"name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "ptp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427834368"}, "name": "squeeze"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427834816"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427835264"}, "name": "ravel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427835712"}, "name": "flatten"}}, {"kind": "Variable", "content": {"name": "T", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096357312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "I", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096357536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "A", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096358656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "A1", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096358208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "H", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096359104"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427838400"}, "name": "getT"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427838848"}, "name": "getI"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427839296"}, "name": "getA"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427839744"}, "name": "getA1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427840192"}, "name": "getH"}}], "typeVars": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}], "bases": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "isAbstract": false}}, ".1.139805150586912": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150586912", "variance": "INVARIANT"}}, ".2.139805150586912": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805150586912", "variance": "COVARIANT"}}, "139805427649216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142151040"}, {"nodeId": "139805142148688"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "data", "dtype", "copy"]}}, "139805142151040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142148688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427649664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805142147344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427650112"}, {"nodeId": "139805427650560"}, {"nodeId": "139805427651008"}, {"nodeId": "139805427651456"}]}}, "139805427650112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142151936"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142151936": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805142152048"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805142152160"}]}]}}, "139805142152048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142152160": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805142152608"}]}}, "139805142152608": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427650560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142150928"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142150928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805276997408"}, {"nodeId": "139805142151712"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805142152384"}]}]}}, "139805142151712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142152384": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805142151376"}, {"nodeId": "139805276997408"}]}}, "139805142151376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427651008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427651456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427651904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142152944"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142152944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427652352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142153392"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142153392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427652800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142153728"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142153728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427653248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142153840"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142153840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427653696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142154176"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142154176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142151600": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427654144"}, {"nodeId": "139805427654592"}, {"nodeId": "139805427655040"}]}}, "139805427654144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "N"}, {"nodeId": "139805142154064"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142154064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427654592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142154512"}, {"nodeId": "139805142154624"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142154512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142154624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427655040": {"type": "Function", "content": {"typeVars": [".-1.139805427655040"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142154288"}, {"nodeId": "139805142254192"}, {"nodeId": ".-1.139805427655040"}], "returnType": {"nodeId": ".-1.139805427655040"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142154288": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142155072"}]}}, "139805142155072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142254192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805427655040": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427655040", "variance": "INVARIANT"}}, "139805142153280": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427655488"}, {"nodeId": "139805427655936"}, {"nodeId": "139805427656384"}]}}, "139805427655488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "N"}, {"nodeId": "139805142254304"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142254304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427655936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142253856"}, {"nodeId": "139805142254976"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142253856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142254976": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427656384": {"type": "Function", "content": {"typeVars": [".-1.139805427656384"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142254528"}, {"nodeId": "139805142253744"}, {"nodeId": ".-1.139805427656384"}], "returnType": {"nodeId": ".-1.139805427656384"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142254528": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142255312"}]}}, "139805142255312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142253744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805427656384": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427656384", "variance": "INVARIANT"}}, "139805142024000": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427656832"}, {"nodeId": "139805427657280"}, {"nodeId": "139805427657728"}]}}, "139805427656832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "N"}, {"nodeId": "139805142254864"}, {"nodeId": "N"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "139805142254864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427657280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142254080"}, {"nodeId": "139805142256096"}, {"nodeId": "N"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "139805142254080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142256096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427657728": {"type": "Function", "content": {"typeVars": [".-1.139805427657728"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142255648"}, {"nodeId": "139805142254752"}, {"nodeId": ".-1.139805427657728"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": ".-1.139805427657728"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "139805142255648": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142256432"}]}}, "139805142256432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142254752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805427657728": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427657728", "variance": "INVARIANT"}}, "139805142255088": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427658176"}, {"nodeId": "139805427658624"}, {"nodeId": "139805427659072"}]}}, "139805427658176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "N"}, {"nodeId": "139805142255984"}, {"nodeId": "N"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "139805142255984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427658624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142254416"}, {"nodeId": "139805142257216"}, {"nodeId": "N"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "139805142254416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142257216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427659072": {"type": "Function", "content": {"typeVars": [".-1.139805427659072"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142256768"}, {"nodeId": "139805142255872"}, {"nodeId": ".-1.139805427659072"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": ".-1.139805427659072"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "139805142256768": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142257552"}]}}, "139805142257552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142255872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805427659072": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427659072", "variance": "INVARIANT"}}, "139805142256208": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427659520"}, {"nodeId": "139805427659968"}, {"nodeId": "139805427660416"}]}}, "139805427659520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "N"}, {"nodeId": "139805142257104"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142257104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427659968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142255536"}, {"nodeId": "139805142258336"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142255536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142258336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427660416": {"type": "Function", "content": {"typeVars": [".-1.139805427660416"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142257888"}, {"nodeId": "139805142256992"}, {"nodeId": ".-1.139805427660416"}], "returnType": {"nodeId": ".-1.139805427660416"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142257888": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142258672"}]}}, "139805142258672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142256992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805427660416": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427660416", "variance": "INVARIANT"}}, "139805142257328": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427660864"}, {"nodeId": "139805427661312"}, {"nodeId": "139805427661760"}]}}, "139805427660864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155357824"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805427661312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142258224"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142258224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805427661760": {"type": "Function", "content": {"typeVars": [".-1.139805427661760"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142258000"}, {"nodeId": ".-1.139805427661760"}], "returnType": {"nodeId": ".-1.139805427661760"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142258000": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142259008"}]}}, "139805142259008": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805427661760": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427661760", "variance": "INVARIANT"}}, "139805142258448": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427662208"}, {"nodeId": "139805427826752"}, {"nodeId": "139805427827200"}]}}, "139805427662208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155357824"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805427826752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142258112"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142258112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805427827200": {"type": "Function", "content": {"typeVars": [".-1.139805427827200"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142257776"}, {"nodeId": ".-1.139805427827200"}], "returnType": {"nodeId": ".-1.139805427827200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142257776": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142259232"}]}}, "139805142259232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805427827200": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427827200", "variance": "INVARIANT"}}, "139805142256656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171523520"}, {"nodeId": "139805427828096"}, {"nodeId": "139805427828544"}]}}, "139805171523520": {"type": "Function", "content": {"typeVars": [".-1.139805171523520"], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.139805171523520"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, ".-1.139805171523520": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805171523520", "variance": "INVARIANT"}}, "139805427828096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142259344"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142259344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805427828544": {"type": "Function", "content": {"typeVars": [".-1.139805427828544"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142259904"}, {"nodeId": ".-1.139805427828544"}], "returnType": {"nodeId": ".-1.139805427828544"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142259904": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142259680"}]}}, "139805142259680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805427828544": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427828544", "variance": "INVARIANT"}}, "139805142259568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171521952"}, {"nodeId": "139805427829440"}, {"nodeId": "139805427829888"}]}}, "139805171521952": {"type": "Function", "content": {"typeVars": [".-1.139805171521952"], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.139805171521952"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, ".-1.139805171521952": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805171521952", "variance": "INVARIANT"}}, "139805427829440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142260240"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142260240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805427829888": {"type": "Function", "content": {"typeVars": [".-1.139805427829888"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142260576"}, {"nodeId": ".-1.139805427829888"}], "returnType": {"nodeId": ".-1.139805427829888"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142260576": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142260464"}]}}, "139805142260464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805427829888": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427829888", "variance": "INVARIANT"}}, "139805142259456": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171521280"}, {"nodeId": "139805427830784"}, {"nodeId": "139805427831232"}]}}, "139805171521280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805142260912"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142260912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805427830784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142261024"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805142261248"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142261024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142261248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805427831232": {"type": "Function", "content": {"typeVars": [".-1.139805427831232"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142261472"}, {"nodeId": ".-1.139805427831232"}], "returnType": {"nodeId": ".-1.139805427831232"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142261472": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142261360"}]}}, "139805142261360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805427831232": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427831232", "variance": "INVARIANT"}}, "139805142260016": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171519488"}, {"nodeId": "139805427832128"}, {"nodeId": "139805427832576"}]}}, "139805171519488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805142261808"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142261808": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805427832128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142261920"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805142262144"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142261920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142262144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805427832576": {"type": "Function", "content": {"typeVars": [".-1.139805427832576"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142262368"}, {"nodeId": ".-1.139805427832576"}], "returnType": {"nodeId": ".-1.139805427832576"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142262368": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142262256"}]}}, "139805142262256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805427832576": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427832576", "variance": "INVARIANT"}}, "139805142260688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171519264"}, {"nodeId": "139805427833472"}, {"nodeId": "139805427833920"}]}}, "139805171519264": {"type": "Function", "content": {"typeVars": [".-1.139805171519264"], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.139805171519264"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, ".-1.139805171519264": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805171519264", "variance": "INVARIANT"}}, "139805427833472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142262704"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142262704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805427833920": {"type": "Function", "content": {"typeVars": [".-1.139805427833920"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142263040"}, {"nodeId": ".-1.139805427833920"}], "returnType": {"nodeId": ".-1.139805427833920"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142263040": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142262928"}]}}, "139805142262928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805427833920": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427833920", "variance": "INVARIANT"}}, "139805427834368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142263264"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "axis"]}}, "139805142263264": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142263152"}]}}, "139805142263152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805427834816": {"type": "Function", "content": {"typeVars": [".-1.139805427834816"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155355712", "args": [{"nodeId": ".-1.139805427834816"}]}]}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276671136", "args": [{"nodeId": ".-1.139805427834816"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805427834816": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805427834816", "variance": "INVARIANT"}}, "139805427835264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142263600"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139805142263600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805427835712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142263824"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139805142263824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805096357312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805096357536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805096358656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805096358208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805096359104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427838400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427838848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427839296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427839744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427840192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150587264": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "chararray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142261584"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427841536"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427841984"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427842432"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805428006976"}, "name": "__mod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142262480"}, "items": [{"kind": "Variable", "content": {"name": "__eq__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__eq__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__eq__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142267408"}, "items": [{"kind": "Variable", "content": {"name": "__ne__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ne__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ne__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142267072"}, "items": [{"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142268304"}, "items": [{"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__le__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142154960"}, "items": [{"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__gt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142351936"}, "items": [{"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__lt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142352720"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142353504"}, "items": [{"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__radd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142354288"}, "items": [{"kind": "Variable", "content": {"name": "center", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "center", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "center"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142355072"}, "items": [{"kind": "Variable", "content": {"name": "count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805179981696"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805179980800"}, "name": "encode"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142355856"}, "items": [{"kind": "Variable", "content": {"name": "endswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "endswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805428018176"}, "name": "expandtabs"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142358656"}, "items": [{"kind": "Variable", "content": {"name": "find", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "find", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "find"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142361232"}, "items": [{"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "index"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142362912"}, "items": [{"kind": "Variable", "content": {"name": "join", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "join", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "join"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142364592"}, "items": [{"kind": "Variable", "content": {"name": "ljust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ljust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "ljust"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142364480"}, "items": [{"kind": "Variable", "content": {"name": "lstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "lstrip"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142365264"}, "items": [{"kind": "Variable", "content": {"name": "partition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "partition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "partition"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142366384"}, "items": [{"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "replace"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142367280"}, "items": [{"kind": "Variable", "content": {"name": "rfind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rfind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rfind"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142269088"}, "items": [{"kind": "Variable", "content": {"name": "rindex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rindex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rindex"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142420608"}, "items": [{"kind": "Variable", "content": {"name": "rjust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rjust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rjust"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142422288"}, "items": [{"kind": "Variable", "content": {"name": "rpartition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rpartition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rpartition"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142422176"}, "items": [{"kind": "Variable", "content": {"name": "rsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rsplit"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142423296"}, "items": [{"kind": "Variable", "content": {"name": "rstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rstrip"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142425536"}, "items": [{"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422936000"}, "name": "splitlines"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142425424"}, "items": [{"kind": "Variable", "content": {"name": "startswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "startswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "startswith"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142428000"}, "items": [{"kind": "Variable", "content": {"name": "strip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "strip"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142429792"}, "items": [{"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422939136"}, "name": "zfill"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422939584"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422940032"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422940480"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422940928"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422941376"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422941824"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422942272"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422942720"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422943168"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422943616"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423075392"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423075840"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423076288"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423076736"}, "name": "isdecimal"}}], "typeVars": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}], "bases": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "isAbstract": false}}, ".1.139805150587264": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150587264", "variance": "INVARIANT"}}, ".2.139805150587264": {"type": "TypeVar", "content": {"varName": "_CharDType", "values": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805150579168"}]}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578816"}]}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805150587264", "variance": "INVARIANT"}}, "139805142261584": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427840640"}, {"nodeId": "139805427841088"}]}}, "139805427840640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142265280"}, {"nodeId": "139805142265392"}, {"nodeId": "0"}, {"nodeId": "139805142265616"}, {"nodeId": "139805276997408"}, {"nodeId": "139805142265728"}, {"nodeId": "139805142265840"}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578816"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "shape", "itemsize", "unicode", "buffer", "offset", "strides", "order"]}}, "139805142265280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142265392": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805276996000"}]}}, "139805142265616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805196974928"}}}, "139805142265728": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142265840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805427841088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142266064"}, {"nodeId": "139805142266176"}, {"nodeId": "0"}, {"nodeId": "139805142266400"}, {"nodeId": "139805276997408"}, {"nodeId": "139805142266512"}, {"nodeId": "139805142266624"}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150579168"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "shape", "itemsize", "unicode", "buffer", "offset", "strides", "order"]}}, "139805142266064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142266176": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805276996000"}]}}, "139805142266400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805196974928"}}}, "139805142266512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142266624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805427841536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805427841984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, {"nodeId": "139805142266848"}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142266848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427842432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, {"nodeId": "139805142267296"}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142267296": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428006976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142262480": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171517248"}, {"nodeId": "139805428007872"}]}}, "139805171517248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142267744"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142267744": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428007872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142268080"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142268080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142267408": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171515456"}, {"nodeId": "139805428008768"}]}}, "139805171515456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142268528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142268528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428008768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142268864"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142268864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142267072": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171515680"}, {"nodeId": "139805428009664"}]}}, "139805171515680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142269312"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142269312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428009664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142269648"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142269648": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142268304": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171516128"}, {"nodeId": "139805428010560"}]}}, "139805171516128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142352160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142352160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428010560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142352496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142352496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142154960": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171516576"}, {"nodeId": "139805428011456"}]}}, "139805171516576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142352944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142352944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428011456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142353280"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142353280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142351936": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171516352"}, {"nodeId": "139805180066976"}]}}, "139805171516352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142353728"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142353728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805180066976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142354064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142354064": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142352720": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171516800"}, {"nodeId": "139805428012352"}]}}, "139805171516800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142354512"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142354512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428012352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142354848"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142354848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142353504": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805428013248"}, {"nodeId": "139805171517024"}]}}, "139805428013248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142355296"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142355296": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805171517024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142355632"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142355632": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142354288": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805428014144"}, {"nodeId": "139805428015040"}]}}, "139805428014144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142356080"}, {"nodeId": "139805142356192"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "139805142356080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142356192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428015040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142356640"}, {"nodeId": "139805142356416"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "139805142356640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142356416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142355072": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805179979680"}, {"nodeId": "139805428015936"}]}}, "139805179979680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142356864"}, {"nodeId": "139805142357200"}, {"nodeId": "139805142357424"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142356864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142357200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142357424": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142357312"}]}}, "139805142357312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428015936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142357984"}, {"nodeId": "139805142356976"}, {"nodeId": "139805142358208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142357984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142356976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142358208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142358096"}]}}, "139805142358096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805179981696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142358768"}, {"nodeId": "139805142357872"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139805142358768": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805142357872": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805179980800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142359104"}, {"nodeId": "139805142359216"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139805142359104": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805142359216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805142355856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805355840160"}, {"nodeId": "139805179982592"}]}}, "139805355840160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142359664"}, {"nodeId": "139805142359776"}, {"nodeId": "139805142360000"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "139805142359664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142359776": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142360000": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142359888"}]}}, "139805142359888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805179982592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142360448"}, {"nodeId": "139805142359440"}, {"nodeId": "139805142360672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "139805142360448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142359440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142360672": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142360560"}]}}, "139805142360560": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428018176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, {"nodeId": "139805142360896"}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "139805142360896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142358656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805355839712"}, {"nodeId": "139805428019072"}]}}, "139805355839712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142360336"}, {"nodeId": "139805142361456"}, {"nodeId": "139805142361680"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142360336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142361456": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142361680": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142361568"}]}}, "139805142361568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428019072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142362240"}, {"nodeId": "139805142361344"}, {"nodeId": "139805142362464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142362240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142361344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142362464": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142362352"}]}}, "139805142362352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142361232": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180457504"}, {"nodeId": "139805428019968"}]}}, "139805180457504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142362128"}, {"nodeId": "139805142363136"}, {"nodeId": "139805142363360"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142362128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142363136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142363360": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142363248"}]}}, "139805142363248": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428019968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142363920"}, {"nodeId": "139805142362800"}, {"nodeId": "139805142364144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142363920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142362800": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142364144": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142364032"}]}}, "139805142364032": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142362912": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180459520"}, {"nodeId": "139805428020864"}]}}, "139805180459520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142363808"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "139805142363808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428020864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142365040"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "139805142365040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142364592": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180459296"}, {"nodeId": "139805428021760"}]}}, "139805180459296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142365488"}, {"nodeId": "139805142365600"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "139805142365488": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142365600": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428021760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142366048"}, {"nodeId": "139805142365824"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "139805142366048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142365824": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142364480": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180460192"}, {"nodeId": "139805428022656"}]}}, "139805180460192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142366608"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "139805142366608": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142366272"}]}}, "139805142366272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428022656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142367056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "139805142367056": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142366944"}]}}, "139805142366944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142365264": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180457280"}, {"nodeId": "139805422928384"}]}}, "139805180457280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142367504"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139805142367504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422928384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142367840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139805142367840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142366384": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180457056"}, {"nodeId": "139805422929280"}]}}, "139805180457056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142417584"}, {"nodeId": "139805142417696"}, {"nodeId": "139805142417920"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "count"]}}, "139805142417584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142417696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142417920": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142417808"}]}}, "139805142417808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422929280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142418368"}, {"nodeId": "139805142418144"}, {"nodeId": "139805142418592"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "count"]}}, "139805142418368": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142418144": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142418592": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142418480"}]}}, "139805142418480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142367280": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180456160"}, {"nodeId": "139805422930176"}]}}, "139805180456160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142418816"}, {"nodeId": "139805142419152"}, {"nodeId": "139805142419376"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142418816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142419152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142419376": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142419264"}]}}, "139805142419264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422930176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142419936"}, {"nodeId": "139805142418928"}, {"nodeId": "139805142420160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142419936": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142418928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142420160": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142420048"}]}}, "139805142420048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142269088": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180455936"}, {"nodeId": "139805180456832"}]}}, "139805180455936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142419824"}, {"nodeId": "139805142420832"}, {"nodeId": "139805142421056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142419824": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142420832": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142421056": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142420944"}]}}, "139805142420944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805180456832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142421616"}, {"nodeId": "139805142420496"}, {"nodeId": "139805142421840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142421616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142420496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142421840": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142421728"}]}}, "139805142421728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142420608": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805422931072"}, {"nodeId": "139805180459744"}]}}, "139805422931072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142421504"}, {"nodeId": "139805142422512"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "139805142421504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142422512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805180459744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142422960"}, {"nodeId": "139805142422736"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "139805142422960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142422736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142422288": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805422931968"}, {"nodeId": "139805422932864"}]}}, "139805422931968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142423184"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139805142423184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422932864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142423744"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139805142423744": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142422176": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180380096"}, {"nodeId": "139805422933760"}]}}, "139805180380096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142424304"}, {"nodeId": "139805142424528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805142424304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142424192"}]}}, "139805142424192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142424528": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142424416"}]}}, "139805142424416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422933760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142423968"}, {"nodeId": "139805142425200"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805142423968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142424976"}]}}, "139805142424976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142425200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142425088"}]}}, "139805142425088": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142423296": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180383232"}, {"nodeId": "139805422934656"}]}}, "139805180383232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142425760"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "139805142425760": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142424864"}]}}, "139805142424864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422934656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142426208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "139805142426208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142426096"}]}}, "139805142426096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142425536": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180391296"}, {"nodeId": "139805422935552"}]}}, "139805180391296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142426768"}, {"nodeId": "139805142426992"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805142426768": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142426656"}]}}, "139805142426656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142426992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142426880"}]}}, "139805142426880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422935552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142426432"}, {"nodeId": "139805142427664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805142426432": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142427440"}]}}, "139805142427440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142427664": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142427552"}]}}, "139805142427552": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422936000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, {"nodeId": "139805142428112"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139805142428112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142427888"}]}}, "139805142427888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142425424": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180390176"}, {"nodeId": "139805180392416"}]}}, "139805180390176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142428448"}, {"nodeId": "139805142428560"}, {"nodeId": "139805142428784"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "139805142428448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142428560": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142428784": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142428672"}]}}, "139805142428672": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805180392416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142429232"}, {"nodeId": "139805142428224"}, {"nodeId": "139805142429456"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "139805142429232": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142428224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142429456": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142429344"}]}}, "139805142429344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142428000": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805422936896"}, {"nodeId": "139805180380992"}]}}, "139805422936896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142430016"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "139805142430016": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142429120"}]}}, "139805142429120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805180380992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142430464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "139805142430464": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142430352"}]}}, "139805142430352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142429792": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805422937792"}, {"nodeId": "139805422938688"}]}}, "139805422937792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142430912"}, {"nodeId": "139805142431136"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "table", "deletechars"]}}, "139805142430912": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142431136": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142431024"}]}}, "139805142431024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422938688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142431472"}, {"nodeId": "139805142431696"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "table", "deletechars"]}}, "139805142431472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142431696": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142431584"}]}}, "139805142431584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422939136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, {"nodeId": "139805142431920"}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}}, "139805142431920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422939584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422940032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422940480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422940928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422941376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422941824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422942272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422942720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422943168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422943616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805423075392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805423075840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805423076288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805423076736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150587616": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_SupportsDLPack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423077184"}, "name": "__dlpack__"}}], "typeVars": [{"nodeId": ".1.139805150587616"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__dlpack__"]}}, ".1.139805150587616": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805150587616", "variance": "CONTRAVARIANT"}}, "139805423077184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587616", "args": [{"nodeId": ".1.139805150587616"}]}, {"nodeId": "139805142432368"}], "returnType": {"nodeId": "139805142430688"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "stream"]}}, "139805142432368": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": ".1.139805150587616"}]}}, "139805142430688": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805277010432": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247282912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247284256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247284480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247284704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247284928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247285152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410418176"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247285376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247285600"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805247282912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247284256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805263683744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263683744": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805247284480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247284704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247284928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247285152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805263683968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263683968": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805410418176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}, {"nodeId": "139805276669024"}, {"nodeId": "139805263684192"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805263684416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant", "default"]}}, "139805263684192": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805276669024"}]}}, "139805263684416": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805247285376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805481883552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481883552": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247655712"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423088832"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805247655712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481883552"}], "returnType": {"nodeId": "139805481884256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481884256": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247658624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247659744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247659968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247660192"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444392320"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247660864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247660416"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444394560"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444395008"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805247658624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247659744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}], "returnType": {"nodeId": "139805263688000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263688000": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805247659968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247660192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444392320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}, {"nodeId": "139805276669024"}, {"nodeId": "139805263688224"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}}, "139805263688224": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805247660864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}], "returnType": {"nodeId": "139805481883552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247660416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}], "returnType": {"nodeId": "139805481883904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481883904": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247656832"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423089728"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805247656832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481883904"}], "returnType": {"nodeId": "139805481884256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805423089728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481883904"}, {"nodeId": "139805481884256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "139805444394560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481883200": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423083904"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423084352"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423084800"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805423083904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481883200"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805423084352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481883200"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805423084800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481883200"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444395008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805423088832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481883552"}, {"nodeId": "139805481884256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "139805247285600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805481883904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481882848": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247534496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247534944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247535168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247535392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247535616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423082112"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423082560"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423083008"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805247534496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247534944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}], "returnType": {"nodeId": "139805263686768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263686768": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805247535168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247535392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247535616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805423082112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}, {"nodeId": "139805263687216"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant"]}}, "139805263687216": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805423082560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805423083008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481884608": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444395456"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444395904"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444396352"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444396800"}, "name": "__ror__"}}, {"kind": "Variable", "content": {"name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481892352"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805444395456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884608"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}}, "139805444395904": {"type": "Function", "content": {"typeVars": [".-1.139805444395904"], "argTypes": [{"nodeId": "139805481884608"}, {"nodeId": ".-1.139805444395904"}], "returnType": {"nodeId": ".-1.139805444395904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139805444395904": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805444395904", "variance": "INVARIANT"}}, "139805444396352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884608"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444396800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884608"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481884960": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444398592"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805444398592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884960"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805276995648": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276879008"}], "isAbstract": false}}, "139805276879008": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "content": {"name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003392", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255286368"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360505568"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360506016"}, "name": "__subclasscheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360506464"}, "name": "_dump_registry"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360506912"}, "name": "register"}}], "typeVars": [], "bases": [{"nodeId": "139805481892352"}], "isAbstract": false}}, "139805277003392": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251582352"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402245920"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402246368"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402246816"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402247264"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402247712"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402248160"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402248608"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402249056"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402249504"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402249952"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402250400"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402250848"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402349856"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402350304"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402350752"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402351200"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402351648"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402352096"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402352544"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402352992"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805277003392"}], "bases": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805277003392"}]}], "isAbstract": false}}, ".1.139805277003392": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277003392", "variance": "COVARIANT"}}, "139805251582352": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402245024"}, {"nodeId": "139805402245472"}]}}, "139805402245024": {"type": "Function", "content": {"typeVars": [".0.139805402245024"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805402245024"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805402245024": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "def": "139805402245024", "variance": "INVARIANT"}}, "139805402245472": {"type": "Function", "content": {"typeVars": [".0.139805402245472"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": ".0.139805402245472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805402245472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "def": "139805402245472", "variance": "INVARIANT"}}, "139805402245920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805402246368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139805402246816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139805402247264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402247712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402248160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402248608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402249056": {"type": "Function", "content": {"typeVars": [".-1.139805402249056"], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402249056"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": "139805246702192"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.139805402249056": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402249056", "variance": "INVARIANT"}}, "139805246702192": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277003392"}, {"nodeId": ".-1.139805402249056"}]}}, "139805402249504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402249952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402250400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277003392"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402250848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402349856": {"type": "Function", "content": {"typeVars": [".-1.139805402349856"], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".-1.139805402349856"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": "139805246702304"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805402349856": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402349856", "variance": "INVARIANT"}}, "139805246702304": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277003392"}, {"nodeId": ".-1.139805402349856"}]}}, "139805402350304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402350752": {"type": "Function", "content": {"typeVars": [".-1.139805402350752"], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".-1.139805402350752"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": "139805246702416"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805402350752": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402350752", "variance": "INVARIANT"}}, "139805246702416": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277003392"}, {"nodeId": ".-1.139805402350752"}]}}, "139805402351200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402351648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402352096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402352544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402352992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805255286368": {"type": "Function", "content": {"typeVars": [".-1.139805255286368"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139805255286368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}}, ".-1.139805255286368": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255286368", "variance": "INVARIANT"}}, "139805360505568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276879008"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}}, "139805360506016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276879008"}, {"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "139805360506464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276879008"}, {"nodeId": "139805255956656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}}, "139805255956656": {"type": "Union", "content": {"items": [{"nodeId": "139805268033952", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805360506912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276879008"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "139805481885664": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263466384"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}], "typeVars": [{"nodeId": ".1.139805481885664"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__round__"]}}, ".1.139805481885664": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481885664", "variance": "COVARIANT"}}, "139805263466384": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805444402176"}, {"nodeId": "139805444402624"}]}}, "139805444402176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481885664", "args": [{"nodeId": ".1.139805481885664"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444402624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481885664", "args": [{"nodeId": ".1.139805481885664"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805481885664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276998112": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242518752"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__hash__"]}}, "139805242518752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276998112"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481887424": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "content": {"name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242597984"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481887424"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__await__"]}}, ".1.139805481887424": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481887424", "variance": "COVARIANT"}}, "139805242597984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887424", "args": [{"nodeId": ".1.139805481887424"}]}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.139805481887424"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481887776": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242600896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242601120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242601344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242601568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242601792"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263689568"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242602016"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}], "bases": [{"nodeId": "139805481887424", "args": [{"nodeId": ".3.139805481887776"}]}], "isAbstract": true}}, ".1.139805481887776": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481887776", "variance": "COVARIANT"}}, ".2.139805481887776": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481887776", "variance": "CONTRAVARIANT"}}, ".3.139805481887776": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481887776", "variance": "COVARIANT"}}, "139805242600896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}], "returnType": {"nodeId": "139805263690800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263690800": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805242601120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}], "returnType": {"nodeId": "139805272032000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242601344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}], "returnType": {"nodeId": "139805272037632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242601568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242601792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}, {"nodeId": ".2.139805481887776"}], "returnType": {"nodeId": ".1.139805481887776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805263689568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805444691712"}, {"nodeId": "139805444692160"}]}}, "139805444691712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}, {"nodeId": "0"}, {"nodeId": "139805263691024"}, {"nodeId": "139805263691136"}], "returnType": {"nodeId": ".1.139805481887776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805263691024": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "139805481881792"}]}}, "139805263691136": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805444692160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}, {"nodeId": "139805276675712"}, {"nodeId": "N"}, {"nodeId": "139805263691248"}], "returnType": {"nodeId": ".1.139805481887776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805263691248": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805242602016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276998464": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.139805276998464"}, {"nodeId": ".2.139805276998464"}, {"nodeId": ".3.139805276998464"}, {"nodeId": ".4.139805276998464"}], "bases": [{"nodeId": "139805481887424", "args": [{"nodeId": ".3.139805276998464"}]}, {"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805276998464"}, {"nodeId": ".2.139805276998464"}, {"nodeId": ".3.139805276998464"}]}], "isAbstract": true}}, ".1.139805276998464": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276998464", "variance": "COVARIANT"}}, ".2.139805276998464": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276998464", "variance": "CONTRAVARIANT"}}, ".3.139805276998464": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276998464", "variance": "COVARIANT"}}, ".4.139805276998464": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276998464", "variance": "INVARIANT"}}, "139805481888128": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "content": {"name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242603360"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481888128"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__aiter__"]}}, ".1.139805481888128": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481888128", "variance": "COVARIANT"}}, "139805242603360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888128", "args": [{"nodeId": ".1.139805481888128"}]}], "returnType": {"nodeId": "139805481888480", "args": [{"nodeId": ".1.139805481888128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481888480": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "content": {"name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242658592"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444693952"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.139805481888480"}], "bases": [{"nodeId": "139805481888128", "args": [{"nodeId": ".1.139805481888480"}]}], "protocolMembers": ["__aiter__", "__anext__"]}}, ".1.139805481888480": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481888480", "variance": "COVARIANT"}}, "139805242658592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888480", "args": [{"nodeId": ".1.139805481888480"}]}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".1.139805481888480"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444693952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888480", "args": [{"nodeId": ".1.139805481888480"}]}], "returnType": {"nodeId": "139805481888480", "args": [{"nodeId": ".1.139805481888480"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481888832": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444694400"}, "name": "__anext__"}}, {"kind": "Variable", "content": {"name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242661280"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263689680"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444696192"}, "name": "aclose"}}, {"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242660384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242662176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242662400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242662624"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}], "bases": [{"nodeId": "139805481888480", "args": [{"nodeId": ".1.139805481888832"}]}], "isAbstract": true}}, ".1.139805481888832": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481888832", "variance": "COVARIANT"}}, ".2.139805481888832": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481888832", "variance": "CONTRAVARIANT"}}, "139805444694400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".1.139805481888832"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242661280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}, {"nodeId": ".2.139805481888832"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".1.139805481888832"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805263689680": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805444695296"}, {"nodeId": "139805444695744"}]}}, "139805444695296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}, {"nodeId": "0"}, {"nodeId": "139805263691472"}, {"nodeId": "139805263691584"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".1.139805481888832"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805263691472": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "139805481881792"}]}}, "139805263691584": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805444695744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}, {"nodeId": "139805276675712"}, {"nodeId": "N"}, {"nodeId": "139805263872064"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".1.139805481888832"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805263872064": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805444696192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242660384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242662176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}], "returnType": {"nodeId": "139805272032000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242662400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}], "returnType": {"nodeId": "139805272037632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242662624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805277000576": {"type": "Concrete", "content": {"module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243093760"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}], "isAbstract": true}}, "139805243093760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000576"}], "returnType": {"nodeId": "139805277000576"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805277000928": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805243095328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805243095776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805243096000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805243096224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805243096448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243096672"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669024"}]}], "isAbstract": true}}, "139805243095328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000928"}], "returnType": {"nodeId": "139805277000576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243095776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000928"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243096000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000928"}], "returnType": {"nodeId": "139805263880352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263880352": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805243096224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000928"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243096448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000928"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243096672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000928"}], "returnType": {"nodeId": "139805277000928"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805277001280": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263881472"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243279840"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452628736"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452629632"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "139805263881472": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452627392"}, {"nodeId": "139805452627840"}]}}, "139805452627392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001280"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805263883040"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805263883040": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}}, "139805452627840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001280"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "139805243279840": {"type": "Function", "content": {"typeVars": [".0.139805243279840"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139805243279840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.139805243279840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277001280"}, "def": "139805243279840", "variance": "INVARIANT"}}, "139805452628736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001280"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452629632": {"type": "Function", "content": {"typeVars": [".0.139805452629632"], "argTypes": [{"nodeId": ".0.139805452629632"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805452629632"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.139805452629632": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277001280"}, "def": "139805452629632", "variance": "INVARIANT"}}, "139805277001632": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003392", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003392", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452630080"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452630528"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452630976"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452631424"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452845120"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452845568"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452846016"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452846464"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452846912"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452847360"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}], "isAbstract": true}}, "139805452630080": {"type": "Function", "content": {"typeVars": [".0.139805452630080"], "argTypes": [{"nodeId": ".0.139805452630080"}], "returnType": {"nodeId": ".0.139805452630080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805452630080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277001632"}, "def": "139805452630080", "variance": "INVARIANT"}}, "139805452630528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001632"}, {"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "139805452630976": {"type": "Function", "content": {"typeVars": [".-1.139805452630976"], "argTypes": [{"nodeId": "139805277001632"}, {"nodeId": "0"}, {"nodeId": ".-1.139805452630976"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.139805452630976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452630976", "variance": "INVARIANT"}}, "139805452631424": {"type": "Function", "content": {"typeVars": [".-1.139805452631424"], "argTypes": [{"nodeId": ".-1.139805452631424"}, {"nodeId": ".-1.139805452631424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139805452631424": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452631424", "variance": "INVARIANT"}}, "139805452845120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001632"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452845568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001632"}], "returnType": {"nodeId": "139805277002688", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452846016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001632"}], "returnType": {"nodeId": "139805277001984", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452846464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001632"}], "returnType": {"nodeId": "139805277002336", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452846912": {"type": "Function", "content": {"typeVars": [".0.139805452846912"], "argTypes": [{"nodeId": ".0.139805452846912"}, {"nodeId": ".0.139805452846912"}], "returnType": {"nodeId": ".0.139805452846912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805452846912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277001632"}, "def": "139805452846912", "variance": "INVARIANT"}}, "139805452847360": {"type": "Function", "content": {"typeVars": [".0.139805452847360"], "argTypes": [{"nodeId": ".0.139805452847360"}, {"nodeId": ".0.139805452847360"}], "returnType": {"nodeId": ".0.139805452847360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805452847360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277001632"}, "def": "139805452847360", "variance": "INVARIANT"}}, "139805481892000": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "content": {"name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272032000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271906048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276564144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452847808"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452848704"}, "name": "_evaluate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452849600"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805271906048": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805276564144": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805452847808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892000"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805263883936"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}}, "139805263883936": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805452848704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892000"}, {"nodeId": "139805263884160"}, {"nodeId": "139805263884384"}, {"nodeId": "139805277003392", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805263884608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}}, "139805263884160": {"type": "Union", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805263884384": {"type": "Union", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805263884608": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805452849600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892000"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481882496": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201519040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272032000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268423648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201519712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201520384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401840800"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805201519040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882496"}], "returnType": {"nodeId": "139805251577984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251577984": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805272031296"}]}, {"nodeId": "N"}]}}, "139805272031296": {"type": "Concrete", "content": {"module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410511104"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805410511104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031296"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805268423648": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805201519712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882496"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201520384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882496"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805401840800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882496"}, {"nodeId": "139805481881792"}, {"nodeId": "139805251578320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805251578320": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805481892704": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251289488"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805251289488": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805411136160"}, {"nodeId": "139805411136608"}, {"nodeId": "139805411137056"}]}}, "139805411136160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892704"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805411136608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892704"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805411137056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805277003744": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402353440"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402353888"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402354336"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402354784"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805277003744"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": "139805271903696"}]}], "isAbstract": false}}, ".1.139805277003744": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277003744", "variance": "INVARIANT"}}, "139805402353440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003744", "args": [{"nodeId": ".1.139805277003744"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003744"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}}, "139805402353888": {"type": "Function", "content": {"typeVars": [".0.139805402353888"], "argTypes": [{"nodeId": ".0.139805402353888"}], "returnType": {"nodeId": ".0.139805402353888"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805402353888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277003744", "args": [{"nodeId": ".1.139805277003744"}]}, "def": "139805402353888", "variance": "INVARIANT"}}, "139805402354336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003744", "args": [{"nodeId": ".1.139805277003744"}]}], "returnType": {"nodeId": "139805246702864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805246702864": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": ".1.139805277003744"}]}}, "139805402354784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805271903696": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": ".1.139805277003744"}]}}, "139805276671840": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196716288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196716736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196716960"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251583696"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402357472"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402357920"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402358368"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402358816"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402359264"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805246702640"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402360608"}, "name": "__reversed__"}}], "typeVars": [], "bases": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805196716288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805196716736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805196716960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251583696": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402356576"}, {"nodeId": "139805402357024"}]}}, "139805402356576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402357024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805402357472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402357920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402358368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402358816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402359264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805246702640": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402359712"}, {"nodeId": "139805402360160"}]}}, "139805402359712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402360160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276671840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402360608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805276672192": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268419728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268419952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268422080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402361056"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402361504"}, "name": "getter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402361952"}, "name": "setter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402362400"}, "name": "deleter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402362848"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402363296"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402363744"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805268419728": {"type": "Union", "content": {"items": [{"nodeId": "139805276236576"}, {"nodeId": "N"}]}}, "139805276236576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805268419952": {"type": "Union", "content": {"items": [{"nodeId": "139805276238592"}, {"nodeId": "N"}]}}, "139805276238592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805268422080": {"type": "Union", "content": {"items": [{"nodeId": "139805276226944"}, {"nodeId": "N"}]}}, "139805276226944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402361056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672192"}, {"nodeId": "139805246703312"}, {"nodeId": "139805246703648"}, {"nodeId": "139805246703984"}, {"nodeId": "139805246704208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}}, "139805246703312": {"type": "Union", "content": {"items": [{"nodeId": "139805251655424"}, {"nodeId": "N"}]}}, "139805251655424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805246703648": {"type": "Union", "content": {"items": [{"nodeId": "139805251655648"}, {"nodeId": "N"}]}}, "139805251655648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805246703984": {"type": "Union", "content": {"items": [{"nodeId": "139805251655872"}, {"nodeId": "N"}]}}, "139805251655872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805246704208": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805402361504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672192"}, {"nodeId": "139805251654752"}], "returnType": {"nodeId": "139805276672192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251654752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402361952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672192"}, {"nodeId": "139805251655200"}], "returnType": {"nodeId": "139805276672192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251655200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402362400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672192"}, {"nodeId": "139805251656096"}], "returnType": {"nodeId": "139805276672192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251656096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402362848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672192"}, {"nodeId": "A"}, {"nodeId": "139805246704992"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805246704992": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805402363296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672192"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805402363744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672192"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276672544": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805268308768": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402482720"}, "name": "__fspath__"}}], "typeVars": [{"nodeId": ".1.139805268308768"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__fspath__"]}}, ".1.139805268308768": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805268308768", "variance": "COVARIANT"}}, "139805402482720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268308768", "args": [{"nodeId": ".1.139805268308768"}]}], "returnType": {"nodeId": ".1.139805268308768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276672896": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402483616"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.139805276672896"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__anext__"]}}, ".1.139805276672896": {"type": "TypeVar", "content": {"varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "139805481887424", "args": [{"nodeId": "A"}]}, "def": "139805276672896", "variance": "COVARIANT"}}, "139805402483616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672896", "args": [{"nodeId": ".1.139805276672896"}]}], "returnType": {"nodeId": ".1.139805276672896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805277004096": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805246706336"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402494368"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402494816"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139805277004096"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277004096"}]}], "isAbstract": false}}, ".1.139805277004096": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277004096", "variance": "INVARIANT"}}, "139805246706336": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402493024"}, {"nodeId": "139805402493472"}, {"nodeId": "139805402493920"}]}}, "139805402493024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004096", "args": [{"nodeId": ".1.139805277004096"}]}, {"nodeId": "N"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805246709472"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805246709472": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277004096"}, {"nodeId": "N"}]}}, "139805402493472": {"type": "Function", "content": {"typeVars": [".-1.139805402493472"], "argTypes": [{"nodeId": "139805277004096", "args": [{"nodeId": ".1.139805277004096"}]}, {"nodeId": "139805251656992"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402493472"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805251656992": {"type": "Function", "content": {"typeVars": [".-1.139805251656992"], "argTypes": [{"nodeId": ".-1.139805251656992"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805251656992": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251656992", "variance": "INVARIANT"}}, ".-1.139805402493472": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402493472", "variance": "INVARIANT"}}, "139805402493920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004096", "args": [{"nodeId": ".1.139805277004096"}]}, {"nodeId": "139805251656768"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277004096"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805251656768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.139805277004096"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402494368": {"type": "Function", "content": {"typeVars": [".0.139805402494368"], "argTypes": [{"nodeId": ".0.139805402494368"}], "returnType": {"nodeId": ".0.139805402494368"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805402494368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277004096", "args": [{"nodeId": ".1.139805277004096"}]}, "def": "139805402494368", "variance": "INVARIANT"}}, "139805402494816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004096", "args": [{"nodeId": ".1.139805277004096"}]}], "returnType": {"nodeId": ".1.139805277004096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276673248": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402665632"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805276673248"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__"]}}, ".1.139805276673248": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276673248", "variance": "COVARIANT"}}, "139805402665632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276673248", "args": [{"nodeId": ".1.139805276673248"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805276673248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805277004448": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805246709808"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402672800"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402673248"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139805277004448"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277004448"}]}], "isAbstract": false}}, ".1.139805277004448": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277004448", "variance": "INVARIANT"}}, "139805246709808": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402670112"}, {"nodeId": "139805402670560"}, {"nodeId": "139805402671008"}, {"nodeId": "139805402671456"}, {"nodeId": "139805402671904"}, {"nodeId": "139805402672352"}]}}, "139805402670112": {"type": "Function", "content": {"typeVars": [".-1.139805402670112"], "argTypes": [{"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}, {"nodeId": "139805251659232"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402670112"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805251659232": {"type": "Function", "content": {"typeVars": [".-1.139805251659232"], "argTypes": [{"nodeId": ".-1.139805251659232"}], "returnType": {"nodeId": ".1.139805277004448"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805251659232": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659232", "variance": "INVARIANT"}}, ".-1.139805402670112": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402670112", "variance": "INVARIANT"}}, "139805402670560": {"type": "Function", "content": {"typeVars": [".-1.139805402670560", ".-2.139805402670560"], "argTypes": [{"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}, {"nodeId": "139805251658560"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402670560"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805402670560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "139805251658560": {"type": "Function", "content": {"typeVars": [".-1.139805251658560", ".-2.139805251658560"], "argTypes": [{"nodeId": ".-1.139805251658560"}, {"nodeId": ".-2.139805251658560"}], "returnType": {"nodeId": ".1.139805277004448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805251658560": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251658560", "variance": "INVARIANT"}}, ".-2.139805251658560": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251658560", "variance": "INVARIANT"}}, ".-1.139805402670560": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402670560", "variance": "INVARIANT"}}, ".-2.139805402670560": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402670560", "variance": "INVARIANT"}}, "139805402671008": {"type": "Function", "content": {"typeVars": [".-1.139805402671008", ".-2.139805402671008", ".-3.139805402671008"], "argTypes": [{"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}, {"nodeId": "139805251658784"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402671008"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805402671008"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-3.139805402671008"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "139805251658784": {"type": "Function", "content": {"typeVars": [".-1.139805251658784", ".-2.139805251658784", ".-3.139805251658784"], "argTypes": [{"nodeId": ".-1.139805251658784"}, {"nodeId": ".-2.139805251658784"}, {"nodeId": ".-3.139805251658784"}], "returnType": {"nodeId": ".1.139805277004448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, ".-1.139805251658784": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251658784", "variance": "INVARIANT"}}, ".-2.139805251658784": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251658784", "variance": "INVARIANT"}}, ".-3.139805251658784": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251658784", "variance": "INVARIANT"}}, ".-1.139805402671008": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671008", "variance": "INVARIANT"}}, ".-2.139805402671008": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671008", "variance": "INVARIANT"}}, ".-3.139805402671008": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671008", "variance": "INVARIANT"}}, "139805402671456": {"type": "Function", "content": {"typeVars": [".-1.139805402671456", ".-2.139805402671456", ".-3.139805402671456", ".-4.139805402671456"], "argTypes": [{"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}, {"nodeId": "139805251659456"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402671456"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805402671456"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-3.139805402671456"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-4.139805402671456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "139805251659456": {"type": "Function", "content": {"typeVars": [".-1.139805251659456", ".-2.139805251659456", ".-3.139805251659456", ".-4.139805251659456"], "argTypes": [{"nodeId": ".-1.139805251659456"}, {"nodeId": ".-2.139805251659456"}, {"nodeId": ".-3.139805251659456"}, {"nodeId": ".-4.139805251659456"}], "returnType": {"nodeId": ".1.139805277004448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, ".-1.139805251659456": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659456", "variance": "INVARIANT"}}, ".-2.139805251659456": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659456", "variance": "INVARIANT"}}, ".-3.139805251659456": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659456", "variance": "INVARIANT"}}, ".-4.139805251659456": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659456", "variance": "INVARIANT"}}, ".-1.139805402671456": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671456", "variance": "INVARIANT"}}, ".-2.139805402671456": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671456", "variance": "INVARIANT"}}, ".-3.139805402671456": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671456", "variance": "INVARIANT"}}, ".-4.139805402671456": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671456", "variance": "INVARIANT"}}, "139805402671904": {"type": "Function", "content": {"typeVars": [".-1.139805402671904", ".-2.139805402671904", ".-3.139805402671904", ".-4.139805402671904", ".-5.139805402671904"], "argTypes": [{"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}, {"nodeId": "139805251659680"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402671904"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805402671904"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-3.139805402671904"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-4.139805402671904"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-5.139805402671904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null, null]}}, "139805251659680": {"type": "Function", "content": {"typeVars": [".-1.139805251659680", ".-2.139805251659680", ".-3.139805251659680", ".-4.139805251659680", ".-5.139805251659680"], "argTypes": [{"nodeId": ".-1.139805251659680"}, {"nodeId": ".-2.139805251659680"}, {"nodeId": ".-3.139805251659680"}, {"nodeId": ".-4.139805251659680"}, {"nodeId": ".-5.139805251659680"}], "returnType": {"nodeId": ".1.139805277004448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}}, ".-1.139805251659680": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659680", "variance": "INVARIANT"}}, ".-2.139805251659680": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659680", "variance": "INVARIANT"}}, ".-3.139805251659680": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659680", "variance": "INVARIANT"}}, ".-4.139805251659680": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659680", "variance": "INVARIANT"}}, ".-5.139805251659680": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659680", "variance": "INVARIANT"}}, ".-1.139805402671904": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671904", "variance": "INVARIANT"}}, ".-2.139805402671904": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671904", "variance": "INVARIANT"}}, ".-3.139805402671904": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671904", "variance": "INVARIANT"}}, ".-4.139805402671904": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671904", "variance": "INVARIANT"}}, ".-5.139805402671904": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671904", "variance": "INVARIANT"}}, "139805402672352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}, {"nodeId": "139805251659904"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, null, null, null, null, null, "iterables"]}}, "139805251659904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805277004448"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805402672800": {"type": "Function", "content": {"typeVars": [".0.139805402672800"], "argTypes": [{"nodeId": ".0.139805402672800"}], "returnType": {"nodeId": ".0.139805402672800"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805402672800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}, "def": "139805402672800", "variance": "INVARIANT"}}, "139805402673248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}], "returnType": {"nodeId": ".1.139805277004448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805268309120": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402831712"}, "name": "flush"}}], "typeVars": [{"nodeId": ".1.139805268309120"}], "bases": [{"nodeId": "139805268033952", "args": [{"nodeId": ".1.139805268309120"}]}], "protocolMembers": ["flush", "write"]}}, ".1.139805268309120": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805268309120", "variance": "CONTRAVARIANT"}}, "139805402831712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268309120", "args": [{"nodeId": ".1.139805268309120"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276673600": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402833056"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.139805276673600"}, {"nodeId": ".2.139805276673600"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__pow__"]}}, ".1.139805276673600": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276673600", "variance": "CONTRAVARIANT"}}, ".2.139805276673600": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276673600", "variance": "COVARIANT"}}, "139805402833056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276673600", "args": [{"nodeId": ".1.139805276673600"}, {"nodeId": ".2.139805276673600"}]}, {"nodeId": ".1.139805276673600"}], "returnType": {"nodeId": ".2.139805276673600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805276673952": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402833504"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.139805276673952"}, {"nodeId": ".2.139805276673952"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__pow__"]}}, ".1.139805276673952": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276673952", "variance": "CONTRAVARIANT"}}, ".2.139805276673952": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276673952", "variance": "COVARIANT"}}, "139805402833504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276673952", "args": [{"nodeId": ".1.139805276673952"}, {"nodeId": ".2.139805276673952"}]}, {"nodeId": ".1.139805276673952"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.139805276673952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805276674304": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402833952"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.139805276674304"}, {"nodeId": ".2.139805276674304"}, {"nodeId": ".3.139805276674304"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__pow__"]}}, ".1.139805276674304": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276674304", "variance": "CONTRAVARIANT"}}, ".2.139805276674304": {"type": "TypeVar", "content": {"varName": "_M", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276674304", "variance": "CONTRAVARIANT"}}, ".3.139805276674304": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276674304", "variance": "COVARIANT"}}, "139805402833952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276674304", "args": [{"nodeId": ".1.139805276674304"}, {"nodeId": ".2.139805276674304"}, {"nodeId": ".3.139805276674304"}]}, {"nodeId": ".1.139805276674304"}, {"nodeId": ".2.139805276674304"}], "returnType": {"nodeId": ".3.139805276674304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805277004800": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805246950752"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397803168"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397803616"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397804064"}, "name": "__length_hint__"}}], "typeVars": [{"nodeId": ".1.139805277004800"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277004800"}]}], "isAbstract": false}}, ".1.139805277004800": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277004800", "variance": "INVARIANT"}}, "139805246950752": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805397802272"}, {"nodeId": "139805397802720"}]}}, "139805397802272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004800", "args": [{"nodeId": ".1.139805277004800"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": ".1.139805277004800"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805397802720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004800", "args": [{"nodeId": ".1.139805277004800"}]}, {"nodeId": "139805267817248", "args": [{"nodeId": ".1.139805277004800"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805267817248": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443967680"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443968128"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805267817248"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__", "__len__"]}}, ".1.139805267817248": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267817248", "variance": "COVARIANT"}}, "139805443967680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267817248", "args": [{"nodeId": ".1.139805267817248"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805443968128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267817248", "args": [{"nodeId": ".1.139805267817248"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805267817248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805397803168": {"type": "Function", "content": {"typeVars": [".0.139805397803168"], "argTypes": [{"nodeId": ".0.139805397803168"}], "returnType": {"nodeId": ".0.139805397803168"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805397803168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277004800", "args": [{"nodeId": ".1.139805277004800"}]}, "def": "139805397803168", "variance": "INVARIANT"}}, "139805397803616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004800", "args": [{"nodeId": ".1.139805277004800"}]}], "returnType": {"nodeId": ".1.139805277004800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805397804064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004800", "args": [{"nodeId": ".1.139805277004800"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276674656": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397804960"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.139805276674656"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__round__"]}}, ".1.139805276674656": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276674656", "variance": "COVARIANT"}}, "139805397804960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276674656", "args": [{"nodeId": ".1.139805276674656"}]}], "returnType": {"nodeId": ".1.139805276674656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276675008": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397805408"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.139805276675008"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__round__"]}}, ".1.139805276675008": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276675008", "variance": "COVARIANT"}}, "139805397805408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276675008", "args": [{"nodeId": ".1.139805276675008"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805276675008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805268309472": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267814432", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "139805267814784", "args": [{"nodeId": "139805481893056"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}}, "139805267814432": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398662080"}, "name": "__add__"}}], "typeVars": [{"nodeId": ".1.139805267814432"}, {"nodeId": ".2.139805267814432"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__add__"]}}, ".1.139805267814432": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267814432", "variance": "CONTRAVARIANT"}}, ".2.139805267814432": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267814432", "variance": "COVARIANT"}}, "139805398662080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267814432", "args": [{"nodeId": ".1.139805267814432"}, {"nodeId": ".2.139805267814432"}]}, {"nodeId": ".1.139805267814432"}], "returnType": {"nodeId": ".2.139805267814432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267814784": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398662528"}, "name": "__radd__"}}], "typeVars": [{"nodeId": ".1.139805267814784"}, {"nodeId": ".2.139805267814784"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__radd__"]}}, ".1.139805267814784": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267814784", "variance": "CONTRAVARIANT"}}, ".2.139805267814784": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267814784", "variance": "COVARIANT"}}, "139805398662528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267814784", "args": [{"nodeId": ".1.139805267814784"}, {"nodeId": ".2.139805267814784"}]}, {"nodeId": ".1.139805267814784"}], "returnType": {"nodeId": ".2.139805267814784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805277005152": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805246954224"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397947936"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397948384"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139805277005152"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277005152"}]}], "isAbstract": false}}, ".1.139805277005152": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277005152", "variance": "COVARIANT"}}, "139805246954224": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805397942560"}, {"nodeId": "139805397943008"}, {"nodeId": "139805397943456"}, {"nodeId": "139805397943904"}, {"nodeId": "139805397944352"}, {"nodeId": "139805397944800"}]}}, "139805397942560": {"type": "Function", "content": {"typeVars": [".-1.139805397942560"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805397942560"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805277005152", "args": [{"nodeId": "139805246955456"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}}, ".-1.139805397942560": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397942560", "variance": "INVARIANT"}}, "139805246955456": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139805397942560"}]}}, "139805397943008": {"type": "Function", "content": {"typeVars": [".-1.139805397943008", ".-2.139805397943008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805397943008"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805397943008"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805277005152", "args": [{"nodeId": "139805246955680"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}}, ".-1.139805397943008": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943008", "variance": "INVARIANT"}}, ".-2.139805397943008": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943008", "variance": "INVARIANT"}}, "139805246955680": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139805397943008"}, {"nodeId": ".-2.139805397943008"}]}}, "139805397943456": {"type": "Function", "content": {"typeVars": [".-1.139805397943456", ".-2.139805397943456", ".-3.139805397943456"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805397943456"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805397943456"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-3.139805397943456"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805277005152", "args": [{"nodeId": "139805246955904"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}}, ".-1.139805397943456": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943456", "variance": "INVARIANT"}}, ".-2.139805397943456": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943456", "variance": "INVARIANT"}}, ".-3.139805397943456": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943456", "variance": "INVARIANT"}}, "139805246955904": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139805397943456"}, {"nodeId": ".-2.139805397943456"}, {"nodeId": ".-3.139805397943456"}]}}, "139805397943904": {"type": "Function", "content": {"typeVars": [".-1.139805397943904", ".-2.139805397943904", ".-3.139805397943904", ".-4.139805397943904"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805397943904"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805397943904"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-3.139805397943904"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-4.139805397943904"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805277005152", "args": [{"nodeId": "139805246956128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}}, ".-1.139805397943904": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943904", "variance": "INVARIANT"}}, ".-2.139805397943904": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943904", "variance": "INVARIANT"}}, ".-3.139805397943904": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943904", "variance": "INVARIANT"}}, ".-4.139805397943904": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943904", "variance": "INVARIANT"}}, "139805246956128": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139805397943904"}, {"nodeId": ".-2.139805397943904"}, {"nodeId": ".-3.139805397943904"}, {"nodeId": ".-4.139805397943904"}]}}, "139805397944352": {"type": "Function", "content": {"typeVars": [".-1.139805397944352", ".-2.139805397944352", ".-3.139805397944352", ".-4.139805397944352", ".-5.139805397944352"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805397944352"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805397944352"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-3.139805397944352"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-4.139805397944352"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-5.139805397944352"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805277005152", "args": [{"nodeId": "139805246956352"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, "strict"]}}, ".-1.139805397944352": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397944352", "variance": "INVARIANT"}}, ".-2.139805397944352": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397944352", "variance": "INVARIANT"}}, ".-3.139805397944352": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397944352", "variance": "INVARIANT"}}, ".-4.139805397944352": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397944352", "variance": "INVARIANT"}}, ".-5.139805397944352": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397944352", "variance": "INVARIANT"}}, "139805246956352": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139805397944352"}, {"nodeId": ".-2.139805397944352"}, {"nodeId": ".-3.139805397944352"}, {"nodeId": ".-4.139805397944352"}, {"nodeId": ".-5.139805397944352"}]}}, "139805397944800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805277005152", "args": [{"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, null, "iterables", "strict"]}}, "139805397947936": {"type": "Function", "content": {"typeVars": [".0.139805397947936"], "argTypes": [{"nodeId": ".0.139805397947936"}], "returnType": {"nodeId": ".0.139805397947936"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805397947936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005152", "args": [{"nodeId": ".1.139805277005152"}]}, "def": "139805397947936", "variance": "INVARIANT"}}, "139805397948384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005152", "args": [{"nodeId": ".1.139805277005152"}]}], "returnType": {"nodeId": ".1.139805277005152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276676064": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276675712"}], "isAbstract": false}}, "139805276676416": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276675712"}], "isAbstract": false}}, "139805276676768": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276558096"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276675712"}], "isAbstract": false}}, "139805276558096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271910192"}}}, "139805271910192": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805276677472": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276677824": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "content": {"name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276678176": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276678528": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276678880": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397951520"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481881792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805397951520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276678880"}, {"nodeId": "139805481881792"}, {"nodeId": "139805246958816"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}}, "139805246958816": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805276679232": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276679584": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276679936": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397951968"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276556864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276567728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805397951968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276679936"}, {"nodeId": "139805481881792"}, {"nodeId": "139805246958928"}, {"nodeId": "139805246959040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}}, "139805246958928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805246959040": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805276556864": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805276567728": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805276680640": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276680992": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276681344": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276682048": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276682400": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276566608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276557984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276560112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276558432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276560224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276560672"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276566608": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805276557984": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805276560112": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805276558432": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805276560224": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805276560672": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805276682752": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276683104": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276683808": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276678176"}], "isAbstract": false}}, "139805276864576": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276678176"}], "isAbstract": false}}, "139805276864928": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276678176"}], "isAbstract": false}}, "139805276865280": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276679936"}], "isAbstract": false}}, "139805276865984": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276680288"}], "isAbstract": false}}, "139805276866336": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276680992"}], "isAbstract": false}}, "139805276866688": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "content": {"name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276867040": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276867392": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276867744": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276867392"}], "isAbstract": false}}, "139805276868096": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276867392"}], "isAbstract": false}}, "139805276868448": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276867392"}], "isAbstract": false}}, "139805276868800": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276867392"}], "isAbstract": false}}, "139805276869152": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276869504": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276869856": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276870208": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276870560": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276870912": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276871264": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276871616": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276871968": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276681696"}], "isAbstract": false}}, "139805276872320": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276681696"}], "isAbstract": false}}, "139805276872672": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276682400"}], "isAbstract": false}}, "139805276873024": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276872672"}], "isAbstract": false}}, "139805276873376": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276683456"}], "isAbstract": false}}, "139805276873728": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397952416"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276873376"}], "isAbstract": false}}, "139805397952416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276873728"}, {"nodeId": "139805276669024"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "139805276874080": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397952864"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276873376"}], "isAbstract": false}}, "139805397952864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276874080"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "139805276874432": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397953312"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276873376"}], "isAbstract": false}}, "139805397953312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276874432"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "139805276875840": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276876544": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276876896": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276877248": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276877600": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276877952": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276878304": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276878656": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805272039744": {"type": "Protocol", "content": {"module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398275840"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["find_spec"]}}, "139805398275840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272039744"}, {"nodeId": "139805276669024"}, {"nodeId": "139805264195232"}, {"nodeId": "139805264195344"}], "returnType": {"nodeId": "139805264195456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "139805264195232": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805264195344": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805272033408": {"type": "Concrete", "content": {"module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276386496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238435552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271908176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271908400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481890240", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271908512"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410994752"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410995200"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805276386496": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805238435552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033408"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805271908176": {"type": "Union", "content": {"items": [{"nodeId": "139805272033056"}, {"nodeId": "N"}]}}, "139805272033056": {"type": "Protocol", "content": {"module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410993856"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["load_module"]}}, "139805410993856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272033408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805271908400": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805271908512": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805272611424": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344119968"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268568640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268568864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272703824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272703936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805221534656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339009312"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805344119968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611424"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260227840"}, {"nodeId": "139805260227952"}, {"nodeId": "139805260228176"}, {"nodeId": "139805260228288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "loader", "origin", "loader_state", "is_package"]}}, "139805260227840": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805272612480": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343997216"}, "name": "load_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343997664"}, "name": "module_repr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343998112"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343998560"}, "name": "exec_module"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805343997216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272612480"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272033408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805343997664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272612480"}, {"nodeId": "139805272033408"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139805343998112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272612480"}, {"nodeId": "139805272611424"}], "returnType": {"nodeId": "139805260231760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "139805260231760": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805343998560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272612480"}, {"nodeId": "139805272033408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139805260227952": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260228176": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805260228288": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805268568640": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805268568864": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805272703824": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805272703936": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805221534656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611424"}], "returnType": {"nodeId": "139805260228400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260228400": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805339009312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611424"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410994752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033408"}, {"nodeId": "139805276669024"}, {"nodeId": "139805263887520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}}, "139805263887520": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805410995200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033408"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805264195456": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805268310880": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "content": {"name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238951072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239034816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239035040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239035264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239035488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239035712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239035936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239036160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239036384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239036608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239036832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239037056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239037280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239037504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239037728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239038400"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805238951072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264195680"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264195680": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239034816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264195792"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264195792": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239035040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264195904"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264195904": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239035264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196016"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196016": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239035488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196128"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196128": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239035712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196240"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196240": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239035936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196352"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196352": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239036160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196464"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196464": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239036384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196576"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196576": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239036608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196688"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196688": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239036832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196800"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196800": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239037056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196912"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196912": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239037280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197024"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197024": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239037504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197136"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197136": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239037728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197248"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197248": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239038400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197360"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197360": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805268035712": {"type": "Concrete", "content": {"module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "content": {"name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255286144"}, "name": "__new__"}}], "typeVars": [{"nodeId": ".1.139805268035712"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805268035712": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805268035712", "variance": "COVARIANT"}}, "139805255286144": {"type": "Function", "content": {"typeVars": [".-1.139805255286144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805268035712"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.139805255286144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}}, ".-1.139805255286144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255286144", "variance": "INVARIANT"}}, "139805268311232": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "content": {"name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239037952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239040640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239040864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239041088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239041312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239041536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239041760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239041984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239042208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239042432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239042656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893408"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}], "isAbstract": false}}, "139805239037952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197472"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197472": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239040640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197584"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197584": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239040864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197696"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197696": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239041088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197808"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197808": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239041312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197920"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239041536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198032"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198032": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239041760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198144"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198144": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239041984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198256"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198256": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239042208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198368"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198368": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239042432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198480"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198480": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239042656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198592"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198592": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805268311584": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "content": {"name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239044672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239044896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239045120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239045344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239045568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239045792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239046016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239046240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239046464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805268421632"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}], "isAbstract": false}}, "139805239044672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198704"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198704": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239044896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198816"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198816": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239045120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198928"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198928": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239045344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264199040"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264199040": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239045568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264199152"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264199152": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239045792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264199264"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264199264": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239046016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264199376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264199376": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239046240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264199488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264199488": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239046464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264363584"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264363584": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805268421632": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "139805481893056"}]}}, "139805272040096": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268421520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398424192"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805268421520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263531136"}}}, "139805263531136": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805398424192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272040096"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805268508736": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "content": {"name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239048928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239049152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239049376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239049600"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805239048928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264363808"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264363808": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239049152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264363920"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264363920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239049376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264364032"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264364032": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239049600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264364144"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264364144": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805268509088": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_thread_info", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239116064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239117184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239117408"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}], "isAbstract": false}}, "139805239116064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264364368"}], "returnType": {"nodeId": "139805264364480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264364368": {"type": "Tuple", "content": {"items": [{"nodeId": "139805268417264"}, {"nodeId": "139805268417152"}, {"nodeId": "139805264364256"}]}}, "139805268417264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271913664"}}}, "139805271913664": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805268417152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271913216"}}}, "139805271913216": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "139805264364256": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805264364480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271913664"}}}, "139805239117184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264364704"}], "returnType": {"nodeId": "139805264364816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264364704": {"type": "Tuple", "content": {"items": [{"nodeId": "139805268417264"}, {"nodeId": "139805268417152"}, {"nodeId": "139805264364592"}]}}, "139805264364592": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805264364816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271913216"}}}, "139805239117408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264365040"}], "returnType": {"nodeId": "139805264365152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264365040": {"type": "Tuple", "content": {"items": [{"nodeId": "139805268417264"}, {"nodeId": "139805268417152"}, {"nodeId": "139805264364928"}]}}, "139805264364928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805264365152": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268509440": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "content": {"name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239116736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239119200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239119424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239119648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239119872"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}], "isAbstract": false}}, "139805239116736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264365264"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264365264": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805239119200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264365376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264365376": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805239119424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264365488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264365488": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805239119648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264365600"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264365600": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805239119872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264365712"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264365712": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805272040448": {"type": "Protocol", "content": {"module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263535056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268425888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268426112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481881792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["err_msg", "exc_traceback", "exc_type", "exc_value", "object"]}}, "139805263535056": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805268425888": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805268426112": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268509792": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "content": {"name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239123680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239124128"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805268426224"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805268563040"}]}], "isAbstract": false}}, "139805239123680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264368176"}], "returnType": {"nodeId": "139805264368288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264368176": {"type": "Tuple", "content": {"items": [{"nodeId": "139805268417040"}, {"nodeId": "139805263533152"}]}}, "139805268417040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271915456"}}}, "139805271915456": {"type": "Union", "content": {"items": [{"nodeId": "139805276471584"}, {"nodeId": "N"}]}}, "139805276471584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805263533152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271915456"}}}, "139805264368288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271915456"}}}, "139805239124128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264368400"}], "returnType": {"nodeId": "139805264368512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264368400": {"type": "Tuple", "content": {"items": [{"nodeId": "139805268417040"}, {"nodeId": "139805263533152"}]}}, "139805264368512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271915456"}}}, "139805268426224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271915456"}}}, "139805268563040": {"type": "Union", "content": {"items": [{"nodeId": "139805247096416"}, {"nodeId": "N"}]}}, "139805247096416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805267811616": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398658944"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805398658944": {"type": "Function", "content": {"typeVars": [".-1.139805398658944"], "argTypes": [{"nodeId": "139805267811616"}, {"nodeId": ".-1.139805398658944"}], "returnType": {"nodeId": ".-1.139805398658944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139805398658944": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805398658944", "variance": "INVARIANT"}}, "139805267811968": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398659392"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139805267811968"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__next__"]}}, ".1.139805267811968": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267811968", "variance": "COVARIANT"}}, "139805398659392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811968", "args": [{"nodeId": ".1.139805267811968"}]}], "returnType": {"nodeId": ".1.139805267811968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267812320": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398659840"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.139805267812320"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__anext__"]}}, ".1.139805267812320": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267812320", "variance": "COVARIANT"}}, "139805398659840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267812320", "args": [{"nodeId": ".1.139805267812320"}]}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".1.139805267812320"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267813376": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398661184"}, "name": "__le__"}}], "typeVars": [{"nodeId": ".1.139805267813376"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__le__"]}}, ".1.139805267813376": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267813376", "variance": "CONTRAVARIANT"}}, "139805398661184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267813376", "args": [{"nodeId": ".1.139805267813376"}]}, {"nodeId": ".1.139805267813376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267813728": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398661632"}, "name": "__ge__"}}], "typeVars": [{"nodeId": ".1.139805267813728"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__ge__"]}}, ".1.139805267813728": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267813728", "variance": "CONTRAVARIANT"}}, "139805398661632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267813728", "args": [{"nodeId": ".1.139805267813728"}]}, {"nodeId": ".1.139805267813728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267814080": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267812672", "args": [{"nodeId": "A"}]}, {"nodeId": "139805267813024", "args": [{"nodeId": "A"}]}, {"nodeId": "139805267813376", "args": [{"nodeId": "A"}]}, {"nodeId": "139805267813728", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}}, "139805267815136": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443964992"}, "name": "__sub__"}}], "typeVars": [{"nodeId": ".1.139805267815136"}, {"nodeId": ".2.139805267815136"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__sub__"]}}, ".1.139805267815136": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267815136", "variance": "CONTRAVARIANT"}}, ".2.139805267815136": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267815136", "variance": "COVARIANT"}}, "139805443964992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267815136", "args": [{"nodeId": ".1.139805267815136"}, {"nodeId": ".2.139805267815136"}]}, {"nodeId": ".1.139805267815136"}], "returnType": {"nodeId": ".2.139805267815136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267815488": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443965440"}, "name": "__rsub__"}}], "typeVars": [{"nodeId": ".1.139805267815488"}, {"nodeId": ".2.139805267815488"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__rsub__"]}}, ".1.139805267815488": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267815488", "variance": "CONTRAVARIANT"}}, ".2.139805267815488": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267815488", "variance": "COVARIANT"}}, "139805443965440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267815488", "args": [{"nodeId": ".1.139805267815488"}, {"nodeId": ".2.139805267815488"}]}, {"nodeId": ".1.139805267815488"}], "returnType": {"nodeId": ".2.139805267815488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267815840": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443965888"}, "name": "__divmod__"}}], "typeVars": [{"nodeId": ".1.139805267815840"}, {"nodeId": ".2.139805267815840"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__divmod__"]}}, ".1.139805267815840": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267815840", "variance": "CONTRAVARIANT"}}, ".2.139805267815840": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267815840", "variance": "COVARIANT"}}, "139805443965888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267815840", "args": [{"nodeId": ".1.139805267815840"}, {"nodeId": ".2.139805267815840"}]}, {"nodeId": ".1.139805267815840"}], "returnType": {"nodeId": ".2.139805267815840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267816192": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443966336"}, "name": "__rdivmod__"}}], "typeVars": [{"nodeId": ".1.139805267816192"}, {"nodeId": ".2.139805267816192"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__rdivmod__"]}}, ".1.139805267816192": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267816192", "variance": "CONTRAVARIANT"}}, ".2.139805267816192": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267816192", "variance": "COVARIANT"}}, "139805443966336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267816192", "args": [{"nodeId": ".1.139805267816192"}, {"nodeId": ".2.139805267816192"}]}, {"nodeId": ".1.139805267816192"}], "returnType": {"nodeId": ".2.139805267816192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805267816544": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443966784"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.139805267816544"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__iter__"]}}, ".1.139805267816544": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267816544", "variance": "COVARIANT"}}, "139805443966784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267816544", "args": [{"nodeId": ".1.139805267816544"}]}], "returnType": {"nodeId": ".1.139805267816544"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805267816896": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443967232"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.139805267816896"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__aiter__"]}}, ".1.139805267816896": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267816896", "variance": "COVARIANT"}}, "139805443967232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267816896", "args": [{"nodeId": ".1.139805267816896"}]}], "returnType": {"nodeId": ".1.139805267816896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267818656": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443970368"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443970816"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805267818656"}, {"nodeId": ".2.139805267818656"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__contains__", "__getitem__"]}}, ".1.139805267818656": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267818656", "variance": "CONTRAVARIANT"}}, ".2.139805267818656": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267818656", "variance": "COVARIANT"}}, "139805443970368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267818656", "args": [{"nodeId": ".1.139805267818656"}, {"nodeId": ".2.139805267818656"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805443970816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267818656", "args": [{"nodeId": ".1.139805267818656"}, {"nodeId": ".2.139805267818656"}]}, {"nodeId": ".1.139805267818656"}], "returnType": {"nodeId": ".2.139805267818656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267819008": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443971264"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443971712"}, "name": "__delitem__"}}], "typeVars": [{"nodeId": ".1.139805267819008"}, {"nodeId": ".2.139805267819008"}], "bases": [{"nodeId": "139805267818656", "args": [{"nodeId": ".1.139805267819008"}, {"nodeId": ".2.139805267819008"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}}, ".1.139805267819008": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267819008", "variance": "CONTRAVARIANT"}}, ".2.139805267819008": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267819008", "variance": "INVARIANT"}}, "139805443971264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267819008", "args": [{"nodeId": ".1.139805267819008"}, {"nodeId": ".2.139805267819008"}]}, {"nodeId": ".1.139805267819008"}, {"nodeId": ".2.139805267819008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805443971712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267819008", "args": [{"nodeId": ".1.139805267819008"}, {"nodeId": ".2.139805267819008"}]}, {"nodeId": ".1.139805267819008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267819360": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443972160"}, "name": "fileno"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["fileno"]}}, "139805443972160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267819360"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267820064": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443973056"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.139805267820064"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["readline"]}}, ".1.139805267820064": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267820064", "variance": "COVARIANT"}}, "139805443973056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267820064", "args": [{"nodeId": ".1.139805267820064"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805267820064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805268033600": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443973504"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.139805268033600"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["readline"]}}, ".1.139805268033600": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805268033600", "variance": "COVARIANT"}}, "139805443973504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268033600", "args": [{"nodeId": ".1.139805268033600"}]}], "returnType": {"nodeId": ".1.139805268033600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805268034304": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SliceableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443974400"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805277011488"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "139805443974400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268034304"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805268034656": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IndexableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443974848"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805277011488"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "139805443974848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268034656"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805268035008": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItemBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443975296"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255946912"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805268034304"}, {"nodeId": "139805268034656"}], "protocolMembers": ["__buffer__", "__contains__", "__getitem__"]}}, "139805443975296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268035008"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255946912": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805443975744"}, {"nodeId": "139805443976192"}]}}, "139805443975744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268035008"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805443976192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268035008"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805268035360": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SizedBuffer", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276997760"}, {"nodeId": "139805277011488"}], "protocolMembers": ["__buffer__", "__len__"]}}, "139805268036064": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "DataclassInstance", "members": [{"kind": "Variable", "content": {"name": "__dataclass_fields__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805267651648", "args": [{"nodeId": "A"}]}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__dataclass_fields__"]}}, "139805267651648": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "Field", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272712000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272712448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272712672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272032352", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272712784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339181664"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339182560"}, "name": "__set_name__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339183008"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805267651648"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805267651648": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267651648", "variance": "INVARIANT"}}, "139805272712000": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805267651648"}, {"nodeId": "0"}]}}, "139805272712448": {"type": "Union", "content": {"items": [{"nodeId": "139805267651296", "args": [{"nodeId": ".1.139805267651648"}]}, {"nodeId": "0"}]}}, "139805267651296": {"type": "Protocol", "content": {"module": "dataclasses", "simpleName": "_DefaultFactory", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339181216"}, "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805267651296"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805267651296": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267651296", "variance": "COVARIANT"}}, "139805339181216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267651296", "args": [{"nodeId": ".1.139805267651296"}]}], "returnType": {"nodeId": ".1.139805267651296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272712672": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805272712784": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "0"}]}}, "139805339181664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267651648", "args": [{"nodeId": ".1.139805267651648"}]}, {"nodeId": ".1.139805267651648"}, {"nodeId": "139805255278752"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805255442368"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "default", "default_factory", "init", "repr", "hash", "compare", "metadata", "kw_only"]}}, "139805255278752": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".1.139805267651648"}, "argKinds": [], "argNames": []}}, "139805255442368": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805339182560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267651648", "args": [{"nodeId": ".1.139805267651648"}]}, {"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}}, "139805339183008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805277008672": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443978432"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443978880"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443979328"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805443978432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008672"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805443978880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008672"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805277008672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805443979328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008672"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805277008672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805277009024": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003392", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003392", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410230336"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410230784"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410231232"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410231680"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410232128"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410232576"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410233024"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410233472"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410233920"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410234368"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}], "isAbstract": true}}, "139805410230336": {"type": "Function", "content": {"typeVars": [".0.139805410230336"], "argTypes": [{"nodeId": ".0.139805410230336"}], "returnType": {"nodeId": ".0.139805410230336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805410230336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277009024"}, "def": "139805410230336", "variance": "INVARIANT"}}, "139805410230784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009024"}, {"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "139805410231232": {"type": "Function", "content": {"typeVars": [".-1.139805410231232"], "argTypes": [{"nodeId": "139805277009024"}, {"nodeId": "0"}, {"nodeId": ".-1.139805410231232"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.139805410231232": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805410231232", "variance": "INVARIANT"}}, "139805410231680": {"type": "Function", "content": {"typeVars": [".-1.139805410231680"], "argTypes": [{"nodeId": ".-1.139805410231680"}, {"nodeId": ".-1.139805410231680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139805410231680": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805410231680", "variance": "INVARIANT"}}, "139805410232128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009024"}], "returnType": {"nodeId": "139805277002688", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410232576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009024"}], "returnType": {"nodeId": "139805277001984", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410233024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009024"}], "returnType": {"nodeId": "139805277002336", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410233472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009024"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410233920": {"type": "Function", "content": {"typeVars": [".0.139805410233920"], "argTypes": [{"nodeId": ".0.139805410233920"}, {"nodeId": ".0.139805410233920"}], "returnType": {"nodeId": ".0.139805410233920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805410233920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277009024"}, "def": "139805410233920", "variance": "INVARIANT"}}, "139805410234368": {"type": "Function", "content": {"typeVars": [".0.139805410234368"], "argTypes": [{"nodeId": ".0.139805410234368"}, {"nodeId": ".0.139805410234368"}], "returnType": {"nodeId": ".0.139805410234368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805410234368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277009024"}, "def": "139805410234368", "variance": "INVARIANT"}}, "139805277009728": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263472208"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805247279104"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410245120"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410246016"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "139805263472208": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410243776"}, {"nodeId": "139805410244224"}]}}, "139805410243776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009728"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805263681280"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}}, "139805263681280": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}}, "139805410244224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009728"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}}, "139805247279104": {"type": "Function", "content": {"typeVars": [".0.139805247279104"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139805247279104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.139805247279104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277009728"}, "def": "139805247279104", "variance": "INVARIANT"}}, "139805410245120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009728"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410246016": {"type": "Function", "content": {"typeVars": [".0.139805410246016"], "argTypes": [{"nodeId": ".0.139805410246016"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805410246016"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.139805410246016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277009728"}, "def": "139805410246016", "variance": "INVARIANT"}}, "139805277010080": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247280000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247280448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247280672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247280896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247281120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247281344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247281568"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410413696"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410414144"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410414592"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805247280000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247280448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}], "returnType": {"nodeId": "139805263682176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263682176": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805247280672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247280896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247281120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247281344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247281568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}], "returnType": {"nodeId": "139805263682512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263682512": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805410413696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}, {"nodeId": "139805263682848"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805263683072"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant", "default", "infer_variance"]}}, "139805263682848": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805263683072": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805410414144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805277008672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410414592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805277008672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805277010784": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247286272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247287392"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410420416"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410420864"}, "name": "__iter__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805247286272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010784"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247287392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010784"}], "returnType": {"nodeId": "139805263684640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263684640": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805410420416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010784"}, {"nodeId": "139805276669024"}, {"nodeId": "139805263684864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}}, "139805263684864": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805410420864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805277011136": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeAliasType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410422656"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__value__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247288736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__type_params__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247289632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247289856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247290080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247290304"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410425344"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410425792"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410426240"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805410422656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805263685648"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "type_params"]}}, "139805263685648": {"type": "Union", "content": {"items": [{"nodeId": "139805277010080"}, {"nodeId": "139805277010432"}, {"nodeId": "139805277010784"}]}}, "139805247288736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247289632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805263685872"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263685872": {"type": "Union", "content": {"items": [{"nodeId": "139805277010080"}, {"nodeId": "139805277010432"}, {"nodeId": "139805277010784"}]}}, "139805247289856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247290080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247290304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}], "returnType": {"nodeId": "139805263686096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263686096": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805410425344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410425792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805277008672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410426240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805277008672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805272031648": {"type": "Concrete", "content": {"module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238299552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272032000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276386720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238300000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238300672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410512896"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410513344"}, "name": "__call__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263882032"}, "items": [{"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238299552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031648"}], "returnType": {"nodeId": "139805263884720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263884720": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805272031296"}]}, {"nodeId": "N"}]}}, "139805276386720": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805238300000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031648"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238300672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031648"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410512896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031648"}, {"nodeId": "139805272032000"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "139805263885168"}, {"nodeId": "139805263885280"}, {"nodeId": "139805263885392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}}, "139805263885168": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805263885280": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805263885392": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805272031296"}]}, {"nodeId": "N"}]}}, "139805410513344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031648"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805263882032": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410513792"}, {"nodeId": "139805410514240"}]}}, "139805410513792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031648"}, {"nodeId": "N"}, {"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805272031648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805410514240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031648"}, {"nodeId": "139805481881792"}, {"nodeId": "139805263885952"}], "returnType": {"nodeId": "139805272035168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805263885952": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805272035168": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238587040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238587488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238587712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238587936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238588160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238588384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414908736"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414909184"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238587040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}], "returnType": {"nodeId": "139805264186384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264186384": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805272031296"}]}, {"nodeId": "N"}]}}, "139805238587488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}], "returnType": {"nodeId": "139805264186608"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264186608": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805238587712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}], "returnType": {"nodeId": "139805272034816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272034816": {"type": "Concrete", "content": {"module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414905600"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805414905600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034816"}, {"nodeId": "139805481881792"}, {"nodeId": "139805264186272"}], "returnType": {"nodeId": "139805272031648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}}, "139805264186272": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805238587936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238588160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238588384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414908736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}, {"nodeId": "139805276231200"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805276231200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805414909184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805272032704": {"type": "Concrete", "content": {"module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410992064"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410992512"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410992960"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410993408"}, "name": "__delattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805410992064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032704"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139805410992512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032704"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410992960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032704"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805410993408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032704"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805272033760": {"type": "Concrete", "content": {"module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238436672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410996544"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410996992"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410997440"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263883712"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}], "bases": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}], "isAbstract": false}}, ".1.139805272033760": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272033760", "variance": "COVARIANT"}}, ".2.139805272033760": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272033760", "variance": "CONTRAVARIANT"}}, ".3.139805272033760": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272033760", "variance": "COVARIANT"}}, "139805238436672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}], "returnType": {"nodeId": "139805263887856"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263887856": {"type": "Union", "content": {"items": [{"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805410996544": {"type": "Function", "content": {"typeVars": [".0.139805410996544"], "argTypes": [{"nodeId": ".0.139805410996544"}], "returnType": {"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805410996544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}, "def": "139805410996544", "variance": "INVARIANT"}}, "139805410996992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}], "returnType": {"nodeId": ".1.139805272033760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410997440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}, {"nodeId": ".2.139805272033760"}], "returnType": {"nodeId": ".1.139805272033760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805263883712": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410997888"}, {"nodeId": "139805410998336"}]}}, "139805410997888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}, {"nodeId": "0"}, {"nodeId": "139805263888192"}, {"nodeId": "139805264183360"}], "returnType": {"nodeId": ".1.139805272033760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805263888192": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "139805481881792"}]}}, "139805264183360": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805410998336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}, {"nodeId": "139805276675712"}, {"nodeId": "N"}, {"nodeId": "139805264183472"}], "returnType": {"nodeId": ".1.139805272033760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805264183472": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805272034112": {"type": "Concrete", "content": {"module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238442272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410999680"}, "name": "__aiter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414899776"}, "name": "__anext__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414900224"}, "name": "asend"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263887968"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414901568"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414902016"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}], "bases": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}], "isAbstract": false}}, ".1.139805272034112": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272034112", "variance": "COVARIANT"}}, ".2.139805272034112": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272034112", "variance": "CONTRAVARIANT"}}, "139805238442272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}], "returnType": {"nodeId": "139805264183696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264183696": {"type": "Union", "content": {"items": [{"nodeId": "139805481887424", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805410999680": {"type": "Function", "content": {"typeVars": [".0.139805410999680"], "argTypes": [{"nodeId": ".0.139805410999680"}], "returnType": {"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805410999680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}, "def": "139805410999680", "variance": "INVARIANT"}}, "139805414899776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139805272034112"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414900224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}, {"nodeId": ".2.139805272034112"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139805272034112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805263887968": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805276231424"}, {"nodeId": "139805414900672"}]}}, "139805276231424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}, {"nodeId": "0"}, {"nodeId": "139805264184480"}, {"nodeId": "139805264184592"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139805272034112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805264184480": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "139805481881792"}]}}, "139805264184592": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805414900672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}, {"nodeId": "139805276675712"}, {"nodeId": "N"}, {"nodeId": "139805264184816"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139805272034112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805264184816": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805414901568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414902016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805272034464": {"type": "Concrete", "content": {"module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238581440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414903360"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414903808"}, "name": "__await__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414904256"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805264184704"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}], "bases": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}]}], "isAbstract": false}}, ".1.139805272034464": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272034464", "variance": "COVARIANT"}}, ".2.139805272034464": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272034464", "variance": "CONTRAVARIANT"}}, ".3.139805272034464": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272034464", "variance": "COVARIANT"}}, "139805238581440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034464", "args": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}]}], "returnType": {"nodeId": "139805264185600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264185600": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805264185488"}]}, {"nodeId": "N"}]}}, "139805264185488": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805414903360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034464", "args": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414903808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034464", "args": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}]}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.139805272034464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414904256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034464", "args": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}]}, {"nodeId": ".2.139805272034464"}], "returnType": {"nodeId": ".1.139805272034464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805264184704": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414904704"}, {"nodeId": "139805414905152"}]}}, "139805414904704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034464", "args": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}]}, {"nodeId": "0"}, {"nodeId": "139805264185936"}, {"nodeId": "139805264186048"}], "returnType": {"nodeId": ".1.139805272034464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805264185936": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "139805481881792"}]}}, "139805264186048": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805414905152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034464", "args": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}]}, {"nodeId": "139805276675712"}, {"nodeId": "N"}, {"nodeId": "139805264186160"}], "returnType": {"nodeId": ".1.139805272034464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805264186160": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805272035520": {"type": "Concrete", "content": {"module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238589952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238590176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238590400"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414910976"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238589952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035520"}], "returnType": {"nodeId": "139805264187280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264187280": {"type": "Union", "content": {"items": [{"nodeId": "139805481881792"}, {"nodeId": "139805272033408"}]}}, "139805238590176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035520"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238590400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035520"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414910976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035520"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805272035872": {"type": "Concrete", "content": {"module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238657984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238658432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238658656"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414912768"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414913216"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238657984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035872"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238658432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035872"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238658656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035872"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414912768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035872"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805414913216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035872"}, {"nodeId": "A"}, {"nodeId": "139805264188176"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805264188176": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805272036224": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238660448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238660672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238660896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238661120"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414915456"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414785088"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414785536"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238660448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036224"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238660672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036224"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238660896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036224"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238661120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036224"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414915456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036224"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805414785088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036224"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414785536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036224"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805272036576": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238663808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238664032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238664256"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414787328"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414787776"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238663808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036576"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238664032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036576"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238664256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036576"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414787328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036576"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805414787776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036576"}, {"nodeId": "A"}, {"nodeId": "139805264189184"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805264189184": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805272036928": {"type": "Concrete", "content": {"module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238666048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238666272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238666496"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414789568"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414790016"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238666048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036928"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238666272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036928"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238666496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036928"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414789568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036928"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805414790016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036928"}, {"nodeId": "A"}, {"nodeId": "139805264189856"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805264189856": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805272037984": {"type": "Concrete", "content": {"module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242515392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238755616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238756064"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414797184"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414797632"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414798080"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805242515392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037984"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238755616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037984"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238756064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037984"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414797184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037984"}, {"nodeId": "A"}, {"nodeId": "139805264190976"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805264190976": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805414797632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037984"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805414798080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037984"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805272038336": {"type": "Concrete", "content": {"module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238757856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238758080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238758304"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414799872"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414800320"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414800768"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238757856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038336"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238758080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038336"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238758304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038336"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414799872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038336"}, {"nodeId": "A"}, {"nodeId": "139805264191648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805264191648": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805414800320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038336"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805414800768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038336"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805272039040": {"type": "Concrete", "content": {"module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414611136"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805414611136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272039040"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150972384": {"type": "Protocol", "content": {"module": "numpy.core.records", "simpleName": "_SupportsReadInto", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805393799424"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805393799872"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805393800320"}, "name": "readinto"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["readinto", "seek", "tell"]}}, "139805393799424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972384"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805393799872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972384"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805393800320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972384"}, {"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805154868416": {"type": "Protocol", "content": {"module": "numpy.core.multiarray", "simpleName": "_SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805394266688"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805394267136"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805154868416"}, {"nodeId": ".2.139805154868416"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__", "__len__"]}}, ".1.139805154868416": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154868416", "variance": "CONTRAVARIANT"}}, ".2.139805154868416": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154868416", "variance": "COVARIANT"}}, "139805394266688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868416", "args": [{"nodeId": ".1.139805154868416"}, {"nodeId": ".2.139805154868416"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805394267136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868416", "args": [{"nodeId": ".1.139805154868416"}, {"nodeId": ".2.139805154868416"}]}, {"nodeId": ".1.139805154868416"}], "returnType": {"nodeId": ".2.139805154868416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805154867712": {"type": "Protocol", "content": {"module": "numpy.core.numerictypes", "simpleName": "_CastFunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805385943392"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805385943392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154867712"}, {"nodeId": "139805205198016"}, {"nodeId": "139805205198912"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "k"]}}, "139805205198016": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805205198912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805150982240": {"type": "Concrete", "content": {"module": "numpy.core.numerictypes", "simpleName": "_typedict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805385943840"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805150982240"}], "bases": [{"nodeId": "139805276671488", "args": [{"nodeId": "0"}, {"nodeId": ".1.139805150982240"}]}], "isAbstract": false}}, ".1.139805150982240": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805150982240", "variance": "INVARIANT"}}, "139805385943840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150982240", "args": [{"nodeId": ".1.139805150982240"}]}, {"nodeId": "139805205199024"}], "returnType": {"nodeId": ".1.139805150982240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805205199024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805154867360": {"type": "Protocol", "content": {"module": "numpy.lib.arraypad", "simpleName": "_ModeFunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "vector", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iaxis_pad_width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iaxis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805390156992"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805390156992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154867360"}, {"nodeId": "0"}, {"nodeId": "139805205184800"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}}, "139805205184800": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805154866656": {"type": "Protocol", "content": {"module": "numpy.lib.function_base", "simpleName": "_TrimZerosSequence", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380923616"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380924064"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380924512"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.139805154866656"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__", "__iter__", "__len__"]}}, ".1.139805154866656": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154866656", "variance": "COVARIANT"}}, "139805380923616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154866656", "args": [{"nodeId": ".1.139805154866656"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805380924064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154866656", "args": [{"nodeId": ".1.139805154866656"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": ".1.139805154866656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805380924512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154866656", "args": [{"nodeId": ".1.139805154866656"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805154867008": {"type": "Protocol", "content": {"module": "numpy.lib.function_base", "simpleName": "_SupportsWriteFlush", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380924960"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380925408"}, "name": "flush"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["flush", "write"]}}, "139805380924960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154867008"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805380925408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154867008"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154864192": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "nd_grid", "members": [{"kind": "Variable", "content": {"name": "sparse", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805154864192"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sparse", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381300448"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805167601920"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805154864192"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805154864192": {"type": "TypeVar", "content": {"varName": "_BoolType", "values": [{"nodeId": "0"}, {"nodeId": "0"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154864192", "variance": "INVARIANT"}}, "139805381300448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154864192", "args": [{"nodeId": ".1.139805154864192"}]}, {"nodeId": ".1.139805154864192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sparse"]}}, "139805167601920": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805163314912"}, {"nodeId": "139805381301344"}]}}, "139805163314912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154864192", "args": [{"nodeId": "0"}]}, {"nodeId": "139805167604272"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805167604272": {"type": "Union", "content": {"items": [{"nodeId": "139805276670432"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276670432"}]}]}}, "139805381301344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154864192", "args": [{"nodeId": "0"}]}, {"nodeId": "139805167604720"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805167604720": {"type": "Union", "content": {"items": [{"nodeId": "139805276670432"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276670432"}]}]}}, "139805154864544": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "MGridClass", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381301792"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805154864192", "args": [{"nodeId": "0"}]}], "isAbstract": false}}, "139805381301792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154864544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154864896": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "OGridClass", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381302240"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805154864192", "args": [{"nodeId": "0"}]}], "isAbstract": false}}, "139805381302240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154864896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154865248": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "AxisConcatenator", "members": [{"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381302688"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805167601808"}, "items": [{"kind": "Variable", "content": {"name": "concatenate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "concatenate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "concatenate"}}, {"kind": "Variable", "content": {"name": "makemat", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805130200832"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381304480"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805381302688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154865248"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "matrix", "ndmin", "trans1d"]}}, "139805167601808": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805163206048"}, {"nodeId": "139805381303584"}]}}, "139805163206048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167605392"}, {"nodeId": "139805276997408"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["a", "axis", "out"]}}, "139805167605392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805381303584": {"type": "Function", "content": {"typeVars": [".-1.139805381303584"], "argTypes": [{"nodeId": "139805167605952"}, {"nodeId": "139805276997408"}, {"nodeId": ".-1.139805381303584"}], "returnType": {"nodeId": ".-1.139805381303584"}, "argKinds": ["ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["a", "axis", "out"]}}, "139805167605952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, ".-1.139805381303584": {"type": "TypeVar", "content": {"varName": "_ArrayType", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805381303584", "variance": "INVARIANT"}}, "139805130200832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167605280"}, {"nodeId": "139805167606064"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["data", "dtype", "copy"]}}, "139805167605280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805167606064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805381304480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154865248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805154865600": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "RClass", "members": [{"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381304928"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805154865248"}], "isAbstract": false}}, "139805381304928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154865600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154865952": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "CClass", "members": [{"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381305376"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805154865248"}], "isAbstract": false}}, "139805381305376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154865952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154866304": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "IndexExpression", "members": [{"kind": "Variable", "content": {"name": "maketuple", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805154866304"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketuple", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381305824"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805154598624"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805154866304"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805154866304": {"type": "TypeVar", "content": {"varName": "_BoolType", "values": [{"nodeId": "0"}, {"nodeId": "0"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154866304", "variance": "INVARIANT"}}, "139805381305824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154866304", "args": [{"nodeId": ".1.139805154866304"}]}, {"nodeId": ".1.139805154866304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "maketuple"]}}, "139805154598624": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805381306272"}, {"nodeId": "139805381306720"}, {"nodeId": "139805381307168"}]}}, "139805381306272": {"type": "Function", "content": {"typeVars": [".-1.139805381306272"], "argTypes": [{"nodeId": "139805154866304", "args": [{"nodeId": ".1.139805154866304"}]}, {"nodeId": ".-1.139805381306272"}], "returnType": {"nodeId": ".-1.139805381306272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805381306272": {"type": "TypeVar", "content": {"varName": "_TupType", "values": [], "upperBound": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "def": "139805381306272", "variance": "INVARIANT"}}, "139805381306720": {"type": "Function", "content": {"typeVars": [".-1.139805381306720"], "argTypes": [{"nodeId": "139805154866304", "args": [{"nodeId": "0"}]}, {"nodeId": ".-1.139805381306720"}], "returnType": {"nodeId": "139805167606176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805381306720": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805381306720", "variance": "INVARIANT"}}, "139805167606176": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139805381306720"}]}}, "139805381307168": {"type": "Function", "content": {"typeVars": [".-1.139805381307168"], "argTypes": [{"nodeId": "139805154866304", "args": [{"nodeId": "0"}]}, {"nodeId": ".-1.139805381307168"}], "returnType": {"nodeId": ".-1.139805381307168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805381307168": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805381307168", "variance": "INVARIANT"}}, "139805154862080": {"type": "Protocol", "content": {"module": "numpy.lib.npyio", "simpleName": "_SupportsGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381310752"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805154862080"}, {"nodeId": ".2.139805154862080"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__"]}}, ".1.139805154862080": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154862080", "variance": "CONTRAVARIANT"}}, ".2.139805154862080": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154862080", "variance": "COVARIANT"}}, "139805381310752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154862080", "args": [{"nodeId": ".1.139805154862080"}, {"nodeId": ".2.139805154862080"}]}, {"nodeId": ".1.139805154862080"}], "returnType": {"nodeId": ".2.139805154862080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805154862432": {"type": "Protocol", "content": {"module": "numpy.lib.npyio", "simpleName": "_SupportsRead", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381311200"}, "name": "read"}}], "typeVars": [{"nodeId": ".1.139805154862432"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["read"]}}, ".1.139805154862432": {"type": "TypeVar", "content": {"varName": "_CharType_co", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154862432", "variance": "COVARIANT"}}, "139805381311200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154862432", "args": [{"nodeId": ".1.139805154862432"}]}], "returnType": {"nodeId": ".1.139805154862432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154862784": {"type": "Protocol", "content": {"module": "numpy.lib.npyio", "simpleName": "_SupportsReadSeek", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381311648"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381312096"}, "name": "seek"}}], "typeVars": [{"nodeId": ".1.139805154862784"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["read", "seek"]}}, ".1.139805154862784": {"type": "TypeVar", "content": {"varName": "_CharType_co", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154862784", "variance": "COVARIANT"}}, "139805381311648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154862784", "args": [{"nodeId": ".1.139805154862784"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805154862784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805381312096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154862784", "args": [{"nodeId": ".1.139805154862784"}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805154863136": {"type": "Protocol", "content": {"module": "numpy.lib.npyio", "simpleName": "_SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376954656"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.139805154863136"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["write"]}}, ".1.139805154863136": {"type": "TypeVar", "content": {"varName": "_CharType_contra", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154863136", "variance": "CONTRAVARIANT"}}, "139805376954656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863136", "args": [{"nodeId": ".1.139805154863136"}]}, {"nodeId": ".1.139805154863136"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805154863488": {"type": "Concrete", "content": {"module": "numpy.lib.npyio", "simpleName": "BagObj", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376955104"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376955552"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376956000"}, "name": "__dir__"}}], "typeVars": [{"nodeId": ".1.139805154863488"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805154863488": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154863488", "variance": "COVARIANT"}}, "139805376955104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863488", "args": [{"nodeId": ".1.139805154863488"}]}, {"nodeId": "139805154862080", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".1.139805154863488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805376955552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863488", "args": [{"nodeId": ".1.139805154863488"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".1.139805154863488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805376956000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863488", "args": [{"nodeId": ".1.139805154863488"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154863840": {"type": "Concrete", "content": {"module": "numpy.lib.npyio", "simpleName": "NpzFile", "members": [{"kind": "Variable", "content": {"name": "zip", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805184479776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805154594928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "allow_pickle", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pickle_kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805154594704"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805154813744"}, "items": [{"kind": "Variable", "content": {"name": "f", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805129867776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "f"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "own_fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "allow_pickle", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pickle_kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376957344"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376957792"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376958240"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376958688"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376959136"}, "name": "__del__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376959584"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376960032"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376960480"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}], "isAbstract": false}}, "139805184479776": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "ZipFile", "members": [{"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179797328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "debug", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805184480480"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179797776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "NameToInfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805184480480"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compression", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179797888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179798112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179798000"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compression", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "allowZip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict_timestamps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339221376"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334831616"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334832064"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334832512"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334832960"}, "name": "getinfo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334833408"}, "name": "infolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334833856"}, "name": "namelist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "force_zip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334834304"}, "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "member", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334834752"}, "name": "extract"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "members", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334835200"}, "name": "extractall"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334835648"}, "name": "printdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334836096"}, "name": "setpassword"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334836544"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334836992"}, "name": "testzip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compress_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334837440"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "zinfo_or_arcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compress_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334837888"}, "name": "writestr"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805179797328": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805184480480": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "ZipInfo", "members": [{"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "date_time", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179798560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compress_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_system", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_version", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "extract_version", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reserved", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flag_bits", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "volume", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "internal_attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "external_attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "CRC", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compress_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "file_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orig_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "date_time", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334839680"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "from_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179885856"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334841024"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "zip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334841472"}, "name": "FileHeader"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805179798560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179639088"}}}, "139805179639088": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805334839680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480480"}, {"nodeId": "139805276669024"}, {"nodeId": "139805180199200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "filename", "date_time"]}}, "139805180199200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179639088"}}}, "139805179885856": {"type": "Function", "content": {"typeVars": [".0.139805179885856"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805180199312"}, {"nodeId": "139805180199536"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": ".0.139805179885856"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "filename", "arcname", "strict_timestamps"]}}, "139805180199312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805276562576": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}]}}, "139805180199536": {"type": "Union", "content": {"items": [{"nodeId": "139805180199424"}, {"nodeId": "N"}]}}, "139805180199424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, ".0.139805179885856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184480480"}, "def": "139805179885856", "variance": "INVARIANT"}}, "139805334841024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480480"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805334841472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480480"}, {"nodeId": "139805180199648"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "zip64"]}}, "139805180199648": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805179797776": {"type": "Union", "content": {"items": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "N"}]}}, "139805179797888": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805179798112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179796880"}}}, "139805179796880": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805179798000": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805339221376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179802032"}, {"nodeId": "139805179802144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805179802256"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "file", "mode", "compression", "allowZip64", "compresslevel", "strict_timestamps"]}}, "139805179802032": {"type": "Union", "content": {"items": [{"nodeId": "139805179801920"}, {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}]}}, "139805179801920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805179802144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179796880"}}}, "139805179802256": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805334831616": {"type": "Function", "content": {"typeVars": [".0.139805334831616"], "argTypes": [{"nodeId": ".0.139805334831616"}], "returnType": {"nodeId": ".0.139805334831616"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805334831616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184479776"}, "def": "139805334831616", "variance": "INVARIANT"}}, "139805334832064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179802368"}, {"nodeId": "139805179802480"}, {"nodeId": "139805179802592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805179802368": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805179802480": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805179802592": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805334832512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805334832960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805184480480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "139805334833408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805184480480"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805334833856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805334834304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179802704"}, {"nodeId": "139805179802816"}, {"nodeId": "139805179802928"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "mode", "pwd", "force_zip64"]}}, "139805179802704": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805184480480"}]}}, "139805179802816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179795536"}}}, "139805179795536": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805179802928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805334834752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179803040"}, {"nodeId": "139805179803264"}, {"nodeId": "139805179803376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "member", "path", "pwd"]}}, "139805179803040": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805184480480"}]}}, "139805179803264": {"type": "Union", "content": {"items": [{"nodeId": "139805179803152"}, {"nodeId": "N"}]}}, "139805179803152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805179803376": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805334835200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179803600"}, {"nodeId": "139805179803824"}, {"nodeId": "139805179803936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "path", "members", "pwd"]}}, "139805179803600": {"type": "Union", "content": {"items": [{"nodeId": "139805179803488"}, {"nodeId": "N"}]}}, "139805179803488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805179803824": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805179803712"}]}, {"nodeId": "N"}]}}, "139805179803712": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805184480480"}]}}, "139805179803936": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805334835648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179804048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "file"]}}, "139805179804048": {"type": "Union", "content": {"items": [{"nodeId": "139805184479424"}, {"nodeId": "N"}]}}, "139805184479424": {"type": "Protocol", "content": {"module": "zipfile", "simpleName": "_Writer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339220032"}, "name": "write"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["write"]}}, "139805339220032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479424"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805334836096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pwd"]}}, "139805334836544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179804160"}, {"nodeId": "139805179804272"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "pwd"]}}, "139805179804160": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805184480480"}]}}, "139805179804272": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805334836992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}], "returnType": {"nodeId": "139805179804384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805179804384": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805334837440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179804496"}, {"nodeId": "139805179804720"}, {"nodeId": "139805179804832"}, {"nodeId": "139805179804944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "filename", "arcname", "compress_type", "compresslevel"]}}, "139805179804496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805179804720": {"type": "Union", "content": {"items": [{"nodeId": "139805179804608"}, {"nodeId": "N"}]}}, "139805179804608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805179804832": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805179804944": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805334837888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179805056"}, {"nodeId": "139805179805168"}, {"nodeId": "139805179805280"}, {"nodeId": "139805179805392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "zinfo_or_arcname", "data", "compress_type", "compresslevel"]}}, "139805179805056": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805184480480"}]}}, "139805179805168": {"type": "Union", "content": {"items": [{"nodeId": "139805268035360"}, {"nodeId": "139805276669024"}]}}, "139805179805280": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805179805392": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805154594928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669024"}]}]}}, "139805154594704": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805154813744": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805376956448"}]}}, "139805376956448": {"type": "Function", "content": {"typeVars": [".-1.139805376956448"], "argTypes": [{"nodeId": ".-1.139805376956448"}], "returnType": {"nodeId": "139805154863488", "args": [{"nodeId": ".-1.139805376956448"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805376956448": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805376956448", "variance": "INVARIANT"}}, "139805129867776": {"type": "Function", "content": {"typeVars": [".-1.139805129867776"], "argTypes": [{"nodeId": ".-1.139805129867776"}], "returnType": {"nodeId": "139805154863488", "args": [{"nodeId": ".-1.139805129867776"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805129867776": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805129867776", "variance": "INVARIANT"}}, "139805376957344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863840"}, {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805154816992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fid", "own_fid", "allow_pickle", "pickle_kwargs"]}}, "139805154816992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805376957792": {"type": "Function", "content": {"typeVars": [".-1.139805376957792"], "argTypes": [{"nodeId": ".-1.139805376957792"}], "returnType": {"nodeId": ".-1.139805376957792"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805376957792": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805376957792", "variance": "INVARIANT"}}, "139805376958240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863840"}, {"nodeId": "139805154817104"}, {"nodeId": "139805154817216"}, {"nodeId": "139805154817328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805154817104": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805154817216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276675712"}]}}, "139805154817328": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272037280"}]}}, "139805376958688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805376959136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805376959584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863840"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805376960032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863840"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805376960480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863840"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805154860672": {"type": "Protocol", "content": {"module": "numpy.lib.shape_base", "simpleName": "_ArrayWrap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805377350560"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805377350560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154860672"}, {"nodeId": "0"}, {"nodeId": "139805297269824"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805297269824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805297269152"}]}}, "139805297269152": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150579520"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481893056"}]}}, "139805154861024": {"type": "Protocol", "content": {"module": "numpy.lib.shape_base", "simpleName": "_ArrayPrepare", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805377351008"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805377351008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154861024"}, {"nodeId": "0"}, {"nodeId": "139805297269488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805297269488": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805297269600"}]}}, "139805297269600": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150579520"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481893056"}]}}, "139805154861376": {"type": "Protocol", "content": {"module": "numpy.lib.shape_base", "simpleName": "_SupportsArrayWrap", "members": [{"kind": "Variable", "content": {"name": "__array_wrap__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805129611680"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__array_wrap__"]}}, "139805129611680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154861376"}], "returnType": {"nodeId": "139805154860672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154861728": {"type": "Protocol", "content": {"module": "numpy.lib.shape_base", "simpleName": "_SupportsArrayPrepare", "members": [{"kind": "Variable", "content": {"name": "__array_prepare__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805129612576"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__array_prepare__"]}}, "139805129612576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154861728"}], "returnType": {"nodeId": "139805154861024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154860320": {"type": "Concrete", "content": {"module": "numpy.lib.stride_tricks", "simpleName": "DummyArray", "members": [{"kind": "Variable", "content": {"name": "__array_interface__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "base", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805172069680"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "interface", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "base", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805377467040"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805172069680": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805377467040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154860320"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "139805297263216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "interface", "base"]}}, "139805297263216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805154859616": {"type": "Protocol", "content": {"module": "numpy.lib.type_check", "simpleName": "_SupportsReal", "members": [{"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242665536"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805154859616"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["real"]}}, ".1.139805154859616": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154859616", "variance": "COVARIANT"}}, "139805242665536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154859616", "args": [{"nodeId": ".1.139805154859616"}]}], "returnType": {"nodeId": ".1.139805154859616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154859968": {"type": "Protocol", "content": {"module": "numpy.lib.type_check", "simpleName": "_SupportsImag", "members": [{"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238427936"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805154859968"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["imag"]}}, ".1.139805154859968": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154859968", "variance": "COVARIANT"}}, "139805238427936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154859968", "args": [{"nodeId": ".1.139805154859968"}]}], "returnType": {"nodeId": ".1.139805154859968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154858912": {"type": "Protocol", "content": {"module": "numpy.lib.utils", "simpleName": "_SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805372764832"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.139805154858912"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["write"]}}, ".1.139805154858912": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154858912", "variance": "CONTRAVARIANT"}}, "139805372764832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154858912", "args": [{"nodeId": ".1.139805154858912"}]}, {"nodeId": ".1.139805154858912"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805154859264": {"type": "Concrete", "content": {"module": "numpy.lib.utils", "simpleName": "_Deprecate", "members": [{"kind": "Variable", "content": {"name": "old_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805154932016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "new_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805154932688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805154932800"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "old_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805372765280"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805372765728"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805154932016": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805154932688": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805154932800": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805372765280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154859264"}, {"nodeId": "139805217831200"}, {"nodeId": "139805217830304"}, {"nodeId": "139805217822128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "old_name", "new_name", "message"]}}, "139805217831200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805217830304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805217822128": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805372765728": {"type": "Function", "content": {"typeVars": [".-1.139805372765728"], "argTypes": [{"nodeId": "139805154859264"}, {"nodeId": ".-1.139805372765728"}], "returnType": {"nodeId": ".-1.139805372765728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.139805372765728": {"type": "TypeVar", "content": {"varName": "_FuncType", "values": [], "upperBound": {"nodeId": "139805159391296"}, "def": "139805372765728", "variance": "INVARIANT"}}, "139805159391296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805154854336": {"type": "Protocol", "content": {"module": "numpy._typing._array_like", "simpleName": "_SupportsArrayFunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "types", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335726432"}, "name": "__array_function__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__array_function__"]}}, "139805335726432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154854336"}, {"nodeId": "139805163566048"}, {"nodeId": "139805481889536", "args": [{"nodeId": "0"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "types", "args", "kwargs"]}}, "139805163566048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805167806496": {"type": "Concrete", "content": {"module": "numpy._typing._generic_alias", "simpleName": "_GenericAlias", "members": [{"kind": "Variable", "content": {"name": "__slots__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805133480656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196595968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196598432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196597760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__unpacked__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196597312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__typing_unpacked_tuple_args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196596640"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "starred", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339460640"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196596416"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339457952"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339461984"}, "name": "__mro_entries__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339462432"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339462880"}, "name": "__hash__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339463328"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339463776"}, "name": "__subclasscheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339464224"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339461536"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339465120"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339464672"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "_ATTR_EXCEPTIONS", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003392", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339466016"}, "name": "__getattribute__"}}, {"kind": "Variable", "content": {"name": "_origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481892352"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805133482560"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481882848"}]}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_starred", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805133480656": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805196595968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805196598432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805196597760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481882848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805196597312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805196596640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805213566432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805213566432": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805339460640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}, {"nodeId": "139805481892352"}, {"nodeId": "139805213567664"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "origin", "args", "starred"]}}, "139805213567664": {"type": "Union", "content": {"items": [{"nodeId": "139805481881792"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}]}}, "139805196596416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339457952": {"type": "Function", "content": {"typeVars": [".-1.139805339457952"], "argTypes": [{"nodeId": ".-1.139805339457952"}], "returnType": {"nodeId": "139805213560496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805339457952": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805167806496"}, "def": "139805339457952", "variance": "INVARIANT"}}, "139805213560496": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805213559488"}]}}, "139805213559488": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "139805481882144"}]}}, "139805339461984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805213559152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "bases"]}}, "139805213559152": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805339462432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339462880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339463328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805339463776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}, {"nodeId": "139805481892352"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cls"]}}, "139805339464224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805339461536": {"type": "Function", "content": {"typeVars": [".-1.139805339461536"], "argTypes": [{"nodeId": ".-1.139805339461536"}, {"nodeId": "139805213557920"}], "returnType": {"nodeId": ".-1.139805339461536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805339461536": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805167806496"}, "def": "139805339461536", "variance": "INVARIANT"}}, "139805213557920": {"type": "Union", "content": {"items": [{"nodeId": "139805481881792"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}]}}, "139805339465120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805339464672": {"type": "Function", "content": {"typeVars": [".-1.139805339464672"], "argTypes": [{"nodeId": ".-1.139805339464672"}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".-1.139805339464672"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805339464672": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805167806496"}, "def": "139805339464672", "variance": "INVARIANT"}}, "139805339466016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805133482560": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}]}}, "139805154855040": {"type": "Concrete", "content": {"module": "numpy.ctypeslib", "simpleName": "_ndptr", "members": [{"kind": "Variable", "content": {"name": "_dtype_", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805154855040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_shape_", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_ndim_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805154925296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_flags_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805172065760"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805213333024"}, "items": [{"kind": "Variable", "content": {"name": "from_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "from_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "from_param"}}], "typeVars": [{"nodeId": ".1.139805154855040"}], "bases": [{"nodeId": "139805171897568"}], "isAbstract": false}}, ".1.139805154855040": {"type": "TypeVar", "content": {"varName": "_DTypeOptional", "values": [], "upperBound": {"nodeId": "139805213570240"}, "def": "139805154855040", "variance": "INVARIANT"}}, "139805213570240": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}]}}, "139805154925296": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805172065760": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805154928544"}]}]}}, "139805154928544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805154931344"}}}, "139805154931344": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805213333024": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805372775136"}, {"nodeId": "139805372775584"}]}}, "139805372775136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "139805155353952", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "obj"]}}, "139805372775584": {"type": "Function", "content": {"typeVars": [".-1.139805372775584"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".-1.139805372775584"}]}], "returnType": {"nodeId": "139805155353952", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "obj"]}}, ".-1.139805372775584": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805372775584", "variance": "INVARIANT"}}, "139805154855392": {"type": "Concrete", "content": {"module": "numpy.ctypeslib", "simpleName": "_concrete_ndptr", "members": [{"kind": "Variable", "content": {"name": "_dtype_", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805154855392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_shape_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805209252288"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805154855392"}], "bases": [{"nodeId": "139805154855040", "args": [{"nodeId": ".1.139805154855392"}]}], "isAbstract": false}}, ".1.139805154855392": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805154855392", "variance": "INVARIANT"}}, "139805209252288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154855392", "args": [{"nodeId": ".1.139805154855392"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".1.139805154855392"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805193089472": {"type": "Concrete", "content": {"module": "numpy.lib._version", "simpleName": "NumpyVersion", "members": [{"kind": "Variable", "content": {"name": "vstring", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "major", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minor", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bugfix", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pre_release", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_devversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "vstring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326314624"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326315072"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326315520"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326315968"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326316416"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326316864"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326317312"}, "name": "__ge__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805326314624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089472"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "vstring"]}}, "139805326315072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089472"}, {"nodeId": "139805184445904"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184445904": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805193089472"}]}}, "139805326315520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089472"}, {"nodeId": "139805184446016"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184446016": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805193089472"}]}}, "139805326315968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089472"}, {"nodeId": "139805184446128"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184446128": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805193089472"}]}}, "139805326316416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089472"}, {"nodeId": "139805184446240"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184446240": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805193089472"}]}}, "139805326316864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089472"}, {"nodeId": "139805184446352"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184446352": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805193089472"}]}}, "139805326317312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089472"}, {"nodeId": "139805184446576"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184446576": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805193089472"}]}}, "139805150972032": {"type": "Concrete", "content": {"module": "numpy.linalg", "simpleName": "LinAlgError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805167808256": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MAError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805167808608": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MaskError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805167808256"}], "isAbstract": false}}, "139805150980128": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MaskedArray", "members": [{"kind": "Variable", "content": {"name": "__array_priority__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keep_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hard_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shrink", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327012672"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327012944"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327013216"}, "name": "__array_wrap__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327013488"}, "name": "view"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327013760"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327014032"}, "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805213567888"}, "items": [{"kind": "Variable", "content": {"name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201424768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "dtype"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805213342208"}, "items": [{"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201425664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "shape"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327015392"}, "name": "__setmask__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805213341312"}, "items": [{"kind": "Variable", "content": {"name": "mask", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201425888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "mask"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805213342544"}, "items": [{"kind": "Variable", "content": {"name": "recordmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201425216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "recordmask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "recordmask"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322363760"}, "name": "harden_mask"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322364032"}, "name": "soften_mask"}}, {"kind": "Variable", "content": {"name": "hardmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201426112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322364576"}, "name": "unshare_mask"}}, {"kind": "Variable", "content": {"name": "sharedmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201421856"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322365120"}, "name": "shrink_mask"}}, {"kind": "Variable", "content": {"name": "baseclass", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805339457056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805213341536"}, "items": [{"kind": "Variable", "content": {"name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805159123072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "flat"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805213338848"}, "items": [{"kind": "Variable", "content": {"name": "fill_value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201417376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fill_value"}}, {"kind": "Variable", "content": {"name": "get_fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "set_fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322366752"}, "name": "filled"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322367024"}, "name": "compressed"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "condition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322367296"}, "name": "compress"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322367568"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322367840"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322368112"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322368384"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322368656"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322368928"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322369200"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322369472"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322369744"}, "name": "__div__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322370016"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322370288"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322370560"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322370832"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322371104"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322371376"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322371648"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322371920"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322372192"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322372464"}, "name": "__idiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322372736"}, "name": "__ifloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322373008"}, "name": "__itruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322373280"}, "name": "__ipow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322373552"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322373824"}, "name": "__int__"}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201426336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_imag", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163565376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_real", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322374640"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322374912"}, "name": "ravel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322375184"}, "name": "reshape"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "refcheck", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322375456"}, "name": "resize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322375728"}, "name": "put"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322376000"}, "name": "ids"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322376272"}, "name": "iscontiguous"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322376544"}, "name": "all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322376816"}, "name": "any"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322377088"}, "name": "nonzero"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322377360"}, "name": "trace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322377632"}, "name": "dot"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322377904"}, "name": "sum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322378176"}, "name": "cumsum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322378448"}, "name": "prod"}}, {"kind": "Variable", "content": {"name": "product", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322378720"}, "name": "cumprod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322378992"}, "name": "mean"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322461248"}, "name": "anom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ddof", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322461520"}, "name": "var"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ddof", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322461792"}, "name": "std"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decimals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322462064"}, "name": "round"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "endwith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322462336"}, "name": "argsort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322462608"}, "name": "argmin"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322462880"}, "name": "argmax"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "endwith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322463152"}, "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322463424"}, "name": "min"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322463696"}, "name": "max"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322463968"}, "name": "ptp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322464240"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322464512"}, "name": "argpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322464784"}, "name": "take"}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "diagonal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flatten", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "repeat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "squeeze", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "swapaxes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "transpose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322465056"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322465328"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322465600"}, "name": "tofile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322465872"}, "name": "toflex"}}, {"kind": "Variable", "content": {"name": "torecords", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322466144"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322466416"}, "name": "__deepcopy__"}}], "typeVars": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}], "bases": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "isAbstract": false}}, ".1.139805150980128": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150980128", "variance": "INVARIANT"}}, ".2.139805150980128": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805150980128", "variance": "COVARIANT"}}, "139805327012672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "data", "mask", "dtype", "copy", "subok", "ndmin", "fill_value", "keep_mask", "hard_mask", "shrink", "order"]}}, "139805327012944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805327013216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "context"]}}, "139805327013488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "type", "fill_value"]}}, "139805327013760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805327014032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805213567888": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159310272"}]}}, "139805159310272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201424768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805213342208": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159309376"}]}}, "139805159309376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201425664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805327015392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mask", "copy"]}}, "139805213341312": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159309824"}]}}, "139805159309824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201425888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805213342544": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159311168"}]}}, "139805159311168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201425216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322363760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322364032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201426112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322364576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201421856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322365120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339457056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805213341536": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805163565152"}]}}, "139805163565152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805159123072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805213338848": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805163568736"}]}}, "139805163568736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201417376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322366752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}}, "139805322367024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322367296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "condition", "axis", "out"]}}, "139805322367568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322367840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322368112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322368384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322368656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322368928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322369200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322369472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322369744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805322370016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322370288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322370560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322370832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322371104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322371376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322371648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322371920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322372192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322372464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322372736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322373008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322373280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322373552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805322373824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805201426336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163565376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322374640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "keepdims"]}}, "139805322374912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139805322375184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "s", "kwargs"]}}, "139805322375456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "newshape", "refcheck", "order"]}}, "139805322375728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "indices", "values", "mode"]}}, "139805322376000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322376272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322376544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805322376816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805322377088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322377360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "axis1", "axis2", "dtype", "out"]}}, "139805322377632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "b", "out", "strict"]}}, "139805322377904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims"]}}, "139805322378176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805322378448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims"]}}, "139805322378720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805322378992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims"]}}, "139805322461248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype"]}}, "139805322461520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims"]}}, "139805322461792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims"]}}, "139805322462064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "decimals", "out"]}}, "139805322462336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "kind", "order", "endwith", "fill_value"]}}, "139805322462608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "fill_value", "out", "keepdims"]}}, "139805322462880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "fill_value", "out", "keepdims"]}}, "139805322463152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "kind", "order", "endwith", "fill_value"]}}, "139805322463424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "fill_value", "keepdims"]}}, "139805322463696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "fill_value", "keepdims"]}}, "139805322463968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "fill_value", "keepdims"]}}, "139805322464240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805322464512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805322464784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, "139805322465056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}}, "139805322465328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fill_value", "order"]}}, "139805322465600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fid", "sep", "format"]}}, "139805322465872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322466144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322466416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "memo"]}}, "139805150980480": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "mvoid", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hardmask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322466688"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322466960"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322467232"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322467504"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322467776"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322468048"}, "name": "filled"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322468320"}, "name": "tolist"}}], "typeVars": [{"nodeId": ".1.139805150980480"}, {"nodeId": ".2.139805150980480"}], "bases": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980480"}, {"nodeId": ".2.139805150980480"}]}], "isAbstract": false}}, ".1.139805150980480": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150980480", "variance": "INVARIANT"}}, ".2.139805150980480": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805150980480", "variance": "COVARIANT"}}, "139805322466688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980480"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "mask", "dtype", "fill_value", "hardmask", "copy", "subok"]}}, "139805322466960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980480"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322467232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980480"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805322467504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805322467776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805322468048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980480"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}}, "139805322468320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150971328": {"type": "Concrete", "content": {"module": "numpy.polynomial.chebyshev", "simpleName": "Chebyshev", "members": [{"kind": "Variable", "content": {"name": "interpolate", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805096398624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805193084544"}], "isAbstract": false}}, "139805096398624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "func", "deg", "domain", "args"]}}, "139805193084544": {"type": "Concrete", "content": {"module": "numpy.polynomial._polybase", "simpleName": "ABCPolyBase", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__array_ufunc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maxpower", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "coef", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "symbol", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188137344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188136672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188136896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188401952"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305613264"}, "name": "has_samecoef"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305613536"}, "name": "has_samedomain"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305613808"}, "name": "has_samewindow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305614080"}, "name": "has_sametype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "coef", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "symbol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305897248"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fmt_str", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305614624"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305614896"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305615168"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305615440"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305615712"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305615984"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305616256"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305616528"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305616800"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305617072"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305617344"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305617616"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305617888"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305618160"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305536576"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305536848"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305537120"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305537392"}, "name": "__rdiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305537664"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305537936"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305538208"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305538480"}, "name": "__rdivmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305538752"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305539024"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305539296"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305539568"}, "name": "degree"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "deg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305539840"}, "name": "cutdeg"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305540112"}, "name": "trim"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305540384"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305540656"}, "name": "convert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305540928"}, "name": "mapparms"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lbnd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305541200"}, "name": "integ"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305541472"}, "name": "deriv"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305541744"}, "name": "roots"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305542016"}, "name": "linspace"}}, {"kind": "Variable", "content": {"name": "fit", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242754880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromroots", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188726048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188142272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188139808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cast", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188139584"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276879712"}], "isAbstract": true}}, "139805188137344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188136672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188136896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188401952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305613264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805305613536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805305613808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805305614080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805305897248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "coef", "domain", "window", "symbol"]}}, "139805305614624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fmt_str"]}}, "139805305614896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "arg"]}}, "139805305615168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805305615440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805305615712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805305615984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805305616256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305616528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305616800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305617072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305617344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305617616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305617888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305618160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305536576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305536848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305537120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305537392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305537664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305537936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305538208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305538480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805305538752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305539024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305539296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305539568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305539840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "deg"]}}, "139805305540112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tol"]}}, "139805305540384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "size"]}}, "139805305540656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "domain", "kind", "window"]}}, "139805305540928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305541200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "m", "k", "lbnd"]}}, "139805305541472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, "139805305541744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305542016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "n", "domain"]}}, "139805242754880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "x", "y", "deg", "domain", "rcond", "full", "w", "window"]}}, "139805188726048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "roots", "domain", "window"]}}, "139805188142272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "domain", "window"]}}, "139805188139808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "deg", "domain", "window"]}}, "139805188139584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "series", "domain", "window"]}}, "139805276879712": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805150970976": {"type": "Concrete", "content": {"module": "numpy.polynomial.hermite", "simpleName": "Hermite", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805193084544"}], "isAbstract": false}}, "139805150970624": {"type": "Concrete", "content": {"module": "numpy.polynomial.hermite_e", "simpleName": "HermiteE", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805193084544"}], "isAbstract": false}}, "139805150970272": {"type": "Concrete", "content": {"module": "numpy.polynomial.laguerre", "simpleName": "Laguerre", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805193084544"}], "isAbstract": false}}, "139805150969920": {"type": "Concrete", "content": {"module": "numpy.polynomial.legendre", "simpleName": "Legendre", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805193084544"}], "isAbstract": false}}, "139805150592544": {"type": "Concrete", "content": {"module": "numpy.polynomial.polynomial", "simpleName": "Polynomial", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805193084544"}], "isAbstract": false}}, "139805150977664": {"type": "Concrete", "content": {"module": "numpy.random._generator", "simpleName": "Generator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bit_generator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327264224"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327264672"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327265120"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327265568"}, "name": "__getstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327266016"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327266464"}, "name": "__reduce__"}}, {"kind": "Variable", "content": {"name": "bit_generator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100766624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327267360"}, "name": "bytes"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138147968"}, "items": [{"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_normal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138147744"}, "items": [{"kind": "Variable", "content": {"name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "permutation"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138153232"}, "items": [{"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_exponential"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138240672"}, "items": [{"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "random"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138242128"}, "items": [{"kind": "Variable", "content": {"name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "beta"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138245264"}, "items": [{"kind": "Variable", "content": {"name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "exponential"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138245824"}, "items": [{"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "integers"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138246496"}, "items": [{"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "choice"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805201014160"}, "items": [{"kind": "Variable", "content": {"name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "uniform"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138296320"}, "items": [{"kind": "Variable", "content": {"name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "normal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138255120"}, "items": [{"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_gamma"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138301696"}, "items": [{"kind": "Variable", "content": {"name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "gamma"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138302592"}, "items": [{"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "f"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138303488"}, "items": [{"kind": "Variable", "content": {"name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "noncentral_f"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138304272"}, "items": [{"kind": "Variable", "content": {"name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "chisquare"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138304384"}, "items": [{"kind": "Variable", "content": {"name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "noncentral_chisquare"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138355360"}, "items": [{"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_t"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138356368"}, "items": [{"kind": "Variable", "content": {"name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "vonmises"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138357264"}, "items": [{"kind": "Variable", "content": {"name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pareto"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138358048"}, "items": [{"kind": "Variable", "content": {"name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "weibull"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138358720"}, "items": [{"kind": "Variable", "content": {"name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "power"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805201013712"}, "items": [{"kind": "Variable", "content": {"name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_cauchy"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138360288"}, "items": [{"kind": "Variable", "content": {"name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "laplace"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138360400"}, "items": [{"kind": "Variable", "content": {"name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "gumbel"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138361744"}, "items": [{"kind": "Variable", "content": {"name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "logistic"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138362528"}, "items": [{"kind": "Variable", "content": {"name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "lognormal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138363312"}, "items": [{"kind": "Variable", "content": {"name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rayleigh"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138364096"}, "items": [{"kind": "Variable", "content": {"name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "wald"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138364768"}, "items": [{"kind": "Variable", "content": {"name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "triangular"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138365552"}, "items": [{"kind": "Variable", "content": {"name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "binomial"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805201013040"}, "items": [{"kind": "Variable", "content": {"name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "negative_binomial"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138367456"}, "items": [{"kind": "Variable", "content": {"name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "poisson"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138368464"}, "items": [{"kind": "Variable", "content": {"name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "zipf"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138369136"}, "items": [{"kind": "Variable", "content": {"name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "geometric"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805201013376"}, "items": [{"kind": "Variable", "content": {"name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "hypergeometric"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138436384"}, "items": [{"kind": "Variable", "content": {"name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "logseries"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cov", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "check_valid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318712224"}, "name": "multivariate_normal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pvals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318712672"}, "name": "multinomial"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "colors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "nsample", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318713120"}, "name": "multivariate_hypergeometric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "alpha", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318713568"}, "name": "dirichlet"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318714016"}, "name": "permuted"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318714464"}, "name": "shuffle"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805327264224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805150592192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "bit_generator"]}}, "139805150592192": {"type": "Concrete", "content": {"module": "numpy.random.bit_generator", "simpleName": "BitGenerator", "members": [{"kind": "Variable", "content": {"name": "lock", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805193080672"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323108960"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323109408"}, "name": "__getstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323109856"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323110304"}, "name": "__reduce__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805150870016"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096422624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805150869904"}, "items": [{"kind": "Variable", "content": {"name": "random_raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random_raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random_raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "random_raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cnt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323112992"}, "name": "_benchmark"}}, {"kind": "Variable", "content": {"name": "ctypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096423968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cffi", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096423520"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276879712"}], "isAbstract": true}}, "139805193080672": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Lock", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305912928"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292937504"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292937952"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292938400"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292938848"}, "name": "locked"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805305912928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193080672"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805292937504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193080672"}, {"nodeId": "139805188793040"}, {"nodeId": "139805188793152"}, {"nodeId": "139805188793264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805188793040": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805188793152": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188793264": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805292937952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193080672"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "139805292938400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193080672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292938848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193080672"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805323108960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}, {"nodeId": "139805142636064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "139805142636064": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142636400"}, {"nodeId": "139805150591840"}]}}, "139805142636400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805150591840": {"type": "Concrete", "content": {"module": "numpy.random.bit_generator", "simpleName": "SeedSequence", "members": [{"kind": "Variable", "content": {"name": "entropy", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150867328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "spawn_key", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pool_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_children_spawned", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pool", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150868672"}]}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "entropy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spawn_key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pool_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n_children_spawned", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323106720"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323107168"}, "name": "__repr__"}}, {"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096420384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323108064"}, "name": "generate_state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n_children", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323108512"}, "name": "spawn"}}], "typeVars": [], "bases": [{"nodeId": "139805150591136"}], "isAbstract": false}}, "139805150867328": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}]}}, "139805150868672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805323106720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150591840"}, {"nodeId": "139805142634944"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "entropy", "spawn_key", "pool_size", "n_children_spawned"]}}, "139805142634944": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805142635280"}]}}, "139805142635280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805323107168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150591840"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805096420384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150591840"}], "returnType": {"nodeId": "139805142635168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142635168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805323108064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150591840"}, {"nodeId": "139805481893056"}, {"nodeId": "139805142635392"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805142635840"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n_words", "dtype"]}}, "139805142635392": {"type": "Union", "content": {"items": [{"nodeId": "139805142632704"}, {"nodeId": "139805142635056"}]}}, "139805142632704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201277984"}}}, "139805201277984": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805150859264"}]}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805150658032"}]}]}, {"nodeId": "0"}, {"nodeId": "139805150655680"}]}}, "139805150859264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805150658032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805150655680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184590560"}}}, "139805142635056": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201274624"}}}, "139805201274624": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805150658144"}]}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805150859712"}]}]}, {"nodeId": "0"}, {"nodeId": "139805150859600"}]}}, "139805150658144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805150859712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805150859600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591232"}}}, "139805142635840": {"type": "Union", "content": {"items": [{"nodeId": "139805142635616"}, {"nodeId": "139805142635728"}]}}, "139805142635616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805142635728": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805323108512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150591840"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805150591840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n_children"]}}, "139805150591136": {"type": "Concrete", "content": {"module": "numpy.random.bit_generator", "simpleName": "ISpawnableSeedSequence", "members": [{"kind": "Variable", "content": {"name": "spawn", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805096417024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805150590784"}], "isAbstract": true}}, "139805096417024": {"type": "Function", "content": {"typeVars": [".-1.139805096417024"], "argTypes": [{"nodeId": ".-1.139805096417024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".-1.139805096417024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n_children"]}}, ".-1.139805096417024": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805096417024", "variance": "INVARIANT"}}, "139805150590784": {"type": "Concrete", "content": {"module": "numpy.random.bit_generator", "simpleName": "ISeedSequence", "members": [{"kind": "Variable", "content": {"name": "generate_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805096416352"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276879712"}], "isAbstract": true}}, "139805096416352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150590784"}, {"nodeId": "139805481893056"}, {"nodeId": "139805142633488"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805142633936"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n_words", "dtype"]}}, "139805142633488": {"type": "Union", "content": {"items": [{"nodeId": "139805142633264"}, {"nodeId": "139805142633376"}]}}, "139805142633264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201277984"}}}, "139805142633376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201274624"}}}, "139805142633936": {"type": "Union", "content": {"items": [{"nodeId": "139805142633712"}, {"nodeId": "139805142633824"}]}}, "139805142633712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805142633824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805323109408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805323109856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139805323110304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}], "returnType": {"nodeId": "139805142637072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142637072": {"type": "Tuple", "content": {"items": [{"nodeId": "139805184342304"}, {"nodeId": "139805142636512"}, {"nodeId": "139805142636848"}]}}, "139805184342304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805150592192"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805142636512": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805142636848": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805150870016": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805323110752"}]}}, "139805323110752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}], "returnType": {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805096422624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}], "returnType": {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150869904": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805323111648"}, {"nodeId": "139805323112096"}, {"nodeId": "139805323112544"}]}}, "139805323111648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}, {"nodeId": "N"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "output"]}}, "139805323112096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}, {"nodeId": "139805142638192"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805142638528"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "output"]}}, "139805142638192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142638528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805323112544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}, {"nodeId": "139805142638976"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "output"]}}, "139805142638976": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142638864"}]}}, "139805142638864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805323112992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cnt", "method"]}}, "139805096423968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}], "returnType": {"nodeId": "139805142639200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142639200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150863744"}}}, "139805150863744": {"type": "Tuple", "content": {"items": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}}, "139805096423520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}], "returnType": {"nodeId": "139805142639312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142639312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150863744"}}}, "139805327264672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805327265120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805327265568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805327266016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139805327266464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}], "returnType": {"nodeId": "139805138148864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138148864": {"type": "Tuple", "content": {"items": [{"nodeId": "139805188332384"}, {"nodeId": "139805138148528"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805188332384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805150977664"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805138148528": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805100766624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}], "returnType": {"nodeId": "139805150592192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805327267360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "length"]}}, "139805138147968": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805327267808"}, {"nodeId": "139805327268256"}, {"nodeId": "139805327268704"}, {"nodeId": "139805327269152"}, {"nodeId": "139805327269600"}]}}, "139805327267808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "N"}, {"nodeId": "139805138149536"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "139805138149536": {"type": "Union", "content": {"items": [{"nodeId": "139805138149312"}, {"nodeId": "139805138149424"}]}}, "139805138149312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805201014720": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805151032176"}]}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805201014944"}]}]}, {"nodeId": "0"}, {"nodeId": "139805201014832"}, {"nodeId": "139805201014496"}]}}, "139805151032176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805201014944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805201014832": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184595264"}}}, "139805201014496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184656544"}}}, "139805138149424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805201012816": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805151028256"}]}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805201013600"}]}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805201013264"}, {"nodeId": "139805201013152"}]}}, "139805151028256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805201013600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805201013264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184595936"}}}, "139805201013152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184657664"}}}, "139805327268256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138150096"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138149984"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805138150096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138149984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805327268704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138150544"}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138150768"}]}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "out"]}}, "139805138150544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138150768": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805327269152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138151104"}, {"nodeId": "139805138151216"}, {"nodeId": "139805138151552"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138151776"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "139805138151104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138151216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805138151552": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138151440"}]}]}]}}, "139805138151440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805138151776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805327269600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138151888"}, {"nodeId": "139805138150992"}, {"nodeId": "139805138152560"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138152784"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "139805138151888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138150992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805138152560": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138152448"}]}]}]}}, "139805138152448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138152784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138147744": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805327270048"}, {"nodeId": "139805327270496"}]}}, "139805327270048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138152896"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "axis"]}}, "139805138152896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805327270496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138152224"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "axis"]}}, "139805138152224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138153232": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805327270944"}, {"nodeId": "139805327271392"}, {"nodeId": "139805327271840"}, {"nodeId": "139805327272288"}, {"nodeId": "139805327272736"}, {"nodeId": "139805327273184"}]}}, "139805327270944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "N"}, {"nodeId": "139805138154128"}, {"nodeId": "139805138154464"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "method", "out"]}}, "139805138154128": {"type": "Union", "content": {"items": [{"nodeId": "139805138153904"}, {"nodeId": "139805138154016"}]}}, "139805138153904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805138154016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805138154464": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805327271392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138155024"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138154912"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805138155024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138154912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805327271840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138155472"}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138155696"}]}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "out"]}}, "139805138155472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138155696": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805327272288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138156032"}, {"nodeId": "139805138156368"}, {"nodeId": "139805138156704"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138156928"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "size", "method", "out"]}}, "139805138156032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138156368": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138156704": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138156592"}]}]}]}}, "139805138156592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138156928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805327272736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138157264"}, {"nodeId": "139805138157376"}, {"nodeId": "139805138239776"}, {"nodeId": "139805138240112"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138240336"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "method", "out"]}}, "139805138157264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138157376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805138239776": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138240112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138240000"}]}]}]}}, "139805138240000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805138240336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805327273184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138240448"}, {"nodeId": "139805138240560"}, {"nodeId": "139805138241120"}, {"nodeId": "139805138241456"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138241680"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "method", "out"]}}, "139805138240448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138240560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805138241120": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138241456": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138241344"}]}]}]}}, "139805138241344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138241680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138240672": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805327273632"}, {"nodeId": "139805327274080"}, {"nodeId": "139805327274528"}, {"nodeId": "139805327274976"}, {"nodeId": "139805327275424"}]}}, "139805327273632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "N"}, {"nodeId": "139805138240784"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "139805138240784": {"type": "Union", "content": {"items": [{"nodeId": "139805138241904"}, {"nodeId": "139805138241792"}]}}, "139805138241904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805138241792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805327274080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138242800"}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138242464"}]}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "out"]}}, "139805138242800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138242464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805327274528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138242576"}, {"nodeId": "139805138243024"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138243248"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "size", "out"]}}, "139805138242576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138243024": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138242352"}]}]}]}}, "139805138242352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138243248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805327274976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138243360"}, {"nodeId": "139805138243472"}, {"nodeId": "139805138243808"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138244032"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "139805138243360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138243472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805138243808": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138243696"}]}]}]}}, "139805138243696": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805138244032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805327275424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138244256"}, {"nodeId": "139805138244480"}, {"nodeId": "139805138244592"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138244816"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "139805138244256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138244480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805138244592": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138242912"}]}]}]}}, "139805138242912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138244816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138242128": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805327275872"}, {"nodeId": "139805327276320"}]}}, "139805327275872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}}, "139805327276320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138245040"}, {"nodeId": "139805138244928"}, {"nodeId": "139805138245376"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138245600"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}}, "139805138245040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138244928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138245376": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138244368"}]}}, "139805138244368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138245600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138245264": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805327276768"}, {"nodeId": "139805327277216"}]}}, "139805327276768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805327277216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138245152"}, {"nodeId": "139805138246048"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138246272"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805138245152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138246048": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138245712"}]}}, "139805138245712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138246272": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138245824": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805327277664"}, {"nodeId": "139805318283552"}, {"nodeId": "139805318284000"}, {"nodeId": "139805318284448"}, {"nodeId": "139805318284896"}, {"nodeId": "139805318285344"}, {"nodeId": "139805318285792"}, {"nodeId": "139805318286240"}, {"nodeId": "139805318286688"}, {"nodeId": "139805318287136"}, {"nodeId": "139805318287584"}, {"nodeId": "139805318288032"}, {"nodeId": "139805318288480"}, {"nodeId": "139805318288928"}, {"nodeId": "139805318289376"}]}}, "139805327277664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "139805138245936"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "low", "high"]}}, "139805138245936": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805318283552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "139805138246384"}, {"nodeId": "N"}, {"nodeId": "139805138246720"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138246384": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805138246720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159554320"}}}, "139805159554320": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805167807552", "args": [{"nodeId": "0"}]}, {"nodeId": "139805159552304"}]}}, "139805159552304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184457552"}}}, "139805318284000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "139805138246944"}, {"nodeId": "N"}, {"nodeId": "139805138247168"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138246944": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805138247168": {"type": "Union", "content": {"items": [{"nodeId": "139805138246832"}, {"nodeId": "139805138246608"}]}}, "139805138246832": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805200898912"}}}, "139805200898912": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805167807552", "args": [{"nodeId": "0"}]}, {"nodeId": "139805159382416"}, {"nodeId": "139805159378944"}, {"nodeId": "139805159382304"}, {"nodeId": "139805159382192"}, {"nodeId": "139805159382976"}, {"nodeId": "139805159383424"}, {"nodeId": "139805159382528"}, {"nodeId": "139805200899584"}, {"nodeId": "139805200899360"}, {"nodeId": "139805200899472"}]}}, "139805159382416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591904"}}}, "139805159378944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184592576"}}}, "139805159382304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593248"}}}, "139805159382192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593920"}}}, "139805159382976": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184597952"}}}, "139805159383424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184598624"}}}, "139805159382528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184599296"}}}, "139805200899584": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184600192"}}}, "139805200899360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184601200"}}}, "139805200899472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184601648"}}}, "139805138246608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805200899696"}}}, "139805200899696": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805167807552", "args": [{"nodeId": "0"}]}, {"nodeId": "139805159381408"}, {"nodeId": "139805200901936"}, {"nodeId": "139805200902832"}, {"nodeId": "139805200902608"}, {"nodeId": "139805200901712"}, {"nodeId": "139805200902720"}, {"nodeId": "139805200902160"}, {"nodeId": "139805200900144"}, {"nodeId": "139805200900256"}, {"nodeId": "139805200899024"}]}}, "139805159381408": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184458000"}}}, "139805200901936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184589888"}}}, "139805200902832": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184590560"}}}, "139805200902608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591232"}}}, "139805200901712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184602320"}}}, "139805200902720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184602992"}}}, "139805200902160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184603664"}}}, "139805200900144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184604560"}}}, "139805200900256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184605344"}}}, "139805200899024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184605904"}}}, "139805318284448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138249072"}, {"nodeId": "139805138247952"}, {"nodeId": "139805138249632"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138248288"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805138249072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138247952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138249744"}]}}, "139805138249744": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138249632": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138248736"}]}}, "139805138248736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138248288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805318284896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138248960"}, {"nodeId": "139805138249184"}, {"nodeId": "139805138248848"}, {"nodeId": "139805138248064"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138248960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138249184": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138249296"}]}}, "139805138249296": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138248848": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138247504"}]}}, "139805138247504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138248064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159554320"}}}, "139805318285344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138248624"}, {"nodeId": "139805138247616"}, {"nodeId": "139805138248400"}, {"nodeId": "139805138247840"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138249968"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138248624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138247616": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138249520"}]}}, "139805138249520": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138248400": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138248512"}]}}, "139805138248512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138247840": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138249408"}]}, {"nodeId": "0"}, {"nodeId": "139805138247056"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138247280"}]}]}]}}, "139805138249408": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805138247056": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591904"}}}, "139805138247280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805138249968": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805318285792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138250304"}, {"nodeId": "139805138250080"}, {"nodeId": "139805138250528"}, {"nodeId": "139805138250976"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138251200"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138250304": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138250080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138247392"}]}}, "139805138247392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138250528": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138250416"}]}}, "139805138250416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138250976": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138250640"}]}, {"nodeId": "0"}, {"nodeId": "139805138250752"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138250864"}]}]}]}}, "139805138250640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858208"}]}}}, "139805138250752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184592576"}}}, "139805138250864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858208"}]}}}, "139805138251200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858208"}]}}}, "139805318286240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138251536"}, {"nodeId": "139805138251312"}, {"nodeId": "139805138251760"}, {"nodeId": "139805138252208"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138252432"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138251536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138251312": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138250192"}]}}, "139805138250192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138251760": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138251648"}]}}, "139805138251648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138252208": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138251872"}]}, {"nodeId": "0"}, {"nodeId": "139805138251984"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138252096"}]}]}]}}, "139805138251872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857856"}]}}}, "139805138251984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593248"}}}, "139805138252096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857856"}]}}}, "139805138252432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857856"}]}}}, "139805318286688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138252768"}, {"nodeId": "139805138252544"}, {"nodeId": "139805138252992"}, {"nodeId": "139805138253440"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138253664"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138252768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138252544": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138251424"}]}}, "139805138251424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138252992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138252880"}]}}, "139805138252880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138253440": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138253104"}]}, {"nodeId": "0"}, {"nodeId": "139805138253216"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138253328"}]}]}]}}, "139805138253104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805138253216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593920"}}}, "139805138253328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805138253664": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805318287136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138254000"}, {"nodeId": "139805138253776"}, {"nodeId": "139805138254224"}, {"nodeId": "139805138254672"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138254896"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138254000": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138253776": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138252656"}]}}, "139805138252656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138254224": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138254112"}]}}, "139805138254112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138254672": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138254336"}]}, {"nodeId": "0"}, {"nodeId": "139805138254448"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138254560"}]}]}]}}, "139805138254336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805138254448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184458000"}}}, "139805138254560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805138254896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805318287584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138255232"}, {"nodeId": "139805138255008"}, {"nodeId": "139805138255456"}, {"nodeId": "139805138288816"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138289040"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138255232": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138255008": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138253888"}]}}, "139805138253888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138255456": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138255344"}]}}, "139805138255344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138288816": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138255568"}]}, {"nodeId": "0"}, {"nodeId": "139805138255680"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138288704"}]}]}]}}, "139805138255568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858208"}]}}}, "139805138255680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184589888"}}}, "139805138288704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858208"}]}}}, "139805138289040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858208"}]}}}, "139805318288032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138289264"}, {"nodeId": "139805138289152"}, {"nodeId": "139805138289600"}, {"nodeId": "139805138290048"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138290272"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138289264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138289152": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138289376"}]}}, "139805138289376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138289600": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138289488"}]}}, "139805138289488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138290048": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138289712"}]}, {"nodeId": "0"}, {"nodeId": "139805138289824"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138289936"}]}]}]}}, "139805138289712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805138289824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184590560"}}}, "139805138289936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805138290272": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805318288480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138290496"}, {"nodeId": "139805138290384"}, {"nodeId": "139805138290832"}, {"nodeId": "139805138291280"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138291504"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138290496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138290384": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138290608"}]}}, "139805138290608": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138290832": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138290720"}]}}, "139805138290720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138291280": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138290944"}]}, {"nodeId": "0"}, {"nodeId": "139805138291056"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138291168"}]}]}]}}, "139805138290944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805138291056": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591232"}}}, "139805138291168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805138291504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805318288928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138291728"}, {"nodeId": "139805138291616"}, {"nodeId": "139805138292064"}, {"nodeId": "139805138292624"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138292848"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138291728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138291616": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138291840"}]}}, "139805138291840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138292064": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138291952"}]}}, "139805138291952": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138292624": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138292176"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805138292288"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138292512"}]}]}]}}, "139805138292176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138292288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184601200"}}}, "139805138292512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138292848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805318289376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138293072"}, {"nodeId": "139805138292960"}, {"nodeId": "139805138293408"}, {"nodeId": "139805138293968"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138294192"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138293072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138292960": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138293184"}]}}, "139805138293184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138293408": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138293296"}]}}, "139805138293296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138293968": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138293520"}]}, {"nodeId": "0"}, {"nodeId": "139805138293632"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138293856"}]}]}]}}, "139805138293520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262128"}]}}}, "139805138293632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184605344"}}}, "139805138293856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262128"}]}}}, "139805138294192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262128"}]}}}, "139805138246496": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318289824"}, {"nodeId": "139805318290272"}, {"nodeId": "139805318290720"}, {"nodeId": "139805318291168"}]}}, "139805318289824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138294304"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p", "axis", "shuffle"]}}, "139805138294304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138294528"}]}}, "139805138294528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805318290272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "139805138294864"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138294640"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138295088"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p", "axis", "shuffle"]}}, "139805138294864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138294640": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138294416"}]}}, "139805138294416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138295088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805318290720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138295424"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138295200"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p", "axis", "shuffle"]}}, "139805138295424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138295200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138294752"}]}}, "139805138294752": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805318291168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138295312"}, {"nodeId": "139805138295872"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138295984"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p", "axis", "shuffle"]}}, "139805138295312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138295872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138295984": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138295760"}]}}, "139805138295760": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805201014160": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318291616"}, {"nodeId": "139805318292064"}]}}, "139805318291616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805318292064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138296544"}, {"nodeId": "139805138296432"}, {"nodeId": "139805138296768"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138296992"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805138296544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138296432": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138296768": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138296656"}]}}, "139805138296656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138296992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138296320": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318292512"}, {"nodeId": "139805318292960"}]}}, "139805318292512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805318292960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138295648"}, {"nodeId": "139805138297104"}, {"nodeId": "139805138297552"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138297776"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138295648": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138297104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138297552": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138297440"}]}}, "139805138297440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138297776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138255120": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318293408"}, {"nodeId": "139805318293856"}, {"nodeId": "139805318294304"}, {"nodeId": "139805318294752"}, {"nodeId": "139805318295200"}]}}, "139805318293408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}, {"nodeId": "139805138298448"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "size", "dtype", "out"]}}, "139805138298448": {"type": "Union", "content": {"items": [{"nodeId": "139805138298224"}, {"nodeId": "139805138298336"}]}}, "139805138298224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805138298336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805318293856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138299008"}, {"nodeId": "139805138298896"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138298672"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "shape", "size"]}}, "139805138299008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138298896": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138298784"}]}}, "139805138298784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138298672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805318294304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138299344"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138299792"}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138300016"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "shape", "out"]}}, "139805138299344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138299792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138300016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805318294752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138300128"}, {"nodeId": "139805138300576"}, {"nodeId": "139805138300688"}, {"nodeId": "139805138301024"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138301248"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "size", "dtype", "out"]}}, "139805138300128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138300576": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138300464"}]}}, "139805138300464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138300688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805138301024": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138300912"}]}]}]}}, "139805138300912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805138301248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805318295200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138299120"}, {"nodeId": "139805138301808"}, {"nodeId": "139805138301920"}, {"nodeId": "139805138302256"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138302480"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "size", "dtype", "out"]}}, "139805138299120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138301808": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138301360"}]}}, "139805138301360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138301920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805138302256": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138302144"}]}]}]}}, "139805138302144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138302480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138301696": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318295648"}, {"nodeId": "139805318296096"}]}}, "139805318295648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}}, "139805318296096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138302816"}, {"nodeId": "139805138301472"}, {"nodeId": "139805138303040"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138303264"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}}, "139805138302816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138301472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138303040": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138302704"}]}}, "139805138302704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138303264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138302592": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318296544"}, {"nodeId": "139805318296992"}]}}, "139805318296544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}}, "139805318296992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138302928"}, {"nodeId": "139805138303376"}, {"nodeId": "139805138303824"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138304048"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}}, "139805138302928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138303376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138303824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138303712"}]}}, "139805138303712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138304048": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138303488": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318297440"}, {"nodeId": "139805318297888"}]}}, "139805318297440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}}, "139805318297888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138303600"}, {"nodeId": "139805138304160"}, {"nodeId": "139805138304496"}, {"nodeId": "139805138304720"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138354240"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}}, "139805138303600": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138304160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138304496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138304720": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138304608"}]}}, "139805138304608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138354240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138304272": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318298336"}, {"nodeId": "139805318298784"}]}}, "139805318298336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805318298784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138354576"}, {"nodeId": "139805138354688"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138354912"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805138354576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138354688": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138354352"}]}}, "139805138354352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138354912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138304384": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318299232"}, {"nodeId": "139805318545696"}]}}, "139805318299232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}}, "139805318545696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138355584"}, {"nodeId": "139805138355696"}, {"nodeId": "139805138355920"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138356144"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}}, "139805138355584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138355696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138355920": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138355808"}]}}, "139805138355808": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138356144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138355360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318546144"}, {"nodeId": "139805318546592"}, {"nodeId": "139805318547040"}]}}, "139805318546144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805318546592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138355472"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138356592"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805138355472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138356592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805318547040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138356928"}, {"nodeId": "139805138356480"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138357040"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805138356928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138356480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138357040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138356368": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318547488"}, {"nodeId": "139805318547936"}]}}, "139805318547488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}}, "139805318547936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138356816"}, {"nodeId": "139805138357152"}, {"nodeId": "139805138357600"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138357824"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}}, "139805138356816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138357152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138357600": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138357488"}]}}, "139805138357488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138357824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138357264": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318548384"}, {"nodeId": "139805318548832"}]}}, "139805318548384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805318548832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138357376"}, {"nodeId": "139805138358272"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138358496"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138357376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138358272": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138357936"}]}}, "139805138357936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138358496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138358048": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318549280"}, {"nodeId": "139805318549728"}]}}, "139805318549280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805318549728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138358160"}, {"nodeId": "139805138358944"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138359168"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138358160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138358944": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138358608"}]}}, "139805138358608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138359168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138358720": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318550176"}, {"nodeId": "139805318550624"}]}}, "139805318550176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805318550624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138358832"}, {"nodeId": "139805138359616"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138359840"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138358832": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138359616": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138359280"}]}}, "139805138359280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138359840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805201013712": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318551072"}, {"nodeId": "139805318551520"}]}}, "139805318551072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805318551520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138360512"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138360736"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805138360512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138360736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138360288": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318551968"}, {"nodeId": "139805318552416"}]}}, "139805318551968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805318552416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138360960"}, {"nodeId": "139805138361072"}, {"nodeId": "139805138361296"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138361520"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138360960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138361072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138361296": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138361184"}]}}, "139805138361184": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138361520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138360400": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318552864"}, {"nodeId": "139805318553312"}]}}, "139805318552864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805318553312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138360848"}, {"nodeId": "139805138361632"}, {"nodeId": "139805138362080"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138362304"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138360848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138361632": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138362080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138361968"}]}}, "139805138361968": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138362304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138361744": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318553760"}, {"nodeId": "139805318554208"}]}}, "139805318553760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805318554208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138361856"}, {"nodeId": "139805138362416"}, {"nodeId": "139805138362864"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138363088"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138361856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138362416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138362864": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138362752"}]}}, "139805138362752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138363088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138362528": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318554656"}, {"nodeId": "139805318555104"}]}}, "139805318554656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}}, "139805318555104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138362640"}, {"nodeId": "139805138363200"}, {"nodeId": "139805138363648"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138363872"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}}, "139805138362640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138363200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138363648": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138363536"}]}}, "139805138363536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138363872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138363312": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318555552"}, {"nodeId": "139805318556000"}]}}, "139805318555552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805318556000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138363424"}, {"nodeId": "139805138364320"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138364544"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805138363424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138364320": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138363984"}]}}, "139805138363984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138364544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138364096": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318556448"}, {"nodeId": "139805318556896"}]}}, "139805318556448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}}, "139805318556896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138364208"}, {"nodeId": "139805138364656"}, {"nodeId": "139805138365104"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138365328"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}}, "139805138364208": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138364656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138365104": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138364992"}]}}, "139805138364992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138365328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138364768": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318557344"}, {"nodeId": "139805318557792"}]}}, "139805318557344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}}, "139805318557792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138364880"}, {"nodeId": "139805138365440"}, {"nodeId": "139805138365776"}, {"nodeId": "139805138366000"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138366224"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}}, "139805138364880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138365440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138365776": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138366000": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138365888"}]}}, "139805138365888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138366224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138365552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318558240"}, {"nodeId": "139805318558688"}]}}, "139805318558240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805318558688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138365664"}, {"nodeId": "139805138366336"}, {"nodeId": "139805138366784"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138367008"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805138365664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138366336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138366784": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138366672"}]}}, "139805138366672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138367008": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805201013040": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318559136"}, {"nodeId": "139805318559584"}]}}, "139805318559136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805318559584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138367680"}, {"nodeId": "139805138367792"}, {"nodeId": "139805138368016"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138368240"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805138367680": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138367792": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138368016": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138367904"}]}}, "139805138367904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138368240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805138367456": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318560032"}, {"nodeId": "139805318560480"}]}}, "139805318560032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}}, "139805318560480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138367568"}, {"nodeId": "139805138368688"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138368912"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}}, "139805138367568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138368688": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138368352"}]}}, "139805138368352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138368912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805138368464": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318560928"}, {"nodeId": "139805318561376"}]}}, "139805318560928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805318561376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138368576"}, {"nodeId": "139805138369360"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138369584"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138368576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138369360": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138369024"}]}}, "139805138369024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138369584": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805138369136": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318709536"}, {"nodeId": "139805318709984"}]}}, "139805318709536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805318709984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138369248"}, {"nodeId": "139805138370032"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138370256"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805138369248": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138370032": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138369696"}]}}, "139805138369696": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138370256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805201013376": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318710432"}, {"nodeId": "139805318710880"}]}}, "139805318710432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}}, "139805318710880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138436608"}, {"nodeId": "139805138436720"}, {"nodeId": "139805138436832"}, {"nodeId": "139805138437056"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138437280"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}}, "139805138436608": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138436720": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138436832": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138437056": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138436944"}]}}, "139805138436944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138437280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805138436384": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318711328"}, {"nodeId": "139805318711776"}]}}, "139805318711328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805318711776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138436496"}, {"nodeId": "139805138437728"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138437952"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805138436496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138437728": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138437392"}]}}, "139805138437392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138437952": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805318712224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138438288"}, {"nodeId": "139805138437616"}, {"nodeId": "139805138438400"}, {"nodeId": "139805138438848"}, {"nodeId": "139805481893408"}, {"nodeId": "139805138439296"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138439520"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "mean", "cov", "size", "check_valid", "tol", "method"]}}, "139805138438288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138437616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138438400": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138438064"}]}}, "139805138438064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138438848": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138439296": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138439520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805318712672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138439856"}, {"nodeId": "139805138438176"}, {"nodeId": "139805138439968"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138440192"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "pvals", "size"]}}, "139805138439856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138438176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138439968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138439632"}]}}, "139805138439632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138440192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805318713120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138440304"}, {"nodeId": "139805481893056"}, {"nodeId": "139805138440528"}, {"nodeId": "139805138440864"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138441088"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "colors", "nsample", "size", "method"]}}, "139805138440304": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138440528": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138440416"}]}}, "139805138440416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138440864": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138441088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805318713568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138441424"}, {"nodeId": "139805138441200"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138441648"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "alpha", "size"]}}, "139805138441424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138441200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138439744"}]}}, "139805138439744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138441648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805318714016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138441984"}, {"nodeId": "139805138441312"}, {"nodeId": "139805138442208"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "x", "axis", "out"]}}, "139805138441984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138441312": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805138442208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}]}}, "139805318714464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138442656"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "axis"]}}, "139805138442656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805150977312": {"type": "Concrete", "content": {"module": "numpy.random._mt19937", "simpleName": "MT19937", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318716256"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318716704"}, "name": "_legacy_seeding"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318717152"}, "name": "jumped"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138146064"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100552512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}], "typeVars": [], "bases": [{"nodeId": "139805150592192"}], "isAbstract": false}}, "139805318716256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977312"}, {"nodeId": "139805138146400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "139805138146400": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138146288"}, {"nodeId": "139805150591840"}]}}, "139805138146288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805318716704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977312"}, {"nodeId": "139805138146736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seed"]}}, "139805138146736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805318717152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977312"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150977312"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}}, "139805138146064": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318717600"}]}}, "139805318717600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977312"}], "returnType": {"nodeId": "139805138146624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138146624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805100552512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977312"}], "returnType": {"nodeId": "139805138146624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150975904": {"type": "Concrete", "content": {"module": "numpy.random._pcg64", "simpleName": "PCG64", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318719392"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318719840"}, "name": "jumped"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138144944"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100554528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318721184"}, "name": "advance"}}], "typeVars": [], "bases": [{"nodeId": "139805150592192"}], "isAbstract": false}}, "139805318719392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150975904"}, {"nodeId": "139805138145280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "139805138145280": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138145168"}, {"nodeId": "139805150591840"}]}}, "139805138145168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805318719840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150975904"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150975904"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}}, "139805138144944": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318720288"}]}}, "139805318720288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150975904"}], "returnType": {"nodeId": "139805138145056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138145056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805100554528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150975904"}], "returnType": {"nodeId": "139805138145056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805318721184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150975904"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150975904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "delta"]}}, "139805150976256": {"type": "Concrete", "content": {"module": "numpy.random._pcg64", "simpleName": "PCG64DXSM", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318721632"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318722080"}, "name": "jumped"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138145504"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100553632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318723424"}, "name": "advance"}}], "typeVars": [], "bases": [{"nodeId": "139805150592192"}], "isAbstract": false}}, "139805318721632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150976256"}, {"nodeId": "139805138145840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "139805138145840": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138145728"}, {"nodeId": "139805150591840"}]}}, "139805138145728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805318722080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150976256"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150976256"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}}, "139805138145504": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318722528"}]}}, "139805318722528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150976256"}], "returnType": {"nodeId": "139805138145616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138145616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805100553632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150976256"}], "returnType": {"nodeId": "139805138145616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805318723424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150976256"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150976256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "delta"]}}, "139805150974848": {"type": "Concrete", "content": {"module": "numpy.random._philox", "simpleName": "Philox", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "counter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318724768"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138143936"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100189376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323100896"}, "name": "jumped"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323101344"}, "name": "advance"}}], "typeVars": [], "bases": [{"nodeId": "139805150592192"}], "isAbstract": false}}, "139805318724768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150974848"}, {"nodeId": "139805138143824"}, {"nodeId": "139805138144496"}, {"nodeId": "139805138144720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "seed", "counter", "key"]}}, "139805138143824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138144272"}, {"nodeId": "139805150591840"}]}}, "139805138144272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138144496": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138144384"}]}}, "139805138144384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138144720": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138144608"}]}}, "139805138144608": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138143936": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318725216"}]}}, "139805318725216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150974848"}], "returnType": {"nodeId": "139805138144048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138144048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805100189376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150974848"}], "returnType": {"nodeId": "139805138144048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805323100896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150974848"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150974848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}}, "139805323101344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150974848"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150974848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "delta"]}}, "139805150973792": {"type": "Concrete", "content": {"module": "numpy.random._sfc64", "simpleName": "SFC64", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323102688"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138074896"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100738144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}], "typeVars": [], "bases": [{"nodeId": "139805150592192"}], "isAbstract": false}}, "139805323102688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150973792"}, {"nodeId": "139805138143040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "139805138143040": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138143712"}, {"nodeId": "139805150591840"}]}}, "139805138143712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138074896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805323103136"}]}}, "139805323103136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150973792"}], "returnType": {"nodeId": "139805138143600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138143600": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805100738144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150973792"}], "returnType": {"nodeId": "139805138143600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150972736": {"type": "Concrete", "content": {"module": "numpy.random.mtrand", "simpleName": "RandomState", "members": [{"kind": "Variable", "content": {"name": "_bit_generator", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150592192"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323115232"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323115680"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323116128"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318807840"}, "name": "__getstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318808288"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318808736"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318809184"}, "name": "seed"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137911872"}, "items": [{"kind": "Variable", "content": {"name": "get_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318810528"}, "name": "set_state"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137913440"}, "items": [{"kind": "Variable", "content": {"name": "random_sample", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random_sample", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "random_sample"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137913552"}, "items": [{"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "random"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137915120"}, "items": [{"kind": "Variable", "content": {"name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "beta"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137915568"}, "items": [{"kind": "Variable", "content": {"name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "exponential"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137878848"}, "items": [{"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_exponential"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137917808"}, "items": [{"kind": "Variable", "content": {"name": "tomaxint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tomaxint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "tomaxint"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137917920"}, "items": [{"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "randint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318823072"}, "name": "bytes"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137918368"}, "items": [{"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "choice"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805151027360"}, "items": [{"kind": "Variable", "content": {"name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "uniform"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138017904"}, "items": [{"kind": "Variable", "content": {"name": "rand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rand"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138018800"}, "items": [{"kind": "Variable", "content": {"name": "randn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "randn"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138018912"}, "items": [{"kind": "Variable", "content": {"name": "random_integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random_integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "random_integers"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138019024"}, "items": [{"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_normal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138020480"}, "items": [{"kind": "Variable", "content": {"name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "normal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138020592"}, "items": [{"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_gamma"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138021712"}, "items": [{"kind": "Variable", "content": {"name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "gamma"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138022384"}, "items": [{"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "f"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138023168"}, "items": [{"kind": "Variable", "content": {"name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "noncentral_f"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138023952"}, "items": [{"kind": "Variable", "content": {"name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "chisquare"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137927552"}, "items": [{"kind": "Variable", "content": {"name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "noncentral_chisquare"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138025744"}, "items": [{"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_t"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805151028928"}, "items": [{"kind": "Variable", "content": {"name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "vonmises"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138060560"}, "items": [{"kind": "Variable", "content": {"name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pareto"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138061344"}, "items": [{"kind": "Variable", "content": {"name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "weibull"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138062016"}, "items": [{"kind": "Variable", "content": {"name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "power"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138062688"}, "items": [{"kind": "Variable", "content": {"name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_cauchy"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138063360"}, "items": [{"kind": "Variable", "content": {"name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "laplace"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138063472"}, "items": [{"kind": "Variable", "content": {"name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "gumbel"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138064592"}, "items": [{"kind": "Variable", "content": {"name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "logistic"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138065376"}, "items": [{"kind": "Variable", "content": {"name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "lognormal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138066160"}, "items": [{"kind": "Variable", "content": {"name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rayleigh"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138066944"}, "items": [{"kind": "Variable", "content": {"name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "wald"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138067616"}, "items": [{"kind": "Variable", "content": {"name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "triangular"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138068400"}, "items": [{"kind": "Variable", "content": {"name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "binomial"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138025856"}, "items": [{"kind": "Variable", "content": {"name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "negative_binomial"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138070304"}, "items": [{"kind": "Variable", "content": {"name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "poisson"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138071312"}, "items": [{"kind": "Variable", "content": {"name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "zipf"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138071984"}, "items": [{"kind": "Variable", "content": {"name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "geometric"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138072656"}, "items": [{"kind": "Variable", "content": {"name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "hypergeometric"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138073328"}, "items": [{"kind": "Variable", "content": {"name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "logseries"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cov", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "check_valid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314300192"}, "name": "multivariate_normal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pvals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314300640"}, "name": "multinomial"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "alpha", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314301088"}, "name": "dirichlet"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314301536"}, "name": "shuffle"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138074224"}, "items": [{"kind": "Variable", "content": {"name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "permutation"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805323115232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137912208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "139805137912208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137912096"}, {"nodeId": "139805150592192"}]}}, "139805137912096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805323115680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805323116128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805318807840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805318808288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139805318808736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}], "returnType": {"nodeId": "139805137912992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805137912992": {"type": "Tuple", "content": {"items": [{"nodeId": "139805184078592"}, {"nodeId": "139805137912656"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805184078592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805150972736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805137912656": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805318809184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137913216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "139805137913216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137913104"}]}}, "139805137913104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137911872": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318809632"}, {"nodeId": "139805318810080"}]}}, "139805318809632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "legacy"]}}, "139805318810080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805137914336"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "legacy"]}}, "139805137914336": {"type": "Union", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "139805137914224"}]}}, "139805137914224": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137914000"}]}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}]}}, "139805137914000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805318810528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137915008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139805137915008": {"type": "Union", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "139805137914896"}]}}, "139805137914896": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137914672"}]}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}]}}, "139805137914672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805137913440": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318810976"}, {"nodeId": "139805318811424"}]}}, "139805318810976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805318811424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137915232"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137915456"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805137915232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137915456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805137913552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318811872"}, {"nodeId": "139805318812320"}]}}, "139805318811872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805318812320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137915680"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137915904"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805137915680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137915904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805137915120": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318812768"}, {"nodeId": "139805318813216"}]}}, "139805318812768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}}, "139805318813216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137916128"}, {"nodeId": "139805137916240"}, {"nodeId": "139805137916464"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137916688"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}}, "139805137916128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137916240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137916464": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137916352"}]}}, "139805137916352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137916688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805137915568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318813664"}, {"nodeId": "139805318814112"}]}}, "139805318813664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805318814112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137916016"}, {"nodeId": "139805137917136"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137917360"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805137916016": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137917136": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137916800"}]}}, "139805137916800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137917360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805137878848": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318814560"}, {"nodeId": "139805318815008"}]}}, "139805318814560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805318815008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137918032"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137918256"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805137918032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137918256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805137917808": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318815456"}, {"nodeId": "139805318815904"}]}}, "139805318815456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805318815904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137918480"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137918704"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805137918480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137918704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805137917920": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318816352"}, {"nodeId": "139805318816800"}, {"nodeId": "139805318817248"}, {"nodeId": "139805318817696"}, {"nodeId": "139805318818144"}, {"nodeId": "139805318818592"}, {"nodeId": "139805318819040"}, {"nodeId": "139805318819488"}, {"nodeId": "139805318819936"}, {"nodeId": "139805318820384"}, {"nodeId": "139805318820832"}, {"nodeId": "139805318821280"}, {"nodeId": "139805318821728"}, {"nodeId": "139805318822176"}, {"nodeId": "139805318822624"}]}}, "139805318816352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "139805137918928"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "low", "high"]}}, "139805137918928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805318816800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "139805137919040"}, {"nodeId": "N"}, {"nodeId": "139805137919152"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137919040": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805137919152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159554320"}}}, "139805318817248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "139805137919376"}, {"nodeId": "N"}, {"nodeId": "139805137919600"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137919376": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805137919600": {"type": "Union", "content": {"items": [{"nodeId": "139805137919264"}, {"nodeId": "139805137918816"}]}}, "139805137919264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805200898912"}}}, "139805137918816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805200899696"}}}, "139805318817696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137921504"}, {"nodeId": "139805137920384"}, {"nodeId": "139805137922064"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137920720"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805137921504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137920384": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137922176"}]}}, "139805137922176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137922064": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137921168"}]}}, "139805137921168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137920720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805318818144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137921392"}, {"nodeId": "139805137921616"}, {"nodeId": "139805137921280"}, {"nodeId": "139805137920496"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137921392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137921616": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137921728"}]}}, "139805137921728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137921280": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137919936"}]}}, "139805137919936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137920496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159554320"}}}, "139805318818592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137921056"}, {"nodeId": "139805137920048"}, {"nodeId": "139805137920832"}, {"nodeId": "139805137920272"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137922400"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137921056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137920048": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137921952"}]}}, "139805137921952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137920832": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137920944"}]}}, "139805137920944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137920272": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137921840"}]}, {"nodeId": "0"}, {"nodeId": "139805137919488"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137919712"}]}]}]}}, "139805137921840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805137919488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591904"}}}, "139805137919712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805137922400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805318819040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137922736"}, {"nodeId": "139805137922512"}, {"nodeId": "139805137922960"}, {"nodeId": "139805137923408"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137923632"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137922736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137922512": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137919824"}]}}, "139805137919824": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137922960": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137922848"}]}}, "139805137922848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137923408": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137923072"}]}, {"nodeId": "0"}, {"nodeId": "139805137923184"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137923296"}]}]}]}}, "139805137923072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858208"}]}}}, "139805137923184": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184592576"}}}, "139805137923296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858208"}]}}}, "139805137923632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858208"}]}}}, "139805318819488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137923968"}, {"nodeId": "139805137923744"}, {"nodeId": "139805137924192"}, {"nodeId": "139805137924640"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137924864"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137923968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137923744": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137922624"}]}}, "139805137922624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137924192": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137924080"}]}}, "139805137924080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137924640": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137924304"}]}, {"nodeId": "0"}, {"nodeId": "139805137924416"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137924528"}]}]}]}}, "139805137924304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857856"}]}}}, "139805137924416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593248"}}}, "139805137924528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857856"}]}}}, "139805137924864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857856"}]}}}, "139805318819936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137925200"}, {"nodeId": "139805137924976"}, {"nodeId": "139805137925424"}, {"nodeId": "139805137925872"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137926096"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137925200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137924976": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137923856"}]}}, "139805137923856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137925424": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137925312"}]}}, "139805137925312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137925872": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137925536"}]}, {"nodeId": "0"}, {"nodeId": "139805137925648"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137925760"}]}]}]}}, "139805137925536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805137925648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593920"}}}, "139805137925760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805137926096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805318820384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137926432"}, {"nodeId": "139805137926208"}, {"nodeId": "139805137926656"}, {"nodeId": "139805137927104"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137927328"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137926432": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137926208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137925088"}]}}, "139805137925088": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137926656": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137926544"}]}}, "139805137926544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137927104": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137926768"}]}, {"nodeId": "0"}, {"nodeId": "139805137926880"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137926992"}]}]}]}}, "139805137926768": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805137926880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184458000"}}}, "139805137926992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805137927328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805318820832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137927664"}, {"nodeId": "139805137927440"}, {"nodeId": "139805137927888"}, {"nodeId": "139805138010400"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138010624"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137927664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137927440": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137926320"}]}}, "139805137926320": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137927888": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137927776"}]}}, "139805137927776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138010400": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137928000"}]}, {"nodeId": "0"}, {"nodeId": "139805138010176"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138010288"}]}]}]}}, "139805137928000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858208"}]}}}, "139805138010176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184589888"}}}, "139805138010288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858208"}]}}}, "139805138010624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858208"}]}}}, "139805318821280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138010848"}, {"nodeId": "139805138010736"}, {"nodeId": "139805138011184"}, {"nodeId": "139805138011632"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138011856"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805138010848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138010736": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138010960"}]}}, "139805138010960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138011184": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138011072"}]}}, "139805138011072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138011632": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138011296"}]}, {"nodeId": "0"}, {"nodeId": "139805138011408"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138011520"}]}]}]}}, "139805138011296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805138011408": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184590560"}}}, "139805138011520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805138011856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805318821728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138012080"}, {"nodeId": "139805138011968"}, {"nodeId": "139805138012416"}, {"nodeId": "139805138012864"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138013088"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805138012080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138011968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138012192"}]}}, "139805138012192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138012416": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138012304"}]}}, "139805138012304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138012864": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138012528"}]}, {"nodeId": "0"}, {"nodeId": "139805138012640"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138012752"}]}]}]}}, "139805138012528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805138012640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591232"}}}, "139805138012752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805138013088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805318822176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138013312"}, {"nodeId": "139805138013200"}, {"nodeId": "139805138013648"}, {"nodeId": "139805138014208"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138014432"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805138013312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138013200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138013424"}]}}, "139805138013424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138013648": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138013536"}]}}, "139805138013536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138014208": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138013760"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805138013872"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138014096"}]}]}]}}, "139805138013760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138013872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184601200"}}}, "139805138014096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138014432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805318822624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138014656"}, {"nodeId": "139805138014544"}, {"nodeId": "139805138014992"}, {"nodeId": "139805138015552"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138015776"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805138014656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138014544": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138014768"}]}}, "139805138014768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138014992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138014880"}]}}, "139805138014880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138015552": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138015104"}]}, {"nodeId": "0"}, {"nodeId": "139805138015216"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138015440"}]}]}]}}, "139805138015104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262128"}]}}}, "139805138015216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184605344"}}}, "139805138015440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262128"}]}}}, "139805138015776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262128"}]}}}, "139805318823072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "length"]}}, "139805137918368": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318823520"}, {"nodeId": "139805314105632"}, {"nodeId": "139805314106080"}, {"nodeId": "139805314106528"}]}}, "139805318823520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138015888"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}}, "139805138015888": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138016112"}]}}, "139805138016112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805314105632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "139805138016448"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138016224"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138016672"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}}, "139805138016448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138016224": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138016000"}]}}, "139805138016000": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138016672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805314106080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138017008"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138016784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}}, "139805138017008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138016784": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138016336"}]}}, "139805138016336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805314106528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138016896"}, {"nodeId": "139805138017456"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138017568"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}}, "139805138016896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138017456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138017568": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138017344"}]}}, "139805138017344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805151027360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314106976"}, {"nodeId": "139805314107424"}]}}, "139805314106976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805314107424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138018128"}, {"nodeId": "139805138018016"}, {"nodeId": "139805138018352"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138018576"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805138018128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138018016": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138018352": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138018240"}]}}, "139805138018240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138018576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138017904": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314107872"}, {"nodeId": "139805314108320"}]}}, "139805314107872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805314108320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138018688"}]}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "139805138018688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138018800": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314108768"}, {"nodeId": "139805314109216"}]}}, "139805314108768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805314109216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138019248"}]}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "139805138019248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138018912": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314109664"}, {"nodeId": "139805314110112"}]}}, "139805314109664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "139805138019472"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805138019472": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805314110112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138019584"}, {"nodeId": "139805138019808"}, {"nodeId": "139805138020032"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138020256"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805138019584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138019808": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138019696"}]}}, "139805138019696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138020032": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138019920"}]}}, "139805138019920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138020256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138019024": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314110560"}, {"nodeId": "139805314111008"}]}}, "139805314110560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805314111008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138019360"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138020704"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805138019360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138020704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138020480": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314111456"}, {"nodeId": "139805314111904"}]}}, "139805314111456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805314111904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138020928"}, {"nodeId": "139805138021040"}, {"nodeId": "139805138021264"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138021488"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138020928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138021040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138021264": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138021152"}]}}, "139805138021152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138021488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138020592": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314112352"}, {"nodeId": "139805314112800"}]}}, "139805314112352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "shape", "size"]}}, "139805314112800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138020816"}, {"nodeId": "139805138021936"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138022160"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "shape", "size"]}}, "139805138020816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138021936": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138021600"}]}}, "139805138021600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138022160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138021712": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314113248"}, {"nodeId": "139805314113696"}]}}, "139805314113248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}}, "139805314113696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138021824"}, {"nodeId": "139805138022272"}, {"nodeId": "139805138022720"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138022944"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}}, "139805138021824": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138022272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138022720": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138022608"}]}}, "139805138022608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138022944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138022384": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314114144"}, {"nodeId": "139805314114592"}]}}, "139805314114144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}}, "139805314114592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138022496"}, {"nodeId": "139805138023056"}, {"nodeId": "139805138023504"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138023728"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}}, "139805138022496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138023056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138023504": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138023392"}]}}, "139805138023392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138023728": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138023168": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314115040"}, {"nodeId": "139805314115488"}]}}, "139805314115040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}}, "139805314115488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138023280"}, {"nodeId": "139805138023840"}, {"nodeId": "139805138024176"}, {"nodeId": "139805138024400"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138024624"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}}, "139805138023280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138023840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138024176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138024400": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138024288"}]}}, "139805138024288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138024624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138023952": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314115936"}, {"nodeId": "139805314116384"}]}}, "139805314115936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805314116384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138024064"}, {"nodeId": "139805138025072"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138025296"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805138024064": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138025072": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138024736"}]}}, "139805138024736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138025296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805137927552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314116832"}, {"nodeId": "139805314117280"}]}}, "139805314116832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}}, "139805314117280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138025968"}, {"nodeId": "139805138026080"}, {"nodeId": "139805138026304"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138059440"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}}, "139805138025968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138026080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138026304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138026192"}]}}, "139805138026192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138059440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138025744": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314117728"}, {"nodeId": "139805314118176"}, {"nodeId": "139805314118624"}]}}, "139805314117728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805314118176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138059776"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138059888"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805138059776": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138059888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805314118624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138060224"}, {"nodeId": "139805138059664"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138060336"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805138060224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138059664": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138060336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805151028928": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314119072"}, {"nodeId": "139805314119520"}]}}, "139805314119072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}}, "139805314119520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138060112"}, {"nodeId": "139805138060448"}, {"nodeId": "139805138060896"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138061120"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}}, "139805138060112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138060448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138060896": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138060784"}]}}, "139805138060784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138061120": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138060560": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314119968"}, {"nodeId": "139805314120416"}]}}, "139805314119968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805314120416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138060672"}, {"nodeId": "139805138061568"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138061792"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138060672": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138061568": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138061232"}]}}, "139805138061232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138061792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138061344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314120864"}, {"nodeId": "139805314121312"}]}}, "139805314120864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805314121312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138061456"}, {"nodeId": "139805138062240"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138062464"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138061456": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138062240": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138061904"}]}}, "139805138061904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138062464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138062016": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314285856"}, {"nodeId": "139805314286304"}]}}, "139805314285856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805314286304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138062128"}, {"nodeId": "139805138062912"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138063136"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138062128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138062912": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138062576"}]}}, "139805138062576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138063136": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138062688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314286752"}, {"nodeId": "139805314287200"}]}}, "139805314286752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805314287200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138062800"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138063584"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805138062800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138063584": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138063360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314287648"}, {"nodeId": "139805314288096"}]}}, "139805314287648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805314288096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138063808"}, {"nodeId": "139805138063920"}, {"nodeId": "139805138064144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138064368"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138063808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138063920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138064144": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138064032"}]}}, "139805138064032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138064368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138063472": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314288544"}, {"nodeId": "139805314288992"}]}}, "139805314288544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805314288992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138063696"}, {"nodeId": "139805138064480"}, {"nodeId": "139805138064928"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138065152"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138063696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138064480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138064928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138064816"}]}}, "139805138064816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138065152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138064592": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314289440"}, {"nodeId": "139805314289888"}]}}, "139805314289440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805314289888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138064704"}, {"nodeId": "139805138065264"}, {"nodeId": "139805138065712"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138065936"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138064704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138065264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138065712": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138065600"}]}}, "139805138065600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138065936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138065376": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314290336"}, {"nodeId": "139805314290784"}]}}, "139805314290336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}}, "139805314290784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138065488"}, {"nodeId": "139805138066048"}, {"nodeId": "139805138066496"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138066720"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}}, "139805138065488": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138066048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138066496": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138066384"}]}}, "139805138066384": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138066720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138066160": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314291232"}, {"nodeId": "139805314291680"}]}}, "139805314291232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805314291680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138066272"}, {"nodeId": "139805138067168"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138067392"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805138066272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138067168": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138066832"}]}}, "139805138066832": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138067392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138066944": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314292128"}, {"nodeId": "139805314292576"}]}}, "139805314292128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}}, "139805314292576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138067056"}, {"nodeId": "139805138067504"}, {"nodeId": "139805138067952"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138068176"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}}, "139805138067056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138067504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138067952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138067840"}]}}, "139805138067840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138068176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138067616": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314293024"}, {"nodeId": "139805314293472"}]}}, "139805314293024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}}, "139805314293472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138067728"}, {"nodeId": "139805138068288"}, {"nodeId": "139805138068624"}, {"nodeId": "139805138068848"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138069072"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}}, "139805138067728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138068288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138068624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138068848": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138068736"}]}}, "139805138068736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138069072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138068400": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314293920"}, {"nodeId": "139805314294368"}]}}, "139805314293920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805314294368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138068512"}, {"nodeId": "139805138069184"}, {"nodeId": "139805138069632"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138069856"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805138068512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138069184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138069632": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138069520"}]}}, "139805138069520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138069856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138025856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314294816"}, {"nodeId": "139805314295264"}]}}, "139805314294816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805314295264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138070528"}, {"nodeId": "139805138070640"}, {"nodeId": "139805138070864"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138071088"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805138070528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138070640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138070864": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138070752"}]}}, "139805138070752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138071088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138070304": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314295712"}, {"nodeId": "139805314296160"}]}}, "139805314295712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}}, "139805314296160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138070416"}, {"nodeId": "139805138071536"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138071760"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}}, "139805138070416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138071536": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138071200"}]}}, "139805138071200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138071760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138071312": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314296608"}, {"nodeId": "139805314297056"}]}}, "139805314296608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805314297056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138071424"}, {"nodeId": "139805138072208"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138072432"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138071424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138072208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138071872"}]}}, "139805138071872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138072432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138071984": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314297504"}, {"nodeId": "139805314297952"}]}}, "139805314297504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805314297952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138072096"}, {"nodeId": "139805138072880"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138073104"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805138072096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138072880": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138072544"}]}}, "139805138072544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138073104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138072656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314298400"}, {"nodeId": "139805314298848"}]}}, "139805314298400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}}, "139805314298848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138072768"}, {"nodeId": "139805138073216"}, {"nodeId": "139805138073552"}, {"nodeId": "139805138073776"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138074000"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}}, "139805138072768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138073216": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138073552": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138073776": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138073664"}]}}, "139805138073664": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138074000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138073328": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314299296"}, {"nodeId": "139805314299744"}]}}, "139805314299296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805314299744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138073440"}, {"nodeId": "139805138074448"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138074672"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805138073440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138074448": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138074112"}]}}, "139805138074112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138074672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805314300192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138075008"}, {"nodeId": "139805138074336"}, {"nodeId": "139805138075120"}, {"nodeId": "139805138141248"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138141472"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "cov", "size", "check_valid", "tol"]}}, "139805138075008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138074336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138075120": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138074784"}]}}, "139805138074784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138141248": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138141472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805314300640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138141696"}, {"nodeId": "139805138141808"}, {"nodeId": "139805138141920"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138142144"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "pvals", "size"]}}, "139805138141696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138141808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138141920": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138141584"}]}}, "139805138141584": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138142144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805314301088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138142480"}, {"nodeId": "139805138142368"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138142704"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "alpha", "size"]}}, "139805138142480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138142368": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138142256"}]}}, "139805138142256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138142704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805314301536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138142928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "139805138142928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138074224": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314466080"}, {"nodeId": "139805314466528"}]}}, "139805314466080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138143152"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "139805138143152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805314466528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138143264"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "139805138143264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805150588320": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "IgnoreException", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805150588672": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "clear_and_catch_warnings", "members": [{"kind": "Variable", "content": {"name": "class_modules", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805272033408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "modules", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003040", "args": [{"nodeId": "139805272033408"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142483680"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314470112"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314470560"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139805167796640", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "139805142483680": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314468768"}, {"nodeId": "139805314469216"}, {"nodeId": "139805314469664"}]}}, "139805314468768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805272033408"}]}], "returnType": {"nodeId": "139805150589376"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "record", "modules"]}}, "139805150589376": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "_clear_and_catch_warnings_without_records", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314471456"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "139805150588672"}], "isAbstract": false}}, "139805314471456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150589376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805314469216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805272033408"}]}], "returnType": {"nodeId": "139805150589024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "record", "modules"]}}, "139805150589024": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "_clear_and_catch_warnings_with_records", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314471008"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "139805150588672"}], "isAbstract": false}}, "139805314471008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150589024"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805167796288": {"type": "Concrete", "content": {"module": "warnings", "simpleName": "WarningMessage", "members": [{"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167881344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167880560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167880672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167880784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293657248"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805167881344": {"type": "Union", "content": {"items": [{"nodeId": "139805276874784"}, {"nodeId": "139805276669024"}]}}, "139805167880560": {"type": "Union", "content": {"items": [{"nodeId": "139805277000928"}, {"nodeId": "N"}]}}, "139805167880672": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805167880784": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293657248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167796288"}, {"nodeId": "139805167883248"}, {"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805167883360"}, {"nodeId": "139805167883472"}, {"nodeId": "139805167883696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "message", "category", "filename", "lineno", "file", "line", "source"]}}, "139805167883248": {"type": "Union", "content": {"items": [{"nodeId": "139805276874784"}, {"nodeId": "139805276669024"}]}}, "139805167883360": {"type": "Union", "content": {"items": [{"nodeId": "139805277000928"}, {"nodeId": "N"}]}}, "139805167883472": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805167883696": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805314469664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805272033408"}]}], "returnType": {"nodeId": "139805150588672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "record", "modules"]}}, "139805314470112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150588672"}], "returnType": {"nodeId": "139805142484912"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805142484912": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}]}}, "139805314470560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150588672"}, {"nodeId": "139805142485024"}, {"nodeId": "139805142485136"}, {"nodeId": "139805142485248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null, null]}}, "139805142485024": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805142485136": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276675712"}]}}, "139805142485248": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272037280"}]}}, "139805167796640": {"type": "Concrete", "content": {"module": "warnings", "simpleName": "catch_warnings", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805167882016"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293136352"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293136800"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139805167796640"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805167796640": {"type": "TypeVar", "content": {"varName": "_W", "values": [], "upperBound": {"nodeId": "139805167881232"}, "def": "139805167796640", "variance": "INVARIANT"}}, "139805167881232": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}, {"nodeId": "N"}]}}, "139805167882016": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293135008"}, {"nodeId": "139805293135456"}, {"nodeId": "139805293135904"}]}}, "139805293135008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167796640", "args": [{"nodeId": "N"}]}, {"nodeId": "0"}, {"nodeId": "139805167884032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "record", "module"]}}, "139805167884032": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805293135456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167796640", "args": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}]}, {"nodeId": "0"}, {"nodeId": "139805167884256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "record", "module"]}}, "139805167884256": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805293135904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167796640", "args": [{"nodeId": "139805167884368"}]}, {"nodeId": "139805481882144"}, {"nodeId": "139805167884480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "record", "module"]}}, "139805167884368": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}, {"nodeId": "N"}]}}, "139805167884480": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805293136352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167796640", "args": [{"nodeId": ".1.139805167796640"}]}], "returnType": {"nodeId": ".1.139805167796640"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805293136800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167796640", "args": [{"nodeId": ".1.139805167796640"}]}, {"nodeId": "139805167884592"}, {"nodeId": "139805167884704"}, {"nodeId": "139805167884816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805167884592": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805167884704": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805167884816": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805150587968": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "KnownFailureException", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805150589728": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "suppress_warnings", "members": [{"kind": "Variable", "content": {"name": "log", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "forwarding_rule", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314471904"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314472352"}, "name": "filter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314472800"}, "name": "record"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314473248"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314473696"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314474144"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805314471904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150589728"}, {"nodeId": "139805142486032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "forwarding_rule"]}}, "139805142486032": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805314472352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150589728"}, {"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805142486144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "category", "message", "module"]}}, "139805142486144": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272033408"}]}}, "139805314472800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150589728"}, {"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805142486256"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "category", "message", "module"]}}, "139805142486256": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272033408"}]}}, "139805314473248": {"type": "Function", "content": {"typeVars": [".-1.139805314473248"], "argTypes": [{"nodeId": ".-1.139805314473248"}], "returnType": {"nodeId": ".-1.139805314473248"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805314473248": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805314473248", "variance": "INVARIANT"}}, "139805314473696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150589728"}, {"nodeId": "139805142486368"}, {"nodeId": "139805142486480"}, {"nodeId": "139805142486592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null, null]}}, "139805142486368": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805142486480": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276675712"}]}}, "139805142486592": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272037280"}]}}, "139805314474144": {"type": "Function", "content": {"typeVars": [".-1.139805314474144"], "argTypes": [{"nodeId": "139805150589728"}, {"nodeId": ".-1.139805314474144"}], "returnType": {"nodeId": ".-1.139805314474144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.139805314474144": {"type": "TypeVar", "content": {"varName": "_FT", "values": [], "upperBound": {"nodeId": "139805293656800"}, "def": "139805314474144", "variance": "INVARIANT"}}, "139805293656800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805272045376": {"type": "Concrete", "content": {"module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365095328"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365096224"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365096672"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365097120"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365097568"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365098016"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365098464"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365098912"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365099360"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365099808"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259617712"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139805272045376"}], "bases": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".1.139805272045376"}]}], "isAbstract": false}}, ".1.139805272045376": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272045376", "variance": "INVARIANT"}}, "139805365095328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, {"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".1.139805272045376"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "data", "encodekey", "decodekey", "encodevalue", "decodevalue"]}}, "139805365096224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, {"nodeId": ".1.139805272045376"}, {"nodeId": ".1.139805272045376"}], "returnType": {"nodeId": ".1.139805272045376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}}, "139805365096672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".1.139805272045376"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805365097120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, {"nodeId": ".1.139805272045376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805365097568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, {"nodeId": ".1.139805272045376"}], "returnType": {"nodeId": ".1.139805272045376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805365098016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, {"nodeId": ".1.139805272045376"}, {"nodeId": ".1.139805272045376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805365098464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805272045376"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805365098912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805365099360": {"type": "Function", "content": {"typeVars": [".-1.139805365099360", ".-2.139805365099360"], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805365099360"}, {"nodeId": ".-2.139805365099360"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805259622976"}, {"nodeId": "139805259623088"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805365099360": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805365099360", "variance": "INVARIANT"}}, ".-2.139805365099360": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805365099360", "variance": "INVARIANT"}}, "139805259622976": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".-1.139805365099360"}]}}, "139805259623088": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".-2.139805365099360"}]}}, "139805365099808": {"type": "Function", "content": {"typeVars": [".-1.139805365099808", ".-2.139805365099808"], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805365099808"}, {"nodeId": ".-2.139805365099808"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805259623200"}, {"nodeId": "139805259623312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805365099808": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805365099808", "variance": "INVARIANT"}}, ".-2.139805365099808": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805365099808", "variance": "INVARIANT"}}, "139805259623200": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".-1.139805365099808"}]}}, "139805259623312": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".-2.139805365099808"}]}}, "139805259617712": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805365100256"}, {"nodeId": "139805365100704"}]}}, "139805365100256": {"type": "Function", "content": {"typeVars": [".0.139805365100256"], "argTypes": [{"nodeId": ".0.139805365100256"}, {"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".1.139805272045376"}]}], "returnType": {"nodeId": ".0.139805365100256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805365100256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, "def": "139805365100256", "variance": "INVARIANT"}}, "139805365100704": {"type": "Function", "content": {"typeVars": [".0.139805365100704"], "argTypes": [{"nodeId": ".0.139805365100704"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805259623760"}]}], "returnType": {"nodeId": ".0.139805365100704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805365100704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, "def": "139805365100704", "variance": "INVARIANT"}}, "139805259623760": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".1.139805272045376"}]}}, "139805268309824": {"type": "Concrete", "content": {"module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242921744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242604032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242593504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242599552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242758464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242754432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242753760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242754656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242756672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242755552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242758240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242756448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242759136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242763392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242759584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242757568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242760704"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893408"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}], "isAbstract": false}}, "139805242921744": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805242604032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259623984"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259623984": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242593504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624096"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624096": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242599552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624208"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624208": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242758464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624320"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624320": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242754432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624432"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624432": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242753760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624544"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624544": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242754656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624656"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624656": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242756672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624768"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624768": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242755552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624880"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624880": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242758240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624992"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624992": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242756448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259625104"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259625104": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242759136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259625216"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259625216": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242763392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259625328"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259625328": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242759584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259625440"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259625440": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242757568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259625552"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259625552": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242760704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259625664"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259625664": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805272045728": {"type": "Concrete", "content": {"module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242765408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242768768"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356397216"}, "name": "inode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356397664"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356398112"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356398560"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356399008"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356399456"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356399904"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805272045728"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805272045728": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272045728", "variance": "INVARIANT"}}, "139805242765408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}], "returnType": {"nodeId": ".1.139805272045728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242768768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}], "returnType": {"nodeId": ".1.139805272045728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805356397216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805356397664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139805356398112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139805356398560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805356399008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805259626112"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139805259626112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263538976"}}}, "139805263538976": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805356399456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}], "returnType": {"nodeId": ".1.139805272045728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805356399904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805268510848": {"type": "Concrete", "content": {"module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242694272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242812544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242812096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242812320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242812768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242813216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242814336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242813440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242816352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242816800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242818144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242817472"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805242694272": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805242812544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259626448"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259626448": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242812096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259626560"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259626560": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242812320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259626672"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259626672": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242812768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259626784"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259626784": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242813216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259626896"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259626896": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242814336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259627008"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259627008": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242813440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259627120"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259627120": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242816352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259627232"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259627232": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242816800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259627344"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259627344": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242818144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259627456"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259627456": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242817472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259627568"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259627568": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805268511200": {"type": "Concrete", "content": {"module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242690128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242952832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242953280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242952608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242953952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242953504"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}], "isAbstract": false}}, "139805242690128": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805242952832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259628128"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259628128": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805242953280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259628240"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259628240": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805242952608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259628352"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259628352": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805242953952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259890752"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259890752": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805242953504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259890864"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259890864": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268511552": {"type": "Concrete", "content": {"module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805247577936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805243282976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805243287232"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805247577936": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805243282976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259898592"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259898592": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805243287232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259898704"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259898704": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805268511904": {"type": "Concrete", "content": {"module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805351681760"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805351682208"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805351682656"}, "name": "close"}}], "typeVars": [{"nodeId": ".1.139805268511904"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805268511904"}]}]}, {"nodeId": "139805267652704", "args": [{"nodeId": "139805268511904", "args": [{"nodeId": ".1.139805268511904"}]}]}], "isAbstract": false}}, ".1.139805268511904": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805268511904", "variance": "INVARIANT"}}, "139805351681760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268511904", "args": [{"nodeId": ".1.139805268511904"}]}], "returnType": {"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805268511904"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805351682208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268511904", "args": [{"nodeId": ".1.139805268511904"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139805351682656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268511904", "args": [{"nodeId": ".1.139805268511904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267652704": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360510944"}, "name": "__enter__"}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805217665120"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805267652704"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__enter__", "__exit__"]}}, ".1.139805267652704": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267652704", "variance": "COVARIANT"}}, "139805360510944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267652704", "args": [{"nodeId": ".1.139805267652704"}]}], "returnType": {"nodeId": ".1.139805267652704"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805217665120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267652704", "args": [{"nodeId": ".1.139805267652704"}]}, {"nodeId": "139805255446848"}, {"nodeId": "139805255446960"}, {"nodeId": "139805255447072"}], "returnType": {"nodeId": "139805255447184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255446848": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255446960": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255447072": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805255447184": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805268512256": {"type": "Concrete", "content": {"module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805351894752"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805351895200"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139805272607200"}], "isAbstract": false}}, "139805351894752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268512256"}, {"nodeId": "139805272607200"}, {"nodeId": "139805272042208", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}}, "139805272607200": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343561568"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226282208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226282656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226282880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226283328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343990048"}, "name": "reconfigure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343990496"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343990944"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343991392"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343991840"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343992288"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343992736"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343993184"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "139805272606848"}, {"nodeId": "139805277000928"}], "isAbstract": false}}, "139805343561568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}, {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805260219552"}, {"nodeId": "139805260219664"}, {"nodeId": "139805260219776"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "139805260219552": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260219664": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260219776": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805226282208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}], "returnType": {"nodeId": "139805277000576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805226282656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805226282880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805226283328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343990048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}, {"nodeId": "139805260219888"}, {"nodeId": "139805260220000"}, {"nodeId": "139805260220112"}, {"nodeId": "139805260220224"}, {"nodeId": "139805260220336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "139805260219888": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260220000": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260220112": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260220224": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805260220336": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805343990496": {"type": "Function", "content": {"typeVars": [".0.139805343990496"], "argTypes": [{"nodeId": ".0.139805343990496"}], "returnType": {"nodeId": ".0.139805343990496"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805343990496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272607200"}, "def": "139805343990496", "variance": "INVARIANT"}}, "139805343990944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805343991392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343991840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343992288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805343992736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805343993184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805272606848": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263541776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268567520"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343557984"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343558432"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343558880"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343559328"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343559776"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343560224"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343560672"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343561120"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "139805272046432"}], "isAbstract": false}}, "139805263541776": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268567520": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805343557984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805343558432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343558880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}], "returnType": {"nodeId": "139805277000576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343559328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343559776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343560224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805343560672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805343561120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}, {"nodeId": "139805260219440"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805260219440": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805272046432": {"type": "Concrete", "content": {"module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343224032"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343224480"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343224928"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343225376"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343225824"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343226272"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343226720"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343227168"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343227616"}, "name": "readable"}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276228288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343228064"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343228512"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343228960"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343229408"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343229856"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343230304"}, "name": "writable"}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276226720"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343230752"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343231200"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343231648"}, "name": "__del__"}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226091232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343232544"}, "name": "_checkClosed"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805343224032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805343224480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343224928": {"type": "Function", "content": {"typeVars": [".0.139805343224928"], "argTypes": [{"nodeId": ".0.139805343224928"}], "returnType": {"nodeId": ".0.139805343224928"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805343224928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272046432"}, "def": "139805343224928", "variance": "INVARIANT"}}, "139805343225376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}, {"nodeId": "139805260069712"}, {"nodeId": "139805260069824"}, {"nodeId": "139805260069936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805260069712": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805260069824": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805260069936": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805343225824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343226272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343226720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343227168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343227616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276228288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805343228064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805343228512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805343228960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343229408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343229856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}, {"nodeId": "139805260070048"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805260070048": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805343230304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276226720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805343230752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805277011488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343231200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}, {"nodeId": "139805260070160"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805260070160": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805343231648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805226091232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343232544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}, {"nodeId": "139805260070272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "139805260070272": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805272042208": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263531696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263538192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268560128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272228912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272229024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805264369296"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292775008"}, "name": "poll"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292775456"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292775904"}, "name": "communicate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292776352"}, "name": "send_signal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292776800"}, "name": "terminate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292777248"}, "name": "kill"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292777696"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292778144"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292778592"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805272042208"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805272042208": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272042208", "variance": "INVARIANT"}}, "139805263531696": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805268559568": {"type": "Union", "content": {"items": [{"nodeId": "139805268559120"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805268558896"}]}]}}, "139805268559120": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805267825536": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669376"}]}]}}, "139805268558896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805263538192": {"type": "Union", "content": {"items": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805272042208"}]}, {"nodeId": "N"}]}}, "139805268560128": {"type": "Union", "content": {"items": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805272042208"}]}, {"nodeId": "N"}]}}, "139805272228912": {"type": "Union", "content": {"items": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805272042208"}]}, {"nodeId": "N"}]}}, "139805272229024": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "A"}]}}, "139805264369296": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805276500736"}, {"nodeId": "139805297551264"}, {"nodeId": "139805297551712"}, {"nodeId": "139805297552160"}, {"nodeId": "139805297552608"}, {"nodeId": "139805297553056"}]}}, "139805276500736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805259312016"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259312240"}, {"nodeId": "139805259312464"}, {"nodeId": "139805259312688"}, {"nodeId": "139805259312912"}, {"nodeId": "139805259313024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805259313360"}, {"nodeId": "139805259313584"}, {"nodeId": "139805259313696"}, {"nodeId": "139805259313920"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481889536", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805259314032"}, {"nodeId": "139805276669024"}, {"nodeId": "139805259314144"}, {"nodeId": "139805259314256"}, {"nodeId": "139805259314368"}, {"nodeId": "139805259314592"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139805259312016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259312240": {"type": "Union", "content": {"items": [{"nodeId": "139805259312128"}, {"nodeId": "N"}]}}, "139805259312128": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259312464": {"type": "Union", "content": {"items": [{"nodeId": "139805259312352"}, {"nodeId": "N"}]}}, "139805259312352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805271916016": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}, {"nodeId": "139805277000224", "args": [{"nodeId": "A"}]}]}}, "139805259312688": {"type": "Union", "content": {"items": [{"nodeId": "139805259312576"}, {"nodeId": "N"}]}}, "139805259312576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259312912": {"type": "Union", "content": {"items": [{"nodeId": "139805259312800"}, {"nodeId": "N"}]}}, "139805259312800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259313024": {"type": "Union", "content": {"items": [{"nodeId": "139805276500288"}, {"nodeId": "N"}]}}, "139805276500288": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805259313360": {"type": "Union", "content": {"items": [{"nodeId": "139805259313248"}, {"nodeId": "N"}]}}, "139805259313248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259313584": {"type": "Union", "content": {"items": [{"nodeId": "139805259313472"}, {"nodeId": "N"}]}}, "139805259313472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268560352"}}}, "139805268560352": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669376"}, {"nodeId": "139805268559904"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805268559456"}]}]}}, "139805268559904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805268559456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259313696": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259313920": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805259314032": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259314144": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259314256": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259314368": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259314592": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805259314480"}]}, {"nodeId": "N"}]}}, "139805259314480": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805297551264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805259314704"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259314928"}, {"nodeId": "139805259315152"}, {"nodeId": "139805259315376"}, {"nodeId": "139805259315600"}, {"nodeId": "139805259315712"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805259316048"}, {"nodeId": "139805259316272"}, {"nodeId": "139805259316384"}, {"nodeId": "139805259316608"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481889536", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805259316720"}, {"nodeId": "139805259316832"}, {"nodeId": "139805276669024"}, {"nodeId": "139805259316944"}, {"nodeId": "139805259317056"}, {"nodeId": "139805259366576"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139805259314704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259314928": {"type": "Union", "content": {"items": [{"nodeId": "139805259314816"}, {"nodeId": "N"}]}}, "139805259314816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259315152": {"type": "Union", "content": {"items": [{"nodeId": "139805259315040"}, {"nodeId": "N"}]}}, "139805259315040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259315376": {"type": "Union", "content": {"items": [{"nodeId": "139805259315264"}, {"nodeId": "N"}]}}, "139805259315264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259315600": {"type": "Union", "content": {"items": [{"nodeId": "139805259315488"}, {"nodeId": "N"}]}}, "139805259315488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259315712": {"type": "Union", "content": {"items": [{"nodeId": "139805276499616"}, {"nodeId": "N"}]}}, "139805276499616": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805259316048": {"type": "Union", "content": {"items": [{"nodeId": "139805259315936"}, {"nodeId": "N"}]}}, "139805259315936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259316272": {"type": "Union", "content": {"items": [{"nodeId": "139805259316160"}, {"nodeId": "N"}]}}, "139805259316160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268560352"}}}, "139805259316384": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259316608": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805259316720": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259316832": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259316944": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259317056": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259366576": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805259366464"}]}, {"nodeId": "N"}]}}, "139805259366464": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805297551712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805259366688"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259366912"}, {"nodeId": "139805259367136"}, {"nodeId": "139805259367360"}, {"nodeId": "139805259367584"}, {"nodeId": "139805259367696"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805259368032"}, {"nodeId": "139805259368256"}, {"nodeId": "0"}, {"nodeId": "139805259368592"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481889536", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805259368704"}, {"nodeId": "139805259368816"}, {"nodeId": "139805259368928"}, {"nodeId": "139805259369040"}, {"nodeId": "139805259369152"}, {"nodeId": "139805259369376"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139805259366688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259366912": {"type": "Union", "content": {"items": [{"nodeId": "139805259366800"}, {"nodeId": "N"}]}}, "139805259366800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259367136": {"type": "Union", "content": {"items": [{"nodeId": "139805259367024"}, {"nodeId": "N"}]}}, "139805259367024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259367360": {"type": "Union", "content": {"items": [{"nodeId": "139805259367248"}, {"nodeId": "N"}]}}, "139805259367248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259367584": {"type": "Union", "content": {"items": [{"nodeId": "139805259367472"}, {"nodeId": "N"}]}}, "139805259367472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259367696": {"type": "Union", "content": {"items": [{"nodeId": "139805276500960"}, {"nodeId": "N"}]}}, "139805276500960": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805259368032": {"type": "Union", "content": {"items": [{"nodeId": "139805259367920"}, {"nodeId": "N"}]}}, "139805259367920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259368256": {"type": "Union", "content": {"items": [{"nodeId": "139805259368144"}, {"nodeId": "N"}]}}, "139805259368144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268560352"}}}, "139805259368592": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805259368704": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259368816": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259368928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259369040": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259369152": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259369376": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805259369264"}]}, {"nodeId": "N"}]}}, "139805259369264": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805297552160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805259369488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259369712"}, {"nodeId": "139805259369936"}, {"nodeId": "139805259370160"}, {"nodeId": "139805259370384"}, {"nodeId": "139805259370496"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805259370832"}, {"nodeId": "139805259371056"}, {"nodeId": "139805259371168"}, {"nodeId": "139805259371392"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481889536", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "0"}, {"nodeId": "139805259371616"}, {"nodeId": "139805259371728"}, {"nodeId": "139805259371840"}, {"nodeId": "139805259371952"}, {"nodeId": "139805259372176"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139805259369488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259369712": {"type": "Union", "content": {"items": [{"nodeId": "139805259369600"}, {"nodeId": "N"}]}}, "139805259369600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259369936": {"type": "Union", "content": {"items": [{"nodeId": "139805259369824"}, {"nodeId": "N"}]}}, "139805259369824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259370160": {"type": "Union", "content": {"items": [{"nodeId": "139805259370048"}, {"nodeId": "N"}]}}, "139805259370048": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259370384": {"type": "Union", "content": {"items": [{"nodeId": "139805259370272"}, {"nodeId": "N"}]}}, "139805259370272": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259370496": {"type": "Union", "content": {"items": [{"nodeId": "139805276501184"}, {"nodeId": "N"}]}}, "139805276501184": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805259370832": {"type": "Union", "content": {"items": [{"nodeId": "139805259370720"}, {"nodeId": "N"}]}}, "139805259370720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259371056": {"type": "Union", "content": {"items": [{"nodeId": "139805259370944"}, {"nodeId": "N"}]}}, "139805259370944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268560352"}}}, "139805259371168": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259371392": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805259371616": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259371728": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259371840": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259371952": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259372176": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805259372064"}]}, {"nodeId": "N"}]}}, "139805259372064": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805297552608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805259372288"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259372512"}, {"nodeId": "139805259372736"}, {"nodeId": "139805259372960"}, {"nodeId": "139805259373184"}, {"nodeId": "139805259373296"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805259373632"}, {"nodeId": "139805259373856"}, {"nodeId": "139805259374192"}, {"nodeId": "139805259374304"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481889536", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805259374640"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "139805259374528"}, {"nodeId": "139805259374752"}, {"nodeId": "139805259374976"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139805259372288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259372512": {"type": "Union", "content": {"items": [{"nodeId": "139805259372400"}, {"nodeId": "N"}]}}, "139805259372400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259372736": {"type": "Union", "content": {"items": [{"nodeId": "139805259372624"}, {"nodeId": "N"}]}}, "139805259372624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259372960": {"type": "Union", "content": {"items": [{"nodeId": "139805259372848"}, {"nodeId": "N"}]}}, "139805259372848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259373184": {"type": "Union", "content": {"items": [{"nodeId": "139805259373072"}, {"nodeId": "N"}]}}, "139805259373072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259373296": {"type": "Union", "content": {"items": [{"nodeId": "139805276501408"}, {"nodeId": "N"}]}}, "139805276501408": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805259373632": {"type": "Union", "content": {"items": [{"nodeId": "139805259373520"}, {"nodeId": "N"}]}}, "139805259373520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259373856": {"type": "Union", "content": {"items": [{"nodeId": "139805259373744"}, {"nodeId": "N"}]}}, "139805259373744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268560352"}}}, "139805259374192": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805259374304": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805259374640": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805259374528": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259374752": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259374976": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805259374864"}]}, {"nodeId": "N"}]}}, "139805259374864": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805297553056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": "A"}]}, {"nodeId": "139805259375200"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259375424"}, {"nodeId": "139805259375648"}, {"nodeId": "139805259375872"}, {"nodeId": "139805259376096"}, {"nodeId": "139805259376208"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805259376544"}, {"nodeId": "139805259376768"}, {"nodeId": "139805259376880"}, {"nodeId": "139805259377104"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481889536", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805259377216"}, {"nodeId": "139805259377328"}, {"nodeId": "139805259377440"}, {"nodeId": "139805259377552"}, {"nodeId": "139805259377664"}, {"nodeId": "139805259377888"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139805259375200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259375424": {"type": "Union", "content": {"items": [{"nodeId": "139805259375312"}, {"nodeId": "N"}]}}, "139805259375312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259375648": {"type": "Union", "content": {"items": [{"nodeId": "139805259375536"}, {"nodeId": "N"}]}}, "139805259375536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259375872": {"type": "Union", "content": {"items": [{"nodeId": "139805259375760"}, {"nodeId": "N"}]}}, "139805259375760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259376096": {"type": "Union", "content": {"items": [{"nodeId": "139805259375984"}, {"nodeId": "N"}]}}, "139805259375984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259376208": {"type": "Union", "content": {"items": [{"nodeId": "139805276501632"}, {"nodeId": "N"}]}}, "139805276501632": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805259376544": {"type": "Union", "content": {"items": [{"nodeId": "139805259376432"}, {"nodeId": "N"}]}}, "139805259376432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259376768": {"type": "Union", "content": {"items": [{"nodeId": "139805259376656"}, {"nodeId": "N"}]}}, "139805259376656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268560352"}}}, "139805259376880": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259377104": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805259377216": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259377328": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259377440": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259377552": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259377664": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259377888": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805259377776"}]}, {"nodeId": "N"}]}}, "139805259377776": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805292775008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}], "returnType": {"nodeId": "139805259378000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259378000": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805292775456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}, {"nodeId": "139805259378112"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "139805259378112": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805292775904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}, {"nodeId": "139805259378224"}, {"nodeId": "139805259378336"}], "returnType": {"nodeId": "139805259378560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}}, "139805259378224": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272042208"}, {"nodeId": "N"}]}}, "139805259378336": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805259378560": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805272042208"}, {"nodeId": ".1.139805272042208"}]}}, "139805292776352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}}, "139805292776800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292777248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292777696": {"type": "Function", "content": {"typeVars": [".0.139805292777696"], "argTypes": [{"nodeId": ".0.139805292777696"}], "returnType": {"nodeId": ".0.139805292777696"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805292777696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}, "def": "139805292777696", "variance": "INVARIANT"}}, "139805292778144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}, {"nodeId": "139805259378784"}, {"nodeId": "139805259378896"}, {"nodeId": "139805259379008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805259378784": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805259378896": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805259379008": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805292778592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805351895200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268512256"}], "returnType": {"nodeId": "139805260059520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260059520": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805268512608": {"type": "Concrete", "content": {"module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805297910592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301643008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301643904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301644128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301644352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301644576"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893408"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893408"}]}], "isAbstract": false}}, "139805297910592": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805301643008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260061088"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260061088": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805301643904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260060528"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260060528": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805301644128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260060864"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260060864": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805301644352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260061200"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260061200": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805301644576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260061312"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260061312": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805268512960": {"type": "Concrete", "content": {"module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805297906112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301641664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301647264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301647488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301647712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301647936"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805297906112": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805301641664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260062768"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260062768": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805301647264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260063104"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260063104": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805301647488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260063440"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260063440": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805301647712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260063552"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260063552": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805301647936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260063664"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260063664": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805268513312": {"type": "Concrete", "content": {"module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805297905776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805351995744"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301649728"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805297905776": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805351995744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805260067360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}}, "139805260067360": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}]}}, "139805301649728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260067136"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260067136": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}]}}, "139805184486816": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "PyDLL", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184486464"}], "isAbstract": false}}, "139805171900736": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "LibraryLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dlltype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352419040"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352419488"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352419936"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352420384"}, "name": "LoadLibrary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352420832"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805171900736"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805171900736": {"type": "TypeVar", "content": {"varName": "_DLLT", "values": [], "upperBound": {"nodeId": "139805184486464"}, "def": "139805171900736", "variance": "INVARIANT"}}, "139805352419040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900736", "args": [{"nodeId": ".1.139805171900736"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dlltype"]}}, "139805352419488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900736", "args": [{"nodeId": ".1.139805171900736"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".1.139805171900736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805352419936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900736", "args": [{"nodeId": ".1.139805171900736"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".1.139805171900736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805352420384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900736", "args": [{"nodeId": ".1.139805171900736"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".1.139805171900736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "139805352420832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805184487872": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_byte", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805184488224": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_char", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355835680"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805276669376"}]}], "isAbstract": false}}, "139805355835680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184488224"}, {"nodeId": "139805172063296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "139805172063296": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, "139805184488576": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_char_p", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355836128"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805184483296"}, {"nodeId": "139805184482592", "args": [{"nodeId": "139805172056352"}]}], "isAbstract": false}}, "139805355836128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184488576"}, {"nodeId": "139805172063408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "139805172063408": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805172056352": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805184488928": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_double", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893408"}]}], "isAbstract": false}}, "139805184489280": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_longdouble", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893408"}]}], "isAbstract": false}}, "139805184489632": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_float", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893408"}]}], "isAbstract": false}}, "139805184489984": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_int", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805184490336": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_int8", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805184490688": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_int16", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805184491040": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_int32", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171892640": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_long", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171892992": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_longlong", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171893344": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_short", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171893696": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_size_t", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171894048": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_ssize_t", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171894400": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_ubyte", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171894752": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_uint", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171895104": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_uint8", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171895456": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_uint16", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171895808": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_uint32", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171896160": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_uint64", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171896512": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_ulong", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171896864": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_ulonglong", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171897216": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_ushort", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171897920": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_wchar", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805276669024"}]}], "isAbstract": false}}, "139805171898272": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_wchar_p", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355836576"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805184483296"}, {"nodeId": "139805184482592", "args": [{"nodeId": "139805171768384"}]}], "isAbstract": false}}, "139805355836576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171898272"}, {"nodeId": "139805172063520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "139805172063520": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805171768384": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805171898624": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_bool", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355837024"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481882144"}]}], "isAbstract": false}}, "139805355837024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171898624"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "139805171898976": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "py_object", "members": [], "typeVars": [{"nodeId": ".1.139805171898976"}], "bases": [{"nodeId": "139805184482944"}, {"nodeId": "139805184482592", "args": [{"nodeId": ".1.139805171898976"}]}], "isAbstract": false}}, ".1.139805171898976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805171898976", "variance": "INVARIANT"}}, "139805171899328": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "BigEndianStructure", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184485760"}], "isAbstract": false}}, "139805184485760": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "Structure", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184485056"}], "isAbstract": false}}, "139805184485056": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_StructUnionBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314718560"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314719008"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314719456"}, "name": "__setattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805184482240"}], "isAbstract": false}}, "139805314718560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184485056"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kw"]}}, "139805314719008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184485056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805314719456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184485056"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805171899680": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "LittleEndianStructure", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184485760"}], "isAbstract": false}}, "139805167798048": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "timezone", "members": [{"kind": "Variable", "content": {"name": "utc", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167798048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167798048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167798048"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356009824"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356010272"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356010720"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356011168"}, "name": "dst"}}], "typeVars": [], "bases": [{"nodeId": "139805167797696"}], "isAbstract": false}}, "139805356009824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798048"}, {"nodeId": "139805167799456"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "name"]}}, "139805356010272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798048"}, {"nodeId": "139805162874000"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805162874000": {"type": "Union", "content": {"items": [{"nodeId": "139805167799808"}, {"nodeId": "N"}]}}, "139805356010720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798048"}, {"nodeId": "139805162874112"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805162874112": {"type": "Union", "content": {"items": [{"nodeId": "139805167799808"}, {"nodeId": "N"}]}}, "139805356011168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798048"}, {"nodeId": "139805162874224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805162874224": {"type": "Union", "content": {"items": [{"nodeId": "139805167799808"}, {"nodeId": "N"}]}}, "139805272616352": {"type": "Concrete", "content": {"module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347383328"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347383776"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "isAbstract": false}}, "139805347383328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347383776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616352"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805272616704": {"type": "Concrete", "content": {"module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347385568"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221976352"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347387360"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347387808"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347389152"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347390048"}, "name": "__getitem__"}}, {"kind": "Variable", "content": {"name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805221976576"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347390944"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347391392"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347391840"}, "name": "__dir__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805260234112"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "Variable", "content": {"name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805272617056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "A"}, {"nodeId": "139805272617056"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276879008"}], "isAbstract": false}}, "139805347385568": {"type": "Function", "content": {"typeVars": [".-1.139805347385568"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, {"nodeId": "139805272616352"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139805347385568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}}, ".-1.139805347385568": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805347385568", "variance": "INVARIANT"}}, "139805221976352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272616352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}}, "139805347387360": {"type": "Function", "content": {"typeVars": [".-1.139805347387360"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".-1.139805347387360"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805347387360": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805347387360", "variance": "INVARIANT"}}, "139805347387808": {"type": "Function", "content": {"typeVars": [".-1.139805347387808"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".-1.139805347387808"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805347387808": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805347387808", "variance": "INVARIANT"}}, "139805347389152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805347390048": {"type": "Function", "content": {"typeVars": [".-1.139805347390048"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".-1.139805347390048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805347390048": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805347390048", "variance": "INVARIANT"}}, "139805221976576": {"type": "Function", "content": {"typeVars": [".-1.139805221976576"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "139805272032352", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".-1.139805221976576"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805221976576": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805221976576", "variance": "INVARIANT"}}, "139805347390944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616704"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805347391392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347391840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616704"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260234112": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805347392288"}, {"nodeId": "139805347393184"}]}}, "139805347392288": {"type": "Function", "content": {"typeVars": [".-1.139805347392288"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.139805347392288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}}, ".-1.139805347392288": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805347392288", "variance": "INVARIANT"}}, "139805347393184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616704"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255227024"}, {"nodeId": "139805255227136"}, {"nodeId": "139805255227248"}, {"nodeId": "139805255227360"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "value", "names", "module", "qualname", "type", "start"]}}, "139805255227024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805272707072"}}}, "139805272707072": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805272705280"}]}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805272705280": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}}, "139805255227136": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255227248": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255227360": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805272617408": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805222083872"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347513056"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139805481893056"}, {"nodeId": "139805272617056"}], "isAbstract": false}}, "139805222083872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617408"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347513056": {"type": "Function", "content": {"typeVars": [".0.139805347513056"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805347513056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.139805347513056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272617408"}, "def": "139805347513056", "variance": "INVARIANT"}}, "139805272617760": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272707408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805222084992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805222086336"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347514848"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347515296"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347515744"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347516192"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347516640"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347517088"}, "name": "__invert__"}}], "typeVars": [], "bases": [{"nodeId": "139805272617056"}], "isAbstract": false}}, "139805272707408": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805222084992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617760"}], "returnType": {"nodeId": "139805255228256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255228256": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805222086336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617760"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347514848": {"type": "Function", "content": {"typeVars": [".0.139805347514848"], "argTypes": [{"nodeId": ".0.139805347514848"}, {"nodeId": ".0.139805347514848"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805347514848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272617760"}, "def": "139805347514848", "variance": "INVARIANT"}}, "139805347515296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617760"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347515744": {"type": "Function", "content": {"typeVars": [".0.139805347515744"], "argTypes": [{"nodeId": ".0.139805347515744"}, {"nodeId": ".0.139805347515744"}], "returnType": {"nodeId": ".0.139805347515744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805347515744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272617760"}, "def": "139805347515744", "variance": "INVARIANT"}}, "139805347516192": {"type": "Function", "content": {"typeVars": [".0.139805347516192"], "argTypes": [{"nodeId": ".0.139805347516192"}, {"nodeId": ".0.139805347516192"}], "returnType": {"nodeId": ".0.139805347516192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805347516192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272617760"}, "def": "139805347516192", "variance": "INVARIANT"}}, "139805347516640": {"type": "Function", "content": {"typeVars": [".0.139805347516640"], "argTypes": [{"nodeId": ".0.139805347516640"}, {"nodeId": ".0.139805347516640"}], "returnType": {"nodeId": ".0.139805347516640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805347516640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272617760"}, "def": "139805347516640", "variance": "INVARIANT"}}, "139805347517088": {"type": "Function", "content": {"typeVars": [".0.139805347517088"], "argTypes": [{"nodeId": ".0.139805347517088"}], "returnType": {"nodeId": ".0.139805347517088"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805347517088": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272617760"}, "def": "139805347517088", "variance": "INVARIANT"}}, "139805272618112": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347524256"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347524704"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347525152"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347525600"}, "name": "__xor__"}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222159072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222161536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222162656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481893056"}, {"nodeId": "139805272617760"}], "isAbstract": false}}, "139805347524256": {"type": "Function", "content": {"typeVars": [".0.139805347524256"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805347524256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.139805347524256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618112"}, "def": "139805347524256", "variance": "INVARIANT"}}, "139805347524704": {"type": "Function", "content": {"typeVars": [".0.139805347524704"], "argTypes": [{"nodeId": ".0.139805347524704"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805347524704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805347524704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618112"}, "def": "139805347524704", "variance": "INVARIANT"}}, "139805347525152": {"type": "Function", "content": {"typeVars": [".0.139805347525152"], "argTypes": [{"nodeId": ".0.139805347525152"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805347525152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805347525152": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618112"}, "def": "139805347525152", "variance": "INVARIANT"}}, "139805347525600": {"type": "Function", "content": {"typeVars": [".0.139805347525600"], "argTypes": [{"nodeId": ".0.139805347525600"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805347525600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805347525600": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618112"}, "def": "139805347525600", "variance": "INVARIANT"}}, "139805222159072": {"type": "Function", "content": {"typeVars": [".0.139805222159072"], "argTypes": [{"nodeId": ".0.139805222159072"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805222159072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805222159072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618112"}, "def": "139805222159072", "variance": "INVARIANT"}}, "139805222161536": {"type": "Function", "content": {"typeVars": [".0.139805222161536"], "argTypes": [{"nodeId": ".0.139805222161536"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805222161536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805222161536": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618112"}, "def": "139805222161536", "variance": "INVARIANT"}}, "139805222162656": {"type": "Function", "content": {"typeVars": [".0.139805222162656"], "argTypes": [{"nodeId": ".0.139805222162656"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805222162656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805222162656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618112"}, "def": "139805222162656", "variance": "INVARIANT"}}, "139805272618464": {"type": "Concrete", "content": {"module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805222164224"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347526496"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139805272618112"}], "isAbstract": false}}, "139805222164224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618464"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347526496": {"type": "Function", "content": {"typeVars": [".0.139805347526496"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805347526496"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805347526496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618464"}, "def": "139805347526496", "variance": "INVARIANT"}}, "139805276879360": {"type": "Concrete", "content": {"module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276672192"}], "isAbstract": false}}, "139805267653056": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255278528"}, "name": "__aenter__"}}, {"kind": "Variable", "content": {"name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805217660864"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805267653056"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__aenter__", "__aexit__"]}}, ".1.139805267653056": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267653056", "variance": "COVARIANT"}}, "139805255278528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267653056", "args": [{"nodeId": ".1.139805267653056"}]}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139805267653056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805217660864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267653056", "args": [{"nodeId": ".1.139805267653056"}]}, {"nodeId": "139805255447408"}, {"nodeId": "139805255447520"}, {"nodeId": "139805255447632"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805255447744"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "139805255447408": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255447520": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255447632": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805255447744": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805267653760": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360513184"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805267653760"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276238816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360513632"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139805267653760"}], "bases": [{"nodeId": "139805267652704", "args": [{"nodeId": ".1.139805267653760"}]}, {"nodeId": "139805267653408"}], "isAbstract": false}}, ".1.139805267653760": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267653760", "variance": "COVARIANT"}}, "139805360513184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267653760", "args": [{"nodeId": ".1.139805267653760"}]}, {"nodeId": "139805255277408"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "139805255277408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805267653760"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805276238816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805267653760"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805360513632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267653760", "args": [{"nodeId": ".1.139805267653760"}]}, {"nodeId": "139805255448304"}, {"nodeId": "139805255448416"}, {"nodeId": "139805255448528"}], "returnType": {"nodeId": "139805255448640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255448304": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255448416": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255448528": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805255448640": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805267654112": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360514976"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805360514976": {"type": "Function", "content": {"typeVars": [".-1.139805360514976"], "argTypes": [{"nodeId": "139805267654112"}, {"nodeId": ".-1.139805360514976"}], "returnType": {"nodeId": ".-1.139805360514976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.139805360514976": {"type": "TypeVar", "content": {"varName": "_AF", "values": [], "upperBound": {"nodeId": "139805276237472"}, "def": "139805360514976", "variance": "INVARIANT"}}, "139805276237472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805267654464": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360515424"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805267654464"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276239488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255280320"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.139805267654464"}], "bases": [{"nodeId": "139805267653056", "args": [{"nodeId": ".1.139805267654464"}]}, {"nodeId": "139805267654112"}], "isAbstract": false}}, ".1.139805267654464": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267654464", "variance": "COVARIANT"}}, "139805360515424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267654464", "args": [{"nodeId": ".1.139805267654464"}]}, {"nodeId": "139805255280544"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "139805255280544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481888480", "args": [{"nodeId": ".1.139805267654464"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805276239488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805267654464"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805255280320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267654464", "args": [{"nodeId": ".1.139805267654464"}]}, {"nodeId": "139805255449536"}, {"nodeId": "139805255449648"}, {"nodeId": "139805255449760"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805255449872"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}}, "139805255449536": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255449648": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255449760": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805255449872": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805267654816": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360517664"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["close"]}}, "139805360517664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267654816"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267655168": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360518112"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360518560"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139805267655168"}], "bases": [{"nodeId": "139805267652704", "args": [{"nodeId": ".1.139805267655168"}]}], "isAbstract": false}}, ".1.139805267655168": {"type": "TypeVar", "content": {"varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "139805267654816"}, "def": "139805267655168", "variance": "INVARIANT"}}, "139805360518112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267655168", "args": [{"nodeId": ".1.139805267655168"}]}, {"nodeId": ".1.139805267655168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "139805360518560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267655168", "args": [{"nodeId": ".1.139805267655168"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139805267655520": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360519008"}, "name": "aclose"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["aclose"]}}, "139805360519008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267655520"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267655872": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360519456"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255281888"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.139805267655872"}], "bases": [{"nodeId": "139805267653056", "args": [{"nodeId": ".1.139805267655872"}]}], "isAbstract": false}}, ".1.139805267655872": {"type": "TypeVar", "content": {"varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "139805267655520"}, "def": "139805267655872", "variance": "INVARIANT"}}, "139805360519456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267655872", "args": [{"nodeId": ".1.139805267655872"}]}, {"nodeId": ".1.139805267655872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "139805255281888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267655872", "args": [{"nodeId": ".1.139805267655872"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}}, "139805267656224": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360520352"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360520800"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139805267652704", "args": [{"nodeId": "N"}]}], "isAbstract": false}}, "139805360520352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267656224"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}}, "139805360520800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267656224"}, {"nodeId": "139805255598256"}, {"nodeId": "139805255598368"}, {"nodeId": "139805255598480"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255598256": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255598368": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255598480": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805267804224": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347873056"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347873504"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139805267804224"}], "bases": [{"nodeId": "139805267652704", "args": [{"nodeId": ".1.139805267804224"}]}], "isAbstract": false}}, ".1.139805267804224": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "139805268571776"}, "def": "139805267804224", "variance": "INVARIANT"}}, "139805268571776": {"type": "Union", "content": {"items": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805347873056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267804224", "args": [{"nodeId": ".1.139805267804224"}]}, {"nodeId": ".1.139805267804224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}}, "139805347873504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267804224", "args": [{"nodeId": ".1.139805267804224"}]}, {"nodeId": "139805255598592"}, {"nodeId": "139805255598704"}, {"nodeId": "139805255598816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255598592": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255598704": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255598816": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805267804576": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.139805267804576"}], "bases": [{"nodeId": "139805267804224", "args": [{"nodeId": ".1.139805267804576"}]}], "isAbstract": false}}, ".1.139805267804576": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "139805268571776"}, "def": "139805267804576", "variance": "INVARIANT"}}, "139805267804928": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.139805267804928"}], "bases": [{"nodeId": "139805267804224", "args": [{"nodeId": ".1.139805267804928"}]}], "isAbstract": false}}, ".1.139805267804928": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "139805268571776"}, "def": "139805267804928", "variance": "INVARIANT"}}, "139805267805280": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347873952"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347874400"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347874848"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347875296"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347875744"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347876192"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347876640"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805347873952": {"type": "Function", "content": {"typeVars": [".-1.139805347873952"], "argTypes": [{"nodeId": "139805267805280"}, {"nodeId": "139805267652704", "args": [{"nodeId": ".-1.139805347873952"}]}], "returnType": {"nodeId": ".-1.139805347873952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.139805347873952": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805347873952", "variance": "INVARIANT"}}, "139805347874400": {"type": "Function", "content": {"typeVars": [".-1.139805347874400"], "argTypes": [{"nodeId": "139805267805280"}, {"nodeId": ".-1.139805347874400"}], "returnType": {"nodeId": ".-1.139805347874400"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.139805347874400": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "139805268572896"}, "def": "139805347874400", "variance": "INVARIANT"}}, "139805268572896": {"type": "Union", "content": {"items": [{"nodeId": "139805267652704", "args": [{"nodeId": "A"}]}, {"nodeId": "139805268572336"}]}}, "139805268572336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276474720"}}}, "139805276474720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272714688"}, {"nodeId": "139805272714240"}, {"nodeId": "139805272714352"}], "returnType": {"nodeId": "139805272714464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805272714688": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805272714240": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805272714352": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805272714464": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805347874848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805280"}, {"nodeId": "139805255281440"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805255282112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "139805255281440": {"type": "Function", "content": {"typeVars": [".-2.139805255281440"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139805255281440"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139805255281440": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255281440", "variance": "INVARIANT"}}, "139805255282112": {"type": "Function", "content": {"typeVars": [".-2.139805255282112"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139805255282112"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139805255282112": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255282112", "variance": "INVARIANT"}}, "139805347875296": {"type": "Function", "content": {"typeVars": [".0.139805347875296"], "argTypes": [{"nodeId": ".0.139805347875296"}], "returnType": {"nodeId": ".0.139805347875296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805347875296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805267805280"}, "def": "139805347875296", "variance": "INVARIANT"}}, "139805347875744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347876192": {"type": "Function", "content": {"typeVars": [".0.139805347876192"], "argTypes": [{"nodeId": ".0.139805347876192"}], "returnType": {"nodeId": ".0.139805347876192"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805347876192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805267805280"}, "def": "139805347876192", "variance": "INVARIANT"}}, "139805347876640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805280"}, {"nodeId": "139805255599824"}, {"nodeId": "139805255599936"}, {"nodeId": "139805255600048"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255599824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255599936": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255600048": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805267805632": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347877088"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255282336"}, "name": "enter_async_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347877984"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347878432"}, "name": "push_async_exit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347878880"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347879328"}, "name": "push_async_callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347879776"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347877536"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347880224"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347880672"}, "name": "__aexit__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805347877088": {"type": "Function", "content": {"typeVars": [".-1.139805347877088"], "argTypes": [{"nodeId": "139805267805632"}, {"nodeId": "139805267652704", "args": [{"nodeId": ".-1.139805347877088"}]}], "returnType": {"nodeId": ".-1.139805347877088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.139805347877088": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805347877088", "variance": "INVARIANT"}}, "139805255282336": {"type": "Function", "content": {"typeVars": [".-1.139805255282336"], "argTypes": [{"nodeId": "139805267805632"}, {"nodeId": "139805267653056", "args": [{"nodeId": ".-1.139805255282336"}]}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.139805255282336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.139805255282336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255282336", "variance": "INVARIANT"}}, "139805347877984": {"type": "Function", "content": {"typeVars": [".-1.139805347877984"], "argTypes": [{"nodeId": "139805267805632"}, {"nodeId": ".-1.139805347877984"}], "returnType": {"nodeId": ".-1.139805347877984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.139805347877984": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "139805268572896"}, "def": "139805347877984", "variance": "INVARIANT"}}, "139805347878432": {"type": "Function", "content": {"typeVars": [".-1.139805347878432"], "argTypes": [{"nodeId": "139805267805632"}, {"nodeId": ".-1.139805347878432"}], "returnType": {"nodeId": ".-1.139805347878432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.139805347878432": {"type": "TypeVar", "content": {"varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "139805268573456"}, "def": "139805347878432", "variance": "INVARIANT"}}, "139805268573456": {"type": "Union", "content": {"items": [{"nodeId": "139805267653056", "args": [{"nodeId": "A"}]}, {"nodeId": "139805268573680"}]}}, "139805268573680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276241056"}}}, "139805276241056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272718944"}, {"nodeId": "139805272717488"}, {"nodeId": "139805272718608"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": "139805272718720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805272718944": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805272717488": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805272718608": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805272718720": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805347878880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805632"}, {"nodeId": "139805255281664"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805255282560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "139805255281664": {"type": "Function", "content": {"typeVars": [".-2.139805255281664"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139805255281664"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139805255281664": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255281664", "variance": "INVARIANT"}}, "139805255282560": {"type": "Function", "content": {"typeVars": [".-2.139805255282560"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139805255282560"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139805255282560": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255282560", "variance": "INVARIANT"}}, "139805347879328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805632"}, {"nodeId": "139805255278976"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805255283008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "139805255278976": {"type": "Function", "content": {"typeVars": [".-2.139805255278976"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".-2.139805255278976"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139805255278976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255278976", "variance": "INVARIANT"}}, "139805255283008": {"type": "Function", "content": {"typeVars": [".-2.139805255283008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".-2.139805255283008"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139805255283008": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255283008", "variance": "INVARIANT"}}, "139805347879776": {"type": "Function", "content": {"typeVars": [".0.139805347879776"], "argTypes": [{"nodeId": ".0.139805347879776"}], "returnType": {"nodeId": ".0.139805347879776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805347879776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805267805632"}, "def": "139805347879776", "variance": "INVARIANT"}}, "139805347877536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805632"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347880224": {"type": "Function", "content": {"typeVars": [".0.139805347880224"], "argTypes": [{"nodeId": ".0.139805347880224"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".0.139805347880224"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805347880224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805267805632"}, "def": "139805347880224", "variance": "INVARIANT"}}, "139805347880672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805632"}, {"nodeId": "139805255602176"}, {"nodeId": "139805255602288"}, {"nodeId": "139805255602400"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805481882144"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "139805255602176": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255602288": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255602400": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805267805984": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805267805984"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255602064"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347882464"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347882912"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255282784"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255283680"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.139805267805984"}], "bases": [{"nodeId": "139805267652704", "args": [{"nodeId": ".1.139805267805984"}]}, {"nodeId": "139805267653056", "args": [{"nodeId": ".1.139805267805984"}]}], "isAbstract": false}}, ".1.139805267805984": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267805984", "variance": "INVARIANT"}}, "139805255602064": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805347881120"}, {"nodeId": "139805347881568"}]}}, "139805347881120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805984", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}}, "139805347881568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805984", "args": [{"nodeId": ".1.139805267805984"}]}, {"nodeId": ".1.139805267805984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}}, "139805347882464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805984", "args": [{"nodeId": ".1.139805267805984"}]}], "returnType": {"nodeId": ".1.139805267805984"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805347882912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805984", "args": [{"nodeId": ".1.139805267805984"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139805255282784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805984", "args": [{"nodeId": ".1.139805267805984"}]}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139805267805984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255283680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805984", "args": [{"nodeId": ".1.139805267805984"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}}, "139805272044672": {"type": "Concrete", "content": {"module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805235038912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805235037792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805235036896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805235036224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805235002528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805235001856"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259378672"}, "items": [{"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "expand"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259464768"}, "items": [{"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "group"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259465440"}, "items": [{"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groups"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259465552"}, "items": [{"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groupdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348043168"}, "name": "start"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348043616"}, "name": "end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348044064"}, "name": "span"}}, {"kind": "Variable", "content": {"name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805234995360"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259466672"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348045856"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348046304"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348046752"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805272044672"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805272044672": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272044672", "variance": "INVARIANT"}}, "139805235038912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805235037792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805235036896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805259465216"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259465216": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805235036224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805259465328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259465328": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805235002528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": ".1.139805272044672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805235001856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272044672"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272045024": {"type": "Concrete", "content": {"module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805234809984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805234965728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805234957664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805234958784"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259467120"}, "items": [{"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "search"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259468352"}, "items": [{"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "match"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259469136"}, "items": [{"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fullmatch"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259469584"}, "items": [{"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "split"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259470032"}, "items": [{"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "findall"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259470480"}, "items": [{"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "finditer"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259471264"}, "items": [{"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sub"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259471600"}, "items": [{"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348272992"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348273440"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348273888"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805272045024"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805272045024": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272045024", "variance": "INVARIANT"}}, "139805234809984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805234965728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}], "returnType": {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805234957664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805234958784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}], "returnType": {"nodeId": ".1.139805272045024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259467120": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348048992"}, {"nodeId": "139805259481376"}, {"nodeId": "139805348049888"}]}}, "139805348048992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259469248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259469248": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805259481376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259469360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259469360": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "N"}]}}, "139805348049888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259469472"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259469472": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": "N"}]}}, "139805259468352": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348050336"}, {"nodeId": "139805259481600"}, {"nodeId": "139805348051232"}]}}, "139805348050336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259469696"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259469696": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805259481600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259469808"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259469808": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "N"}]}}, "139805348051232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259469920"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259469920": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": "N"}]}}, "139805259469136": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348051680"}, {"nodeId": "139805259482048"}, {"nodeId": "139805348052576"}]}}, "139805348051680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259470144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259470144": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805259482048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259470256"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259470256": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "N"}]}}, "139805348052576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259470368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259470368": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": "N"}]}}, "139805259469584": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348266272"}, {"nodeId": "139805259482272"}, {"nodeId": "139805348267168"}]}}, "139805348266272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805259470704"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "139805259470704": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}}, "139805259482272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805259470928"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "139805259470928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "A"}]}}, "139805348267168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805259471152"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "139805259471152": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272045024"}, {"nodeId": "A"}]}}, "139805259470032": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348267616"}, {"nodeId": "139805259482496"}, {"nodeId": "139805348268512"}]}}, "139805348267616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259482496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805348268512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805272045024"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259470480": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348268960"}, {"nodeId": "139805259482720"}, {"nodeId": "139805348269856"}]}}, "139805348268960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669024"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259482720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669376"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805348269856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272045024"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259471264": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348270304"}, {"nodeId": "139805259483392"}, {"nodeId": "139805348271200"}]}}, "139805348270304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805259471824"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139805259471824": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805259482944"}]}}, "139805259482944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805259483392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805259471936"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139805259471936": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805259483168"}]}}, "139805259483168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669376"}]}], "returnType": {"nodeId": "139805277011488"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805348271200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": "139805259472048"}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805272045024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139805259472048": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272045024"}, {"nodeId": "139805259481824"}]}}, "139805259481824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272045024"}]}], "returnType": {"nodeId": ".1.139805272045024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805259471600": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348271648"}, {"nodeId": "139805259484288"}, {"nodeId": "139805348272544"}]}}, "139805348271648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805259472272"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259472496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139805259472272": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805259483616"}]}}, "139805259483616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805259472496": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805259484288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805259472608"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259472832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139805259472608": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805259483840"}]}}, "139805259483840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669376"}]}], "returnType": {"nodeId": "139805277011488"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805259472832": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}]}}, "139805348272544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": "139805259472944"}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259473168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139805259472944": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272045024"}, {"nodeId": "139805259484064"}]}}, "139805259484064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272045024"}]}], "returnType": {"nodeId": ".1.139805272045024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805259473168": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}]}}, "139805348272992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}], "returnType": {"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805348273440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805348273888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805259378672": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348038688"}, {"nodeId": "139805259481152"}, {"nodeId": "139805348039584"}]}}, "139805348038688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "139805259481152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "139805348039584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": ".1.139805272044672"}], "returnType": {"nodeId": ".1.139805272044672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "139805259464768": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348040032"}, {"nodeId": "139805348040480"}, {"nodeId": "139805348040928"}]}}, "139805348040032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.139805272044672"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805348040480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "139805259465776"}], "returnType": {"nodeId": "139805259466000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805259465776": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805259466000": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272044672"}, {"nodeId": "A"}]}}, "139805348040928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "139805259466112"}, {"nodeId": "139805259466224"}, {"nodeId": "139805259466336"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805259466560"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}}, "139805259466112": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805259466224": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805259466336": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805259466560": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272044672"}, {"nodeId": "A"}]}}, "139805259465440": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348041376"}, {"nodeId": "139805348041824"}]}}, "139805348041376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805259466896"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259466896": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272044672"}, {"nodeId": "A"}]}}, "139805348041824": {"type": "Function", "content": {"typeVars": [".-1.139805348041824"], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": ".-1.139805348041824"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805259467008"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.139805348041824": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805348041824", "variance": "INVARIANT"}}, "139805259467008": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272044672"}, {"nodeId": ".-1.139805348041824"}]}}, "139805259465552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348042272"}, {"nodeId": "139805348042720"}]}}, "139805348042272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805259467344"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259467344": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272044672"}, {"nodeId": "A"}]}}, "139805348042720": {"type": "Function", "content": {"typeVars": [".-1.139805348042720"], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": ".-1.139805348042720"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805259467456"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.139805348042720": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805348042720", "variance": "INVARIANT"}}, "139805259467456": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272044672"}, {"nodeId": ".-1.139805348042720"}]}}, "139805348043168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "139805259467568"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805259467568": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805348043616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "139805259467680"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805259467680": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805348044064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "139805259467792"}], "returnType": {"nodeId": "139805259468016"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805259467792": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805259468016": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805234995360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805259468240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259468240": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805259466672": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348044960"}, {"nodeId": "139805348045408"}]}}, "139805348044960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.139805272044672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805348045408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "139805259468576"}], "returnType": {"nodeId": "139805259468800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805259468576": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805259468800": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272044672"}, {"nodeId": "A"}]}}, "139805348045856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805348046304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805348046752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805268510144": {"type": "Concrete", "content": {"module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "content": {"name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272618112"}], "isAbstract": false}}, "139805268036768": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204710000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343222240"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263529792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268022704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268022816"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805204710000": {"type": "Tuple", "content": {"items": []}}, "139805343222240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268036768"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805263529792": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805268022704": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805268022816": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268037120": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268037472": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268037824": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204714144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268037472"}], "isAbstract": false}}, "139805204714144": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268038176": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204715152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268037120"}], "isAbstract": false}}, "139805204715152": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268048736": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268038528": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204716160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268037824"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268037120"}], "isAbstract": false}}, "139805204716160": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268039584": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268038880": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204717504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268037120"}], "isAbstract": false}}, "139805204717504": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268039232": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204718400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268037120"}], "isAbstract": false}}, "139805204718400": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268039936": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204720976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268302432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263528000"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204720976": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268302432": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205274784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268302784"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268302784"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268302784"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268026624"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263529456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805205274784": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268302784": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205276016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263529568"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805205276016": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805263529568": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268026400": {"type": "Union", "content": {"items": [{"nodeId": "139805268302784"}, {"nodeId": "N"}]}}, "139805268026624": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805263529456": {"type": "Union", "content": {"items": [{"nodeId": "139805268302784"}, {"nodeId": "N"}]}}, "139805263528000": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268040288": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204723552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268302432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263528448"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204723552": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805263528448": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268040640": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204840736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268303136"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204840736": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268303136": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205276912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805205276912": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268026736": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268040992": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204841744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263528560"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204841744": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805263528560": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268041344": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204842640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204842640": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268041696": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204843984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204843984": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268042048": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204845104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263528672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268192320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204845104": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805263528672": {"type": "Union", "content": {"items": [{"nodeId": "139805268188800"}, {"nodeId": "139805268187392"}, {"nodeId": "139805268188096"}]}}, "139805268188800": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205267168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268189856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205267168": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268189856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268187392": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205130576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268189856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205130576": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268188096": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205134048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268189856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205134048": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268192320": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268042400": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204846448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263528784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263528896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204846448": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805263528784": {"type": "Union", "content": {"items": [{"nodeId": "139805268188800"}, {"nodeId": "139805268187392"}, {"nodeId": "139805268188096"}]}}, "139805263528896": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268042752": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204847904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204847904": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268043104": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204849248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204849248": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268043456": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204850144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204850144": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268043808": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204851264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204851264": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268044160": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204852384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268303840"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204852384": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268303840": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205278928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805205278928": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268026848": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268044512": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204853504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268303840"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204853504": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268044864": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204854400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263529008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263529120"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204854400": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805263529008": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805263529120": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268045216": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204855856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268302080"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204855856": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268302080": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205272768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268301728"}], "isAbstract": false}}, "139805205272768": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268026176": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268026288": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268301728": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268045568": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204972032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263529232"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204972032": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805263529232": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268045920": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204972816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268303488"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204972816": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268303488": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205277920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026512"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805205277920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268026512": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268046272": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204974160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263529344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268303488"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204974160": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805263529344": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268046624": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204974832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204974832": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268046976": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204975728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204975728": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268047328": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204976624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204976624": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268047680": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805268048032": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805268048384": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805268049088": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204977744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268191264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204977744": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268191264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268049440": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204978976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268192320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204978976": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268181056": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204979872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268295744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204979872": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268295744": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268181408": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204980880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268302432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204980880": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268181760": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204982112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204982112": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268182112": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204983008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268023376"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204983008": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268023376": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268182464": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204983792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204983792": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268182816": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204984912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268301376"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204984912": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268301376": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205271760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805205271760": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268183168": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204985920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268301376"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204985920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268183520": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204987152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268301376"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204987152": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268183872": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205119264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268301376"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205119264": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268184224": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205120048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205120048": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268184576": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205120944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263528112"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205120944": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805263528112": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268184928": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205121840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205121840": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268185280": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205123184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268297504"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205123184": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268297504": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268185632": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205124304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268303136"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205124304": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268185984": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205125424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268023152"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205125424": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268023152": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268186336": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205126096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205126096": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268186688": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205127776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268023040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268025616"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205127776": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268023040": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268025616": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805276667968"}]}}, "139805268187040": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205129344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268188800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205129344": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268187744": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205132368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268025840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268025952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026064"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205132368": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268025840": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268025952": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268026064": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268188448": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205134944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268189856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205134944": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268189152": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205268176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268189856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205268176": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268189504": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205269184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268189856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205269184": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268190208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268189856"}], "isAbstract": false}}, "139805268190560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268189856"}], "isAbstract": false}}, "139805268190912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268189856"}], "isAbstract": false}}, "139805268191616": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268191264"}], "isAbstract": false}}, "139805268191968": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268191264"}], "isAbstract": false}}, "139805268192672": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268193024": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268193376": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268193728": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268194080": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268194432": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268194784": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268195136": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268195488": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268195840": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268196192": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268196544": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268196896": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268296096": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268295744"}], "isAbstract": false}}, "139805268296448": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268295744"}], "isAbstract": false}}, "139805268296800": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268295744"}], "isAbstract": false}}, "139805268297152": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268295744"}], "isAbstract": false}}, "139805268297856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268298208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268298560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268298912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268299264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268299616": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268299968": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268300320": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268300672": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268301024": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268304192": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205279936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268304896"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805205279936": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268304896": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205280608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268304544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805205280608": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268304544": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268026960": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268305248": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205280720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205280720": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268305600": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205281056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268027072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205281056": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268027072": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "139805268305952": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205281392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268304544"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205281392": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268306304": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205281728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268027408"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205281728": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268027408": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268306656": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205282512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268304544"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268027520"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205282512": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268027520": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268307008": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205529200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268304544"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268304544"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205529200": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268307360": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205529424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268027632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268027744"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205529424": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268027632": {"type": "Union", "content": {"items": [{"nodeId": "139805268304544"}, {"nodeId": "N"}]}}, "139805268027744": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268307712": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205529648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268304544"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205529648": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805272046080": {"type": "Concrete", "content": {"module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}, {"nodeId": "139805276683456"}], "isAbstract": false}}, "139805272046784": {"type": "Concrete", "content": {"module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343232992"}, "name": "readall"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343233440"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343233888"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343234336"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "139805272046432"}], "isAbstract": false}}, "139805343232992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046784"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343233440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046784"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805260070384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805260070384": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805343233888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046784"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805260070496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805260070496": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805343234336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046784"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805260070608"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805260070608": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805272047136": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272046784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343234784"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343235232"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343235680"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343547680"}, "name": "readinto1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343548128"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343548576"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "139805272046432"}], "isAbstract": false}}, "139805343234784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272047136"}], "returnType": {"nodeId": "139805272046784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343235232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272047136"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343235680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272047136"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343547680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272047136"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343548128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272047136"}, {"nodeId": "139805260070720"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805260070720": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805343548576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272047136"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805272604736": {"type": "Concrete", "content": {"module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268567408"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343549024"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226085824"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343549920"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343550368"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343550816"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "139805272046784"}, {"nodeId": "139805277000576"}], "isAbstract": false}}, "139805268567408": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268017664"}}}, "139805268017664": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805268020016"}]}}, "139805268020016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805343549024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272604736"}, {"nodeId": "139805260218432"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805260218656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}}, "139805260218432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268017664"}}}, "139805260218656": {"type": "Union", "content": {"items": [{"nodeId": "139805260218544"}, {"nodeId": "N"}]}}, "139805260218544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276305696"}}}, "139805276305696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805226085824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272604736"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343549920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272604736"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343550368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272604736"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805343550816": {"type": "Function", "content": {"typeVars": [".0.139805343550816"], "argTypes": [{"nodeId": ".0.139805343550816"}], "returnType": {"nodeId": ".0.139805343550816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805343550816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272604736"}, "def": "139805343550816", "variance": "INVARIANT"}}, "139805272605088": {"type": "Concrete", "content": {"module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343551264"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343551712"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343552160"}, "name": "getvalue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343552608"}, "name": "getbuffer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343553056"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "139805272047136"}, {"nodeId": "139805277000576"}], "isAbstract": false}}, "139805343551264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605088"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}}, "139805343551712": {"type": "Function", "content": {"typeVars": [".0.139805343551712"], "argTypes": [{"nodeId": ".0.139805343551712"}], "returnType": {"nodeId": ".0.139805343551712"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805343551712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272605088"}, "def": "139805343551712", "variance": "INVARIANT"}}, "139805343552160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605088"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343552608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605088"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343553056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605088"}, {"nodeId": "139805260218992"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805260218992": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805272605440": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343553504"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343553952"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343554400"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "139805272047136"}, {"nodeId": "139805277000576"}], "isAbstract": false}}, "139805343553504": {"type": "Function", "content": {"typeVars": [".0.139805343553504"], "argTypes": [{"nodeId": ".0.139805343553504"}], "returnType": {"nodeId": ".0.139805343553504"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805343553504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272605440"}, "def": "139805343553504", "variance": "INVARIANT"}}, "139805343553952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605440"}, {"nodeId": "139805272046784"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "139805343554400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605440"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805272605792": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343554848"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343555296"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343555744"}, "name": "write"}}], "typeVars": [], "bases": [{"nodeId": "139805272047136"}, {"nodeId": "139805277000576"}], "isAbstract": false}}, "139805343554848": {"type": "Function", "content": {"typeVars": [".0.139805343554848"], "argTypes": [{"nodeId": ".0.139805343554848"}], "returnType": {"nodeId": ".0.139805343554848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805343554848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272605792"}, "def": "139805343554848", "variance": "INVARIANT"}}, "139805343555296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605792"}, {"nodeId": "139805272046784"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "139805343555744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605792"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805272606144": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343556192"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343556640"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "139805272605440"}, {"nodeId": "139805272605792"}], "isAbstract": false}}, "139805343556192": {"type": "Function", "content": {"typeVars": [".0.139805343556192"], "argTypes": [{"nodeId": ".0.139805343556192"}], "returnType": {"nodeId": ".0.139805343556192"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805343556192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272606144"}, "def": "139805343556192", "variance": "INVARIANT"}}, "139805343556640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805272606496": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343557088"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343557536"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "139805272047136"}], "isAbstract": false}}, "139805343557088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606496"}, {"nodeId": "139805272046784"}, {"nodeId": "139805272046784"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}}, "139805343557536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606496"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805272607552": {"type": "Concrete", "content": {"module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343993632"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343994080"}, "name": "getvalue"}}], "typeVars": [], "bases": [{"nodeId": "139805272607200"}], "isAbstract": false}}, "139805343993632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607552"}, {"nodeId": "139805260220560"}, {"nodeId": "139805260220672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}}, "139805260220560": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260220672": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805343994080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607552"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805268521760": {"type": "Concrete", "content": {"module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343994528"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343994976"}, "name": "decode"}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226329568"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343995872"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "139805267810912"}], "isAbstract": false}}, "139805343994528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268521760"}, {"nodeId": "139805260220784"}, {"nodeId": "139805481882144"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}}, "139805260220784": {"type": "Union", "content": {"items": [{"nodeId": "139805267810912"}, {"nodeId": "N"}]}}, "139805267810912": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310068640"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805213957632"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310069536"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310069984"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310070432"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": true}}, "139805310068640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810912"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139805213957632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810912"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139805310069536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805310069984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810912"}], "returnType": {"nodeId": "139805255952176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255952176": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}]}}, "139805310070432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810912"}, {"nodeId": "139805255952400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139805255952400": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}]}}, "139805343994976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268521760"}, {"nodeId": "139805260220896"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139805260220896": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805276669024"}]}}, "139805226329568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268521760"}], "returnType": {"nodeId": "139805260221008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260221008": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805343995872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268521760"}, {"nodeId": "139805260221232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805260221232": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}]}}, "139805272612128": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805272612832": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "content": {"name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221755296"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272612480"}], "isAbstract": true}}, "139805221755296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272612832"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805272613184": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343999456"}, "name": "is_package"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343999904"}, "name": "get_code"}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221754400"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344000800"}, "name": "exec_module"}}, {"kind": "Variable", "content": {"name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221753952"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272612480"}], "isAbstract": true}}, "139805343999456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613184"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805343999904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613184"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805260231872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805260231872": {"type": "Union", "content": {"items": [{"nodeId": "139805272032000"}, {"nodeId": "N"}]}}, "139805221754400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613184"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805260231984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805260231984": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805344000800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613184"}, {"nodeId": "139805272033408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139805221753952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260232096"}, {"nodeId": "139805260232320"}], "returnType": {"nodeId": "139805272032000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}}, "139805260232096": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805276669024"}, {"nodeId": "139805268038528"}, {"nodeId": "139805268039232"}, {"nodeId": "139805268038880"}]}}, "139805260232320": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805260232208"}]}}, "139805260232208": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805272613536": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221752608"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272613184"}], "isAbstract": true}}, "139805221752608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613536"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805272613888": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344002144"}, "name": "path_mtime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344002592"}, "name": "set_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344003040"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344003488"}, "name": "path_stats"}}], "typeVars": [], "bases": [{"nodeId": "139805272612832"}, {"nodeId": "139805272613536"}], "isAbstract": true}}, "139805344002144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613888"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805344002592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613888"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}}, "139805344003040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613888"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805260232432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805260232432": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805344003488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613888"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805272614240": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344003936"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344004384"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344004832"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "139805272612128"}], "isAbstract": false}}, "139805344003936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614240"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260232656"}], "returnType": {"nodeId": "139805260232768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "139805260232656": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260232768": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805344004384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805344004832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614240"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260232880"}, {"nodeId": "139805260232992"}], "returnType": {"nodeId": "139805260233104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "139805260232880": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260232992": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805260233104": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805272614592": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344005280"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344005728"}, "name": "find_loader"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344104736"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344105184"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "139805272612128"}], "isAbstract": false}}, "139805344005280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614592"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805260233216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805260233216": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805344005728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614592"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805260233552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805260233552": {"type": "Tuple", "content": {"items": [{"nodeId": "139805260233328"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805260233328": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805344104736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805344105184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614592"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260233664"}], "returnType": {"nodeId": "139805260233776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}}, "139805260233664": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805260233776": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805272614944": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344105632"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344106080"}, "name": "get_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344106528"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344106976"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "139805272612832"}, {"nodeId": "139805272613536"}], "isAbstract": true}}, "139805344105632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614944"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "139805344106080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614944"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805344106528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614944"}, {"nodeId": "139805260233888"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139805260233888": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805344106976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614944"}, {"nodeId": "139805260234000"}], "returnType": {"nodeId": "139805272033408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139805260234000": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805272615296": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "content": {"name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221715104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221714656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221713984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221714432"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": true}}, "139805221715104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615296"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139805221714656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615296"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139805221713984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615296"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805221714432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615296"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272615648": {"type": "Protocol", "content": {"module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "content": {"name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221713088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221712640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221712416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221711744"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805260231536"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805221712192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221711520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221711296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221711072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}}, "139805221713088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805221712640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805221712416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805272615648"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805221711744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272615648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}}, "139805260231536": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805344111904"}, {"nodeId": "139805344112352"}, {"nodeId": "139805344112800"}, {"nodeId": "139805344113248"}, {"nodeId": "139805344113696"}, {"nodeId": "139805344114144"}, {"nodeId": "139805344114592"}]}}, "139805344111904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805260234224"}, {"nodeId": "139805481893056"}, {"nodeId": "139805260234336"}, {"nodeId": "139805260234448"}, {"nodeId": "139805260234560"}], "returnType": {"nodeId": "139805272607200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805260234224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267831024"}}}, "139805267831024": {"type": "Union", "content": {"items": [{"nodeId": "139805267832928"}, {"nodeId": "139805267833040"}, {"nodeId": "139805267830912"}]}}, "139805267832928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267830464"}}}, "139805267830464": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805267833040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267832592"}}}, "139805267832592": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805267830912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267834608"}}}, "139805267834608": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805260234336": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260234448": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260234560": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805344112352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805255221312"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272604736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805255221312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268018448"}}}, "139805268018448": {"type": "Union", "content": {"items": [{"nodeId": "139805268018672"}, {"nodeId": "139805268018784"}, {"nodeId": "139805268017440"}]}}, "139805268018672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267836400"}}}, "139805267836400": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805268018784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268019680"}}}, "139805268019680": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805268017440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268018336"}}}, "139805268018336": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805344112800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805255221536"}, {"nodeId": "139805255221872"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272606144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805255221536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267836400"}}}, "139805255221872": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805344113248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805255221984"}, {"nodeId": "139805255222320"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272605792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805255221984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268018336"}}}, "139805255222320": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805344113696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805255222432"}, {"nodeId": "139805255222768"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272605440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805255222432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268019680"}}}, "139805255222768": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805344114144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805255222880"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805277000576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805255222880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268018448"}}}, "139805344114592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805255222992"}, {"nodeId": "139805255223104"}, {"nodeId": "139805255223216"}], "returnType": {"nodeId": "139805277000224", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805255222992": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255223104": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255223216": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805221712192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805221711520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272615648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805221711296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805221711072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805255223440"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "139805255223440": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805272616000": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "content": {"name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221709504"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344117280"}, "name": "open_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344117728"}, "name": "resource_path"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344118176"}, "name": "is_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344118624"}, "name": "contents"}}], "typeVars": [], "bases": [{"nodeId": "139805272615296"}], "isAbstract": true}}, "139805221709504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616000"}], "returnType": {"nodeId": "139805272615648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805344117280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616000"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272605440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139805344117728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616000"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139805344118176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616000"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805344118624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616000"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805268514720": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221532864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221532416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221531968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221531520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221531072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221530400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221529952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221528832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221527936"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272614240"}, {"nodeId": "139805272613184"}], "isAbstract": false}}, "139805221532864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260228512"}], "returnType": {"nodeId": "139805260228624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139805260228512": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260228624": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805221532416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260228736"}, {"nodeId": "139805260228848"}], "returnType": {"nodeId": "139805260228960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139805260228736": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260228848": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805260228960": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805221531968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221531520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272033408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221531072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221530400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221529952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033408"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "139805221528832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611424"}], "returnType": {"nodeId": "139805260229072"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "139805260229072": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805221527936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "139805268515072": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221526816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221526368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221525920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221525472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221524576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221524128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221523680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221522560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221522336"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272614240"}, {"nodeId": "139805272613184"}], "isAbstract": false}}, "139805221526816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260229184"}], "returnType": {"nodeId": "139805260229296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139805260229184": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260229296": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805221526368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260229408"}, {"nodeId": "139805260229520"}], "returnType": {"nodeId": "139805260229632"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139805260229408": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260229520": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805260229632": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805221525920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221525472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272033408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221524576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221524128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221523680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033408"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}}, "139805221522560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611424"}], "returnType": {"nodeId": "139805260229744"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "139805260229744": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805221522336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "139805268515424": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221521216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221520768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272614240"}], "isAbstract": false}}, "139805221521216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260229856"}], "returnType": {"nodeId": "139805260229968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139805260229856": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260229968": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805221520768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260230080"}, {"nodeId": "139805260230192"}], "returnType": {"nodeId": "139805260230304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139805260230080": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260230192": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805260230304": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805272611776": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "content": {"name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221519648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221502112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221501888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221501664"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805221519648": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}}, "139805221502112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268514016"}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": "139805272611072"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}}, "139805268514016": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263542112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309580704"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226497216"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805263542112": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805309580704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268514016"}, {"nodeId": "139805260225376"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}}, "139805260225376": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805226497216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268514016"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272611072": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309582944"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305766176"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305766624"}, "name": "locate_file"}}], "typeVars": [], "bases": [{"nodeId": "139805272610720"}], "isAbstract": false}}, "139805309582944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611072"}, {"nodeId": "139805268520704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805268520704": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284653920"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284654368"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284654816"}, "name": "__exit__"}}, {"kind": "Variable", "content": {"name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805225672192"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284655712"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284656160"}, "name": "chmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284658848"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284659296"}, "name": "glob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284659744"}, "name": "rglob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284660192"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284660640"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284661088"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284661536"}, "name": "is_socket"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284661984"}, "name": "is_fifo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284662432"}, "name": "is_block_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284662880"}, "name": "is_char_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284844256"}, "name": "iterdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284844704"}, "name": "lchmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284845152"}, "name": "lstat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284845600"}, "name": "mkdir"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259615248"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284849184"}, "name": "owner"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284849632"}, "name": "group"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284850080"}, "name": "is_mount"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284850528"}, "name": "readlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284850976"}, "name": "rename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284851424"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284852768"}, "name": "resolve"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284853216"}, "name": "rmdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284853664"}, "name": "symlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284854112"}, "name": "hardlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284854560"}, "name": "touch"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284855008"}, "name": "unlink"}}, {"kind": "Variable", "content": {"name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805230608704"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284856352"}, "name": "absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284856800"}, "name": "expanduser"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284857248"}, "name": "read_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284857696"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284858144"}, "name": "samefile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284858592"}, "name": "write_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284859040"}, "name": "write_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285007648"}, "name": "link_to"}}], "typeVars": [], "bases": [{"nodeId": "139805268519648"}], "isAbstract": false}}, "139805284653920": {"type": "Function", "content": {"typeVars": [".0.139805284653920"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805259617824"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805284653920"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, "139805259617824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, ".0.139805284653920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284653920", "variance": "INVARIANT"}}, "139805284654368": {"type": "Function", "content": {"typeVars": [".0.139805284654368"], "argTypes": [{"nodeId": ".0.139805284654368"}], "returnType": {"nodeId": ".0.139805284654368"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805284654368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284654368", "variance": "INVARIANT"}}, "139805284654816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259618048"}, {"nodeId": "139805259618160"}, {"nodeId": "139805259618272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805259618048": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805259618160": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805259618272": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805225672192": {"type": "Function", "content": {"typeVars": [".0.139805225672192"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805225672192"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805225672192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805225672192", "variance": "INVARIANT"}}, "139805284655712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805259618384"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139805259618384": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263538976"}}}, "139805284656160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}}, "139805284658848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284659296": {"type": "Function", "content": {"typeVars": [".0.139805284659296"], "argTypes": [{"nodeId": ".0.139805284659296"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".0.139805284659296"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.139805284659296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284659296", "variance": "INVARIANT"}}, "139805284659744": {"type": "Function", "content": {"typeVars": [".0.139805284659744"], "argTypes": [{"nodeId": ".0.139805284659744"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".0.139805284659744"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.139805284659744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284659744", "variance": "INVARIANT"}}, "139805284660192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284660640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284661088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284661536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284661984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284662432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284662880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284844256": {"type": "Function", "content": {"typeVars": [".0.139805284844256"], "argTypes": [{"nodeId": ".0.139805284844256"}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".0.139805284844256"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805284844256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284844256", "variance": "INVARIANT"}}, "139805284844704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}}, "139805284845152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805259618496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259618496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263538976"}}}, "139805284845600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}}, "139805259615248": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284846048"}, {"nodeId": "139805284846496"}, {"nodeId": "139805284846944"}, {"nodeId": "139805284847392"}, {"nodeId": "139805284847840"}, {"nodeId": "139805284848288"}, {"nodeId": "139805284848736"}]}}, "139805284846048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259618720"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259618832"}, {"nodeId": "139805259618944"}, {"nodeId": "139805259619056"}], "returnType": {"nodeId": "139805272607200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805259618720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267831024"}}}, "139805259618832": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259618944": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259619056": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284846496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259619168"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272604736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805259619168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268018448"}}}, "139805284846944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259619392"}, {"nodeId": "139805259619728"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272606144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805259619392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267836400"}}}, "139805259619728": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805284847392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259619840"}, {"nodeId": "139805259620176"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272605792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805259619840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268018336"}}}, "139805259620176": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805284847840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259620288"}, {"nodeId": "139805259620624"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272605440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805259620288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268019680"}}}, "139805259620624": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805284848288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259620736"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805277000576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805259620736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268018448"}}}, "139805284848736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259620848"}, {"nodeId": "139805259620960"}, {"nodeId": "139805259621072"}], "returnType": {"nodeId": "139805277000224", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805259620848": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259620960": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259621072": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284849184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284849632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284850080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284850528": {"type": "Function", "content": {"typeVars": [".0.139805284850528"], "argTypes": [{"nodeId": ".0.139805284850528"}], "returnType": {"nodeId": ".0.139805284850528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805284850528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284850528", "variance": "INVARIANT"}}, "139805284850976": {"type": "Function", "content": {"typeVars": [".0.139805284850976"], "argTypes": [{"nodeId": ".0.139805284850976"}, {"nodeId": "139805259621296"}], "returnType": {"nodeId": ".0.139805284850976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.139805284850976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284850976", "variance": "INVARIANT"}}, "139805259621296": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805268519648"}]}}, "139805268519648": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "content": {"name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225661408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225660960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225660736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225660512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225660288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225660064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225659840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225659616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284510944"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284511392"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284511840"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284512288"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284512736"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284513184"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284513632"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284514080"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284514528"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284514976"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284515424"}, "name": "as_posix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284647200"}, "name": "as_uri"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284647648"}, "name": "is_absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284648096"}, "name": "is_reserved"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284648544"}, "name": "is_relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284649440"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284649888"}, "name": "relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284650336"}, "name": "with_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284650784"}, "name": "with_stem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284651232"}, "name": "with_suffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284651680"}, "name": "joinpath"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225655584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225669728"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284653024"}, "name": "__class_getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}], "isAbstract": false}}, "139805225661408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805225660960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805225660736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805225660512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805225660288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805225660064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805225659840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805225659616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284510944": {"type": "Function", "content": {"typeVars": [".0.139805284510944"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805259616928"}], "returnType": {"nodeId": ".0.139805284510944"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "139805259616928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, ".0.139805284510944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284510944", "variance": "INVARIANT"}}, "139805284511392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805284511840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284512288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}, {"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805284512736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}, {"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805284513184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}, {"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805284513632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}, {"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805284514080": {"type": "Function", "content": {"typeVars": [".0.139805284514080"], "argTypes": [{"nodeId": ".0.139805284514080"}, {"nodeId": "139805259617040"}], "returnType": {"nodeId": ".0.139805284514080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805284514080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284514080", "variance": "INVARIANT"}}, "139805259617040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805284514528": {"type": "Function", "content": {"typeVars": [".0.139805284514528"], "argTypes": [{"nodeId": ".0.139805284514528"}, {"nodeId": "139805259617152"}], "returnType": {"nodeId": ".0.139805284514528"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805284514528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284514528", "variance": "INVARIANT"}}, "139805259617152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805284514976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284515424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284647200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284647648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284648096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284648544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}, {"nodeId": "139805259617264"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, "139805259617264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805284649440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}}, "139805284649888": {"type": "Function", "content": {"typeVars": [".0.139805284649888"], "argTypes": [{"nodeId": ".0.139805284649888"}, {"nodeId": "139805259617376"}], "returnType": {"nodeId": ".0.139805284649888"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.139805284649888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284649888", "variance": "INVARIANT"}}, "139805259617376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805284650336": {"type": "Function", "content": {"typeVars": [".0.139805284650336"], "argTypes": [{"nodeId": ".0.139805284650336"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805284650336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, ".0.139805284650336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284650336", "variance": "INVARIANT"}}, "139805284650784": {"type": "Function", "content": {"typeVars": [".0.139805284650784"], "argTypes": [{"nodeId": ".0.139805284650784"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805284650784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}}, ".0.139805284650784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284650784", "variance": "INVARIANT"}}, "139805284651232": {"type": "Function", "content": {"typeVars": [".0.139805284651232"], "argTypes": [{"nodeId": ".0.139805284651232"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805284651232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}}, ".0.139805284651232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284651232", "variance": "INVARIANT"}}, "139805284651680": {"type": "Function", "content": {"typeVars": [".0.139805284651680"], "argTypes": [{"nodeId": ".0.139805284651680"}, {"nodeId": "139805259617488"}], "returnType": {"nodeId": ".0.139805284651680"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.139805284651680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284651680", "variance": "INVARIANT"}}, "139805259617488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805225655584": {"type": "Function", "content": {"typeVars": [".0.139805225655584"], "argTypes": [{"nodeId": ".0.139805225655584"}], "returnType": {"nodeId": "139805481889888", "args": [{"nodeId": ".0.139805225655584"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805225655584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805225655584", "variance": "INVARIANT"}}, "139805225669728": {"type": "Function", "content": {"typeVars": [".0.139805225669728"], "argTypes": [{"nodeId": ".0.139805225669728"}], "returnType": {"nodeId": ".0.139805225669728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805225669728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805225669728", "variance": "INVARIANT"}}, "139805284653024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "139805284851424": {"type": "Function", "content": {"typeVars": [".0.139805284851424"], "argTypes": [{"nodeId": ".0.139805284851424"}, {"nodeId": "139805259621408"}], "returnType": {"nodeId": ".0.139805284851424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.139805284851424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284851424", "variance": "INVARIANT"}}, "139805259621408": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805268519648"}]}}, "139805284852768": {"type": "Function", "content": {"typeVars": [".0.139805284852768"], "argTypes": [{"nodeId": ".0.139805284852768"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": ".0.139805284852768"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}}, ".0.139805284852768": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284852768", "variance": "INVARIANT"}}, "139805284853216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284853664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259621520"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}}, "139805259621520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805284854112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259621632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "139805259621632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805284854560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}}, "139805284855008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}}, "139805230608704": {"type": "Function", "content": {"typeVars": [".0.139805230608704"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805230608704"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805230608704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805230608704", "variance": "INVARIANT"}}, "139805284856352": {"type": "Function", "content": {"typeVars": [".0.139805284856352"], "argTypes": [{"nodeId": ".0.139805284856352"}], "returnType": {"nodeId": ".0.139805284856352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805284856352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284856352", "variance": "INVARIANT"}}, "139805284856800": {"type": "Function", "content": {"typeVars": [".0.139805284856800"], "argTypes": [{"nodeId": ".0.139805284856800"}], "returnType": {"nodeId": ".0.139805284856800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805284856800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284856800", "variance": "INVARIANT"}}, "139805284857248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284857696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259621744"}, {"nodeId": "139805259621856"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139805259621744": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259621856": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284858144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259621968"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}}, "139805259621968": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805284858592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "139805284859040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805276669024"}, {"nodeId": "139805259622080"}, {"nodeId": "139805259622192"}, {"nodeId": "139805259622304"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}}, "139805259622080": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259622192": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259622304": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805285007648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259622416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "139805259622416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805305766176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611072"}, {"nodeId": "139805260225600"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "139805260225600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805305766624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611072"}, {"nodeId": "139805260225712"}], "returnType": {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805260225712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805272610720": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805226516544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805226499680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805226499456"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805260224144"}, "items": [{"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "discover"}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805226499232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226498560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226499008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226498336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226498112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226497888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226497664"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": true}}, "139805226516544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805260224480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "139805260224480": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805226499680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}, {"nodeId": "139805260224592"}], "returnType": {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805260224592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805226499456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272610720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}}, "139805260224144": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805309575776"}, {"nodeId": "139805309576224"}]}}, "139805309575776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805268514016"}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": "139805272610720"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}}, "139805309576224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "139805260224816"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": "139805272610720"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}}, "139805260224816": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805226499232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260225040"}], "returnType": {"nodeId": "139805272611072"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}}, "139805260225040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805226498560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}], "returnType": {"nodeId": "139805272607904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272607904": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289483616"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289484064"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289484512"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289484960"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289485408"}, "name": "get_all"}}, {"kind": "Variable", "content": {"name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226540992"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}}, "139805289483616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607904"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805289484064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607904"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805289484512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607904"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805289484960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607904"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805289485408": {"type": "Function", "content": {"typeVars": [".-1.139805289485408"], "argTypes": [{"nodeId": "139805272607904"}, {"nodeId": "139805276669024"}, {"nodeId": ".-1.139805289485408"}], "returnType": {"nodeId": "139805260222016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, ".-1.139805289485408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805289485408", "variance": "INVARIANT"}}, "139805260222016": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.139805289485408"}]}}, "139805226540992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607904"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805260222128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260222128": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}]}}, "139805226499008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}], "returnType": {"nodeId": "139805272609664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272609664": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309568608"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309569056"}, "name": "select"}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226520800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226525056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805272703040"}]}], "isAbstract": false}}, "139805309568608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272609664"}, {"nodeId": "139805260223248"}], "returnType": {"nodeId": "139805260224032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805260223248": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805260224032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268567072"}}}, "139805268567072": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805309569056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272609664"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805272609664"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "139805226520800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272609664"}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805226525056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272609664"}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272703040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268567072"}}}, "139805226498336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805226498112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}], "returnType": {"nodeId": "139805260225152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260225152": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805268522112"}]}, {"nodeId": "N"}]}}, "139805268522112": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309572640"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309573088"}, "name": "read_binary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309573536"}, "name": "locate"}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268567296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268565504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272610720"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268520000"}], "isAbstract": false}}, "139805309572640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522112"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "139805309573088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522112"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309573536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522112"}], "returnType": {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805268567296": {"type": "Union", "content": {"items": [{"nodeId": "139805272610368"}, {"nodeId": "N"}]}}, "139805272610368": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309573984"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805309573984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610368"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "139805268565504": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805268520000": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268519648"}], "isAbstract": false}}, "139805226497888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}], "returnType": {"nodeId": "139805260225264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260225264": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805226497664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805221501888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260230416"}, {"nodeId": "139805260230528"}], "returnType": {"nodeId": "139805260230640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139805260230416": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260230528": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805260230640": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805221501664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260230752"}], "returnType": {"nodeId": "139805260230864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139805260230752": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260230864": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805268515776": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339023200"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221500992"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272614592"}], "isAbstract": false}}, "139805339023200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268515776"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260231088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}}, "139805260231088": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}]}}, "139805221500992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805260231312"}], "returnType": {"nodeId": "139805260011488"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}}, "139805260231312": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}]}}, "139805260011488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272614592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805268516128": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339024096"}, "name": "set_data"}}], "typeVars": [], "bases": [{"nodeId": "139805272614944"}, {"nodeId": "139805272613888"}], "isAbstract": false}}, "139805339024096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516128"}, {"nodeId": "139805276669024"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}}, "139805268516480": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "139805272614944"}, {"nodeId": "139805272613888"}], "isAbstract": false}}, "139805268516832": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339024544"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339024992"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339173152"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339173600"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339174048"}, "name": "exec_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339174496"}, "name": "get_code"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339174944"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "139805272613536"}], "isAbstract": false}}, "139805339024544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516832"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}}, "139805339024992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516832"}, {"nodeId": "139805260231424"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139805260231424": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805339173152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516832"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805339173600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516832"}, {"nodeId": "139805272611424"}], "returnType": {"nodeId": "139805272033408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "139805339174048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516832"}, {"nodeId": "139805272033408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139805339174496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516832"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805339174944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516832"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267650592": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "_MISSING_TYPE", "members": [{"kind": "Variable", "content": {"name": "MISSING", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272618464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272617056"}], "isAbstract": false}}, "139805267650944": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "KW_ONLY", "members": [], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805267652000": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "FrozenInstanceError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276678880"}], "isAbstract": false}}, "139805267652352": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "InitVar", "members": [{"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339188384"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255442928"}, "items": [{"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805267652352"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805267652352": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267652352", "variance": "INVARIANT"}}, "139805339188384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267652352", "args": [{"nodeId": ".1.139805267652352"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}}, "139805255442928": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805339188832"}, {"nodeId": "139805339451680"}]}}, "139805339188832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805267652352", "args": [{"nodeId": ".1.139805267652352"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "139805339451680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805267652352", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "139805184481184": {"type": "Concrete", "content": {"module": "__future__", "simpleName": "_Feature", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "optionalRelease", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mandatoryRelease", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compiler_flag", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339209952"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339210400"}, "name": "getOptionalRelease"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339210848"}, "name": "getMandatoryRelease"}}, {"kind": "Variable", "content": {"name": "compiler_flag", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805339209952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481184"}, {"nodeId": "139805180134000"}, {"nodeId": "139805180134224"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "optionalRelease", "mandatoryRelease", "compiler_flag"]}}, "139805180134000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180212752"}}}, "139805180212752": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805180134224": {"type": "Union", "content": {"items": [{"nodeId": "139805180134112"}, {"nodeId": "N"}]}}, "139805180134112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180212752"}}}, "139805339210400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481184"}], "returnType": {"nodeId": "139805180134336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805180134336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180212752"}}}, "139805339210848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481184"}], "returnType": {"nodeId": "139805180134560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805180134560": {"type": "Union", "content": {"items": [{"nodeId": "139805180134448"}, {"nodeId": "N"}]}}, "139805180134448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180212752"}}}, "139805150984704": {"type": "Concrete", "content": {"module": "numpy.ma.mrecords", "simpleName": "MaskedRecords", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "formats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "titles", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "aligned", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hard_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keep_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "options", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339714144"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_data", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213263008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fieldmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213262784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339714960"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339715232"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339715504"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339715776"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339716048"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339716320"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339716592"}, "name": "view"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339716864"}, "name": "harden_mask"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339717136"}, "name": "soften_mask"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339717408"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339717680"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339717952"}, "name": "__reduce__"}}], "typeVars": [{"nodeId": ".1.139805150984704"}, {"nodeId": ".2.139805150984704"}], "bases": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150984704"}, {"nodeId": ".2.139805150984704"}]}], "isAbstract": false}}, ".1.139805150984704": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150984704", "variance": "INVARIANT"}}, ".2.139805150984704": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805150984704", "variance": "COVARIANT"}}, "139805339714144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["cls", "shape", "dtype", "buf", "offset", "strides", "formats", "names", "titles", "byteorder", "aligned", "mask", "hard_mask", "fill_value", "keep_mask", "copy", "options"]}}, "139805213263008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704", "args": [{"nodeId": ".1.139805150984704"}, {"nodeId": ".2.139805150984704"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805213262784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704", "args": [{"nodeId": ".1.139805150984704"}, {"nodeId": ".2.139805150984704"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339714960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805339715232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805339715504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805339715776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}}, "139805339716048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805339716320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805339716592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "type"]}}, "139805339716864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339717136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339717408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339717680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}}, "139805339717952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184477312": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "BadZipFile", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805184477664": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "LargeZipFile", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805184478016": {"type": "Protocol", "content": {"module": "zipfile", "simpleName": "_ZipStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339214208"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["read"]}}, "139805339214208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184478016"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805184478368": {"type": "Protocol", "content": {"module": "zipfile", "simpleName": "_SupportsReadSeekTell", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339214656"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339215104"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339215552"}, "name": "tell"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["read", "seek", "tell"]}}, "139805339214656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184478368"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805339215104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184478368"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805339215552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184478368"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184478720": {"type": "Protocol", "content": {"module": "zipfile", "simpleName": "_ClosableZipStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339216000"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139805184478016"}], "protocolMembers": ["close", "read"]}}, "139805339216000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184478720"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184479072": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "ZipExtFile", "members": [{"kind": "Variable", "content": {"name": "MAX_N", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MIN_READ_SIZE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MAX_SEEK_READ", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179799680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179797440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805179800240"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339217792"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "limit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339218240"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339218688"}, "name": "peek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339219136"}, "name": "read1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339219584"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "139805272047136"}], "isAbstract": false}}, "139805179799680": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "N"}]}}, "139805179797440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179795536"}}}, "139805179800240": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805339216448"}, {"nodeId": "139805339216896"}, {"nodeId": "139805339217344"}]}}, "139805339216448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805184478720"}, {"nodeId": "139805179798896"}, {"nodeId": "139805184480480"}, {"nodeId": "139805179800800"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fileobj", "mode", "zipinfo", "pwd", "close_fileobj"]}}, "139805179798896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179795536"}}}, "139805179800800": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805339216896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805184478720"}, {"nodeId": "139805179801024"}, {"nodeId": "139805184480480"}, {"nodeId": "139805179801136"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "fileobj", "mode", "zipinfo", "pwd", "close_fileobj"]}}, "139805179801024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179795536"}}}, "139805179801136": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805339217344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805184478016"}, {"nodeId": "139805179801360"}, {"nodeId": "139805184480480"}, {"nodeId": "139805179801472"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fileobj", "mode", "zipinfo", "pwd", "close_fileobj"]}}, "139805179801360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179795536"}}}, "139805179801472": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805339217792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805179801696"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "139805179801696": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805339218240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "limit"]}}, "139805339218688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "139805339219136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805179801808"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n"]}}, "139805179801808": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805339219584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "139805184480128": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "PyZipFile", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compression", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "allowZip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "optimize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334838784"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pathname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "basename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filterfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334839232"}, "name": "writepy"}}], "typeVars": [], "bases": [{"nodeId": "139805184479776"}], "isAbstract": false}}, "139805334838784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480128"}, {"nodeId": "139805179805504"}, {"nodeId": "139805180198976"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "compression", "allowZip64", "optimize"]}}, "139805179805504": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}]}}, "139805180198976": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179796880"}}}, "139805334839232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480128"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805180199088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "pathname", "basename", "filterfunc"]}}, "139805180199088": {"type": "Union", "content": {"items": [{"nodeId": "139805180015136"}, {"nodeId": "N"}]}}, "139805180015136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805184480832": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "Path", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805179884960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805179884736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805179727648"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "root", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334845056"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334845504"}, "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334846400"}, "name": "iterdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334846848"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335044160"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335044608"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335045056"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335045504"}, "name": "read_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335045952"}, "name": "joinpath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335046848"}, "name": "__truediv__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805179884960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805179884736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805179727648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805334845056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}, {"nodeId": "139805180199872"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "root", "at"]}}, "139805180199872": {"type": "Union", "content": {"items": [{"nodeId": "139805184479776"}, {"nodeId": "139805180199760"}, {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}]}}, "139805180199760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805334845504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}, {"nodeId": "139805180199984"}, {"nodeId": "139805180200096"}, {"nodeId": "A"}, {"nodeId": "139805180200320"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "mode", "encoding", "args", "pwd", "kwargs"]}}, "139805180199984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179796320"}}}, "139805179796320": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805180200096": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805180200320": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805334846400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805184480832"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805334846848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805335044160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805335044608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805335045056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}, {"nodeId": "139805180200544"}, {"nodeId": "139805180200656"}, {"nodeId": "139805180200768"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "139805180200544": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805180200656": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805180200768": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805335045504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805335045952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}, {"nodeId": "139805180200880"}], "returnType": {"nodeId": "139805184480832"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, "139805180200880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805335046848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}, {"nodeId": "139805180200992"}], "returnType": {"nodeId": "139805184480832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805180200992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805193089824": {"type": "Concrete", "content": {"module": "ast", "simpleName": "_ABC", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335048416"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481892352"}], "isAbstract": false}}, "139805335048416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089824"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "139805193090176": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Num", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805184725440"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268186688"}], "isAbstract": false}}, "139805184725440": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805276667968"}]}}, "139805193090528": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Str", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268186688"}], "isAbstract": false}}, "139805193090880": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Bytes", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268186688"}], "isAbstract": false}}, "139805193091232": {"type": "Concrete", "content": {"module": "ast", "simpleName": "NameConstant", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268186688"}], "isAbstract": false}}, "139805193091584": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268186688"}], "isAbstract": false}}, "139805193091936": {"type": "Concrete", "content": {"module": "ast", "simpleName": "slice", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805193092288": {"type": "Concrete", "content": {"module": "ast", "simpleName": "ExtSlice", "members": [], "typeVars": [], "bases": [{"nodeId": "139805193091936"}], "isAbstract": false}}, "139805193092640": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Index", "members": [], "typeVars": [], "bases": [{"nodeId": "139805193091936"}], "isAbstract": false}}, "139805184475200": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Suite", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268037120"}], "isAbstract": false}}, "139805184475552": {"type": "Concrete", "content": {"module": "ast", "simpleName": "AugLoad", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268189856"}], "isAbstract": false}}, "139805184475904": {"type": "Concrete", "content": {"module": "ast", "simpleName": "AugStore", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268189856"}], "isAbstract": false}}, "139805184476256": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Param", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268189856"}], "isAbstract": false}}, "139805184476608": {"type": "Concrete", "content": {"module": "ast", "simpleName": "NodeVisitor", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335048864"}, "name": "visit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335049312"}, "name": "generic_visit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335049760"}, "name": "visit_Module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335050208"}, "name": "visit_Interactive"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335050656"}, "name": "visit_Expression"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335051104"}, "name": "visit_FunctionDef"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335051552"}, "name": "visit_AsyncFunctionDef"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335052000"}, "name": "visit_ClassDef"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335052448"}, "name": "visit_Return"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335052896"}, "name": "visit_Delete"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335053344"}, "name": "visit_Assign"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335053792"}, "name": "visit_AugAssign"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335054240"}, "name": "visit_AnnAssign"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335054688"}, "name": "visit_For"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335055136"}, "name": "visit_AsyncFor"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335055584"}, "name": "visit_While"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335056032"}, "name": "visit_If"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335056480"}, "name": "visit_With"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335056928"}, "name": "visit_AsyncWith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335057376"}, "name": "visit_Raise"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335057824"}, "name": "visit_Try"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335058272"}, "name": "visit_Assert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335058720"}, "name": "visit_Import"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335059168"}, "name": "visit_ImportFrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335059616"}, "name": "visit_Global"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335060064"}, "name": "visit_Nonlocal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335306528"}, "name": "visit_Expr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335306976"}, "name": "visit_Pass"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335307424"}, "name": "visit_Break"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335307872"}, "name": "visit_Continue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335308320"}, "name": "visit_Slice"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335308768"}, "name": "visit_BoolOp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335309216"}, "name": "visit_BinOp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335309664"}, "name": "visit_UnaryOp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335310112"}, "name": "visit_Lambda"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335310560"}, "name": "visit_IfExp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335311008"}, "name": "visit_Dict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335311456"}, "name": "visit_Set"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335311904"}, "name": "visit_ListComp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335312352"}, "name": "visit_SetComp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335312800"}, "name": "visit_DictComp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335313248"}, "name": "visit_GeneratorExp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335313696"}, "name": "visit_Await"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335314144"}, "name": "visit_Yield"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335314592"}, "name": "visit_YieldFrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335315040"}, "name": "visit_Compare"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335315488"}, "name": "visit_Call"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335315936"}, "name": "visit_FormattedValue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335316384"}, "name": "visit_JoinedStr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335316832"}, "name": "visit_Constant"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335317280"}, "name": "visit_NamedExpr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335317728"}, "name": "visit_TypeIgnore"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335318176"}, "name": "visit_Attribute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335318624"}, "name": "visit_Subscript"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335319072"}, "name": "visit_Starred"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335319520"}, "name": "visit_Name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335319968"}, "name": "visit_List"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335320416"}, "name": "visit_Tuple"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335320864"}, "name": "visit_Del"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335321312"}, "name": "visit_Load"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335321760"}, "name": "visit_Store"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335322208"}, "name": "visit_And"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335421216"}, "name": "visit_Or"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335421664"}, "name": "visit_Add"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335422112"}, "name": "visit_BitAnd"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335422560"}, "name": "visit_BitOr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335423008"}, "name": "visit_BitXor"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335423456"}, "name": "visit_Div"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335423904"}, "name": "visit_FloorDiv"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335424352"}, "name": "visit_LShift"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335424800"}, "name": "visit_Mod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335425248"}, "name": "visit_Mult"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335425696"}, "name": "visit_MatMult"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335426144"}, "name": "visit_Pow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335426592"}, "name": "visit_RShift"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335427040"}, "name": "visit_Sub"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335427488"}, "name": "visit_Invert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335427936"}, "name": "visit_Not"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335428384"}, "name": "visit_UAdd"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335428832"}, "name": "visit_USub"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335429280"}, "name": "visit_Eq"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335429728"}, "name": "visit_Gt"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335430176"}, "name": "visit_GtE"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335430624"}, "name": "visit_In"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335431072"}, "name": "visit_Is"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335431520"}, "name": "visit_IsNot"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335431968"}, "name": "visit_Lt"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335432416"}, "name": "visit_LtE"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335432864"}, "name": "visit_NotEq"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335433312"}, "name": "visit_NotIn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335433760"}, "name": "visit_comprehension"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335434208"}, "name": "visit_ExceptHandler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335434656"}, "name": "visit_arguments"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335435104"}, "name": "visit_arg"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335435552"}, "name": "visit_keyword"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335436000"}, "name": "visit_alias"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335436448"}, "name": "visit_withitem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335436896"}, "name": "visit_Match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335552288"}, "name": "visit_MatchValue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335552736"}, "name": "visit_MatchSequence"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335553184"}, "name": "visit_MatchStar"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335553632"}, "name": "visit_MatchMapping"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335554080"}, "name": "visit_MatchClass"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335554528"}, "name": "visit_MatchAs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335554976"}, "name": "visit_MatchOr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335555872"}, "name": "visit_ExtSlice"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335556320"}, "name": "visit_Index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335556768"}, "name": "visit_Suite"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335557216"}, "name": "visit_AugLoad"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335557664"}, "name": "visit_AugStore"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335558112"}, "name": "visit_Param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335558560"}, "name": "visit_Num"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335559008"}, "name": "visit_Str"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335559456"}, "name": "visit_Bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335559904"}, "name": "visit_NameConstant"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335560352"}, "name": "visit_Ellipsis"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805335048864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268036768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335049312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268036768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335049760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268038528"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335050208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268038880"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335050656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268039232"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335051104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268039936"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335051552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268040288"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335052000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268040640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335052448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268040992"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335052896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268041344"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335053344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268041696"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335053792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268042048"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335054240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268042400"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335054688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268042752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335055136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268043104"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335055584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268043456"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335056032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268043808"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335056480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268044160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335056928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268044512"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335057376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268044864"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335057824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268045216"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335058272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268045568"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335058720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268045920"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335059168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268046272"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335059616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268046624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335060064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268046976"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335306528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268047328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335306976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268047680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335307424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268048032"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335307872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268048384"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335308320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268187744"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335308768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268049088"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335309216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268049440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335309664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268181056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335310112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268181408"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335310560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268181760"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335311008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268182112"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335311456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268182464"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335311904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268182816"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335312352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268183168"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335312800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268183520"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335313248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268183872"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335313696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268184224"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335314144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268184576"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335314592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268184928"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335315040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268185280"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335315488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268185632"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335315936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268185984"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335316384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268186336"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335316832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268186688"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335317280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268187040"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335317728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268037824"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335318176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268187392"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335318624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268188096"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335319072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268188448"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335319520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268188800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335319968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268189152"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335320416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268189504"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335320864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268190208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335321312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268190560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335321760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268190912"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335322208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268191616"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335421216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268191968"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335421664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268192672"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335422112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268193024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335422560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268193376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335423008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268193728"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335423456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268194080"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335423904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268194432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335424352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268194784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335424800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268195136"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335425248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268195488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335425696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268195840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335426144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268196192"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335426592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268196544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335427040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268196896"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335427488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268296096"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335427936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268296448"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335428384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268296800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335428832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268297152"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335429280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268297856"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335429728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268298208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335430176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268298560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335430624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268298912"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335431072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268299264"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335431520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268299616"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335431968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268299968"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335432416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268300320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335432864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268300672"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335433312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268301024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335433760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268301376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335434208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268302080"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335434656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268302432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335435104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268302784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335435552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268303136"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335436000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268303488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335436448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268303840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335436896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268304192"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335552288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268305248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335552736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268305952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335553184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268306304"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335553632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268306656"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335554080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268307008"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335554528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268307360"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335554976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268307712"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335555872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805193092288"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335556320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805193092640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335556768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805184475200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335557216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805184475552"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335557664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805184475904"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335558112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805184476256"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335558560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805193090176"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335559008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805193090528"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335559456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805193090880"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335559904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805193091232"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335560352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805193091584"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805184476960": {"type": "Concrete", "content": {"module": "ast", "simpleName": "NodeTransformer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335560800"}, "name": "generic_visit"}}], "typeVars": [], "bases": [{"nodeId": "139805184476608"}], "isAbstract": false}}, "139805335560800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476960"}, {"nodeId": "139805268036768"}], "returnType": {"nodeId": "139805268036768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805150971680": {"type": "Concrete", "content": {"module": "numpy.lib.mixins", "simpleName": "NDArrayOperatorsMixin", "members": [{"kind": "Variable", "content": {"name": "__array_ufunc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805096397056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330811456"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330811904"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330812352"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330812800"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330813248"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330813696"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330814144"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330814592"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330815040"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330815488"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330815936"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330816384"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331341376"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331341824"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331342272"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331342720"}, "name": "__matmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331343168"}, "name": "__rmatmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331343616"}, "name": "__imatmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331344064"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331344512"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331344960"}, "name": "__itruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331345408"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331345856"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331346304"}, "name": "__ifloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331346752"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331347200"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331347648"}, "name": "__imod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331348096"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331348544"}, "name": "__rdivmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331348992"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331349440"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331349888"}, "name": "__ipow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331350336"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331350784"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331351232"}, "name": "__ilshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331351680"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331352128"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331352576"}, "name": "__irshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331353024"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331353472"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331353920"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331354368"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331354816"}, "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331355264"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331355712"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331356160"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331356608"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331357056"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331423296"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331423744"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331424192"}, "name": "__invert__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": true}}, "139805096397056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "139805150579520"}, {"nodeId": "139805142705856"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "ufunc", "method", "inputs", "kwargs"]}}, "139805142705856": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805330811456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330811904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330812352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330812800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330813248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330813696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330814144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330814592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330815040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330815488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330815936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330816384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331341376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331341824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331342272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331342720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331343168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331343616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331344064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331344512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331344960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331345408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331345856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331346304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331346752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331347200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331347648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331348096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331348544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805331348992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331349440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331349888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331350336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331350784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331351232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331351680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331352128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331352576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331353024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331353472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331353920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331354368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331354816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331355264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331355712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331356160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331356608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331357056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805331423296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805331423744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805331424192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805193088416": {"type": "Protocol", "content": {"module": "math", "simpleName": "_SupportsCeil", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326322240"}, "name": "__ceil__"}}], "typeVars": [{"nodeId": ".1.139805193088416"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__ceil__"]}}, ".1.139805193088416": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193088416", "variance": "COVARIANT"}}, "139805326322240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193088416", "args": [{"nodeId": ".1.139805193088416"}]}], "returnType": {"nodeId": ".1.139805193088416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805193088768": {"type": "Protocol", "content": {"module": "math", "simpleName": "_SupportsFloor", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326493952"}, "name": "__floor__"}}], "typeVars": [{"nodeId": ".1.139805193088768"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__floor__"]}}, ".1.139805193088768": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193088768", "variance": "COVARIANT"}}, "139805326493952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193088768", "args": [{"nodeId": ".1.139805193088768"}]}], "returnType": {"nodeId": ".1.139805193088768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805193089120": {"type": "Protocol", "content": {"module": "math", "simpleName": "_SupportsTrunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326593152"}, "name": "__trunc__"}}], "typeVars": [{"nodeId": ".1.139805193089120"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__trunc__"]}}, ".1.139805193089120": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193089120", "variance": "COVARIANT"}}, "139805326593152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089120", "args": [{"nodeId": ".1.139805193089120"}]}], "returnType": {"nodeId": ".1.139805193089120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805167812128": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "_fromnxfunction", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "funcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326792336"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326792608"}, "name": "getdoc"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326792880"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805326792336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167812128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "funcname"]}}, "139805326792608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167812128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805326792880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167812128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "params"]}}, "139805154852928": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "_fromnxfunction_single", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326793152"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805167812128"}], "isAbstract": false}}, "139805326793152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154852928"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "x", "args", "params"]}}, "139805154853280": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "_fromnxfunction_seq", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326793424"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805167812128"}], "isAbstract": false}}, "139805326793424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154853280"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "x", "args", "params"]}}, "139805154853632": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "_fromnxfunction_allargs", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326793696"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805167812128"}], "isAbstract": false}}, "139805326793696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154853632"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "params"]}}, "139805150981184": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "MAxisConcatenator", "members": [{"kind": "Variable", "content": {"name": "concatenate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "makemat", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805218265280"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326799680"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805154865248"}], "isAbstract": false}}, "139805218265280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805326799680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981184"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805150981536": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "mr_class", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326799952"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805150981184"}], "isAbstract": false}}, "139805326799952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981536"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805167807904": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MaskedArrayFutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276876544"}], "isAbstract": false}}, "139805167808960": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_MaskedUFunc", "members": [{"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327001520"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805327001520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167808960"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ufunc"]}}, "139805167809312": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_MaskedUnaryOperation", "members": [{"kind": "Variable", "content": {"name": "fill", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327001792"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327002064"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805167808960"}], "isAbstract": false}}, "139805327001792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167809312"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mufunc", "fill", "domain"]}}, "139805327002064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167809312"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "a", "args", "kwargs"]}}, "139805167809664": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_MaskedBinaryOperation", "members": [{"kind": "Variable", "content": {"name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mbfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327002336"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327002608"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327002880"}, "name": "reduce"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327003152"}, "name": "outer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327003424"}, "name": "accumulate"}}], "typeVars": [], "bases": [{"nodeId": "139805167808960"}], "isAbstract": false}}, "139805327002336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167809664"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mbfunc", "fillx", "filly"]}}, "139805327002608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167809664"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "a", "b", "args", "kwargs"]}}, "139805327002880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167809664"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "target", "axis", "dtype"]}}, "139805327003152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167809664"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}}, "139805327003424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167809664"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "axis"]}}, "139805167810016": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_DomainedBinaryOperation", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dbfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327003696"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327003968"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805167808960"}], "isAbstract": false}}, "139805327003696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810016"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dbfunc", "domain", "fillx", "filly"]}}, "139805327003968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810016"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "a", "b", "args", "kwargs"]}}, "139805167810368": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_MaskedPrintOption", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "display", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327009680"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327009952"}, "name": "display"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327010224"}, "name": "set_display"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327010496"}, "name": "enabled"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shrink", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327010768"}, "name": "enable"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805327009680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810368"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "display"]}}, "139805327009952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810368"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805327010224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810368"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "s"]}}, "139805327010496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810368"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805327010768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810368"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "shrink"]}}, "139805167810720": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MaskedIterator", "members": [{"kind": "Variable", "content": {"name": "ma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dataiter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maskiter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327011312"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327011584"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327011856"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327012128"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327012400"}, "name": "__next__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805327011312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810720"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ma"]}}, "139805327011584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810720"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805327011856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810720"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805327012128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810720"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805327012400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810720"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150980832": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MaskedConstant", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322468864"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322469136"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322469408"}, "name": "__array_prepare__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322469680"}, "name": "__array_wrap__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322469952"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322470224"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322470496"}, "name": "__iop__"}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322470768"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322471040"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322471312"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322471584"}, "name": "__setattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805150980128", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805167680560"}]}]}], "isAbstract": false}}, "139805322468864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139805322469136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805322469408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "context"]}}, "139805322469680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "context"]}}, "139805322469952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}}, "139805322470224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322470496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805322470768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805322471040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322471312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "memo"]}}, "139805322471584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "value"]}}, "139805167680560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805167811072": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_extrema_operation", "members": [{"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fill_value_func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322472400"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322472672"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322472944"}, "name": "reduce"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322473216"}, "name": "outer"}}], "typeVars": [], "bases": [{"nodeId": "139805167808960"}], "isAbstract": false}}, "139805322472400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811072"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "ufunc", "compare", "fill_value"]}}, "139805322472672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811072"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}}, "139805322472944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811072"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "axis"]}}, "139805322473216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811072"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}}, "139805167811424": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_frommethod", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reversed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "methodname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reversed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322474304"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322474576"}, "name": "getdoc"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322474848"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805322474304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811424"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "methodname", "reversed"]}}, "139805322474576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811424"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322474848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811424"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "a", "args", "params"]}}, "139805167811776": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_convert2ma", "members": [{"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "funcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322679680"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322679952"}, "name": "getdoc"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322680224"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805322679680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811776"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "funcname", "params"]}}, "139805322679952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811776"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322680224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811776"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "params"]}}, "139805150591488": {"type": "Concrete", "content": {"module": "numpy.random.bit_generator", "simpleName": "SeedlessSeedSequence", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323105824"}, "name": "generate_state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n_children", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323106272"}, "name": "spawn"}}], "typeVars": [], "bases": [{"nodeId": "139805150591136"}], "isAbstract": false}}, "139805323105824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150591488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805142634272"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805142634720"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n_words", "dtype"]}}, "139805142634272": {"type": "Union", "content": {"items": [{"nodeId": "139805142634496"}, {"nodeId": "139805142634160"}]}}, "139805142634496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201277984"}}}, "139805142634160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201274624"}}}, "139805142634720": {"type": "Union", "content": {"items": [{"nodeId": "139805142634384"}, {"nodeId": "139805142634608"}]}}, "139805142634384": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805142634608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805323106272": {"type": "Function", "content": {"typeVars": [".-1.139805323106272"], "argTypes": [{"nodeId": ".-1.139805323106272"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".-1.139805323106272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n_children"]}}, ".-1.139805323106272": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805323106272", "variance": "INVARIANT"}}, "139805167802272": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "FunctionTestCase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "testFunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setUp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tearDown", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "description", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293650976"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293651424"}, "name": "runTest"}}], "typeVars": [], "bases": [{"nodeId": "139805167801920"}], "isAbstract": false}}, "139805293650976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167802272"}, {"nodeId": "139805163557088"}, {"nodeId": "139805158634128"}, {"nodeId": "139805158634464"}, {"nodeId": "139805158634688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "testFunc", "setUp", "tearDown", "description"]}}, "139805163557088": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805158634128": {"type": "Union", "content": {"items": [{"nodeId": "139805163557984"}, {"nodeId": "N"}]}}, "139805163557984": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805158634464": {"type": "Union", "content": {"items": [{"nodeId": "139805163553056"}, {"nodeId": "N"}]}}, "139805163553056": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805158634688": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805293651424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167802272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805167801920": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "TestCase", "members": [{"kind": "Variable", "content": {"name": "failureException", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "longMessage", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maxDiff", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163705664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_testMethodName", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_testMethodDoc", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "methodName", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293059808"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293060256"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293060704"}, "name": "setUp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293061152"}, "name": "tearDown"}}, {"kind": "Variable", "content": {"name": "setUpClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805158944192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tearDownClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805158946656"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293062496"}, "name": "run"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293062944"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293063392"}, "name": "skipTest"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293063840"}, "name": "subTest"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293064288"}, "name": "debug"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293064736"}, "name": "_addSkip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293065184"}, "name": "assertEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293065632"}, "name": "assertNotEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293066080"}, "name": "assertTrue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293066528"}, "name": "assertFalse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293066976"}, "name": "assertIs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293067424"}, "name": "assertIsNot"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293067872"}, "name": "assertIsNone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293445408"}, "name": "assertIsNotNone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "member", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "container", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293445856"}, "name": "assertIn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "member", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "container", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293446304"}, "name": "assertNotIn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293446752"}, "name": "assertIsInstance"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293447200"}, "name": "assertNotIsInstance"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805163705552"}, "items": [{"kind": "Variable", "content": {"name": "assertGreater", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertGreater", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertGreater"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805163707904"}, "items": [{"kind": "Variable", "content": {"name": "assertGreaterEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertGreaterEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertGreaterEqual"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805163713840"}, "items": [{"kind": "Variable", "content": {"name": "assertLess", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertLess", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertLess"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805163714400"}, "items": [{"kind": "Variable", "content": {"name": "assertLessEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertLessEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertLessEqual"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805163714960"}, "items": [{"kind": "Variable", "content": {"name": "assertRaises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertRaises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertRaises"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805163715520"}, "items": [{"kind": "Variable", "content": {"name": "assertRaisesRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertRaisesRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertRaisesRegex"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805163716080"}, "items": [{"kind": "Variable", "content": {"name": "assertWarns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertWarns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertWarns"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805158621696"}, "items": [{"kind": "Variable", "content": {"name": "assertWarnsRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertWarnsRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertWarnsRegex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293454816"}, "name": "assertLogs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293455264"}, "name": "assertNoLogs"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805158622816"}, "items": [{"kind": "Variable", "content": {"name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertAlmostEqual"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805158623824"}, "items": [{"kind": "Variable", "content": {"name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertNotAlmostEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expected_regex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293459296"}, "name": "assertRegex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unexpected_regex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293459744"}, "name": "assertNotRegex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293460192"}, "name": "assertCountEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typeobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "function", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293460640"}, "name": "addTypeEqualityFunc"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293461088"}, "name": "assertMultiLineEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293642016"}, "name": "assertSequenceEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293642464"}, "name": "assertListEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tuple1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tuple2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293642912"}, "name": "assertTupleEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "set1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "set2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293643360"}, "name": "assertSetEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "d1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "d2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293643808"}, "name": "assertDictEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293644256"}, "name": "fail"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293644704"}, "name": "countTestCases"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293645152"}, "name": "defaultTestResult"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293645600"}, "name": "id"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293646048"}, "name": "shortDescription"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__function", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293646496"}, "name": "addCleanup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293647840"}, "name": "doCleanups"}}, {"kind": "Variable", "content": {"name": "addClassCleanup", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805158948000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "doClassCleanups", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159113216"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standardMsg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293649632"}, "name": "_formatMessage"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293650080"}, "name": "_getAssertEqualityFunc"}}, {"kind": "Variable", "content": {"name": "failUnlessEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159113888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159114560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failIfEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159115008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertNotEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159115456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failUnless", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159115904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assert_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159116352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failIf", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159116800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failUnlessRaises", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159099968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failUnlessAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159100640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertAlmostEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159101312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failIfAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159101984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertNotAlmostEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159102656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertRegexpMatches", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159117472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertNotRegexpMatches", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159118592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertRaisesRegexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159103664"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dictionary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293650528"}, "name": "assertDictContainsSubset"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805163705664": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805293059808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "methodName"]}}, "139805293060256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805293060704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293061152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805158944192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139805158946656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139805293062496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805163708576"}], "returnType": {"nodeId": "139805163708688"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "result"]}}, "139805163708576": {"type": "Union", "content": {"items": [{"nodeId": "139805167800160"}, {"nodeId": "N"}]}}, "139805167800160": {"type": "Concrete", "content": {"module": "unittest.result", "simpleName": "TestResult", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805163703200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failures", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805163703536"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "skipped", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805163703760"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "expectedFailures", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805163703984"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "unexpectedSuccesses", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805167801920"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shouldStop", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "testsRun", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_locals", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293147552"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293148000"}, "name": "printErrors"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293148448"}, "name": "wasSuccessful"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293148896"}, "name": "stop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293149344"}, "name": "startTest"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293149792"}, "name": "stopTest"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293248800"}, "name": "startTestRun"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293249248"}, "name": "stopTestRun"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293249696"}, "name": "addError"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293250144"}, "name": "addFailure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293250592"}, "name": "addSuccess"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293251040"}, "name": "addSkip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293251488"}, "name": "addExpectedFailure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293251936"}, "name": "addUnexpectedSuccess"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtest", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293252384"}, "name": "addSubTest"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805163703200": {"type": "Tuple", "content": {"items": [{"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}]}}, "139805163703536": {"type": "Tuple", "content": {"items": [{"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}]}}, "139805163703760": {"type": "Tuple", "content": {"items": [{"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}]}}, "139805163703984": {"type": "Tuple", "content": {"items": [{"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}]}}, "139805293147552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805163704656"}, {"nodeId": "139805163706224"}, {"nodeId": "139805163706336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "stream", "descriptions", "verbosity"]}}, "139805163704656": {"type": "Union", "content": {"items": [{"nodeId": "139805277000928"}, {"nodeId": "N"}]}}, "139805163706224": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805163706336": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805293148000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293148448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293148896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293149344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805293149792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805293248800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293249248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293249696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}, {"nodeId": "139805163706448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "err"]}}, "139805163706448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268020576"}}}, "139805268020576": {"type": "Union", "content": {"items": [{"nodeId": "139805268020240"}, {"nodeId": "139805268018560"}]}}, "139805268020240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268017216"}}}, "139805268017216": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276675712"}, {"nodeId": "139805272037280"}]}}, "139805268018560": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}]}}, "139805293250144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}, {"nodeId": "139805163706560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "err"]}}, "139805163706560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268020576"}}}, "139805293250592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805293251040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "reason"]}}, "139805293251488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}, {"nodeId": "139805163706672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "err"]}}, "139805163706672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268020576"}}}, "139805293251936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805293252384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}, {"nodeId": "139805167801920"}, {"nodeId": "139805163706896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "subtest", "err"]}}, "139805163706896": {"type": "Union", "content": {"items": [{"nodeId": "139805163706784"}, {"nodeId": "N"}]}}, "139805163706784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268020576"}}}, "139805163708688": {"type": "Union", "content": {"items": [{"nodeId": "139805167800160"}, {"nodeId": "N"}]}}, "139805293062944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805163708800"}], "returnType": {"nodeId": "139805163708912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "result"]}}, "139805163708800": {"type": "Union", "content": {"items": [{"nodeId": "139805167800160"}, {"nodeId": "N"}]}}, "139805163708912": {"type": "Union", "content": {"items": [{"nodeId": "139805167800160"}, {"nodeId": "N"}]}}, "139805293063392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "reason"]}}, "139805293063840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805267652704", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "params"]}}, "139805293064288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293064736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "result", "test_case", "reason"]}}, "139805293065184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805163709696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805163709696": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293065632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805163710144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805163710144": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293066080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "139805163710480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}}, "139805163710480": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293066528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "139805163710816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}}, "139805163710816": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293066976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805163711040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr1", "expr2", "msg"]}}, "139805163711040": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293067424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805163711264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr1", "expr2", "msg"]}}, "139805163711264": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293067872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481881792"}, {"nodeId": "139805163711488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "msg"]}}, "139805163711488": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293445408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481881792"}, {"nodeId": "139805163711712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "msg"]}}, "139805163711712": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293445856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "139805163712160"}, {"nodeId": "139805163712384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "member", "container", "msg"]}}, "139805163712160": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481889184", "args": [{"nodeId": "A"}]}]}}, "139805163712384": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293446304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "139805163712832"}, {"nodeId": "139805163713056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "member", "container", "msg"]}}, "139805163712832": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481889184", "args": [{"nodeId": "A"}]}]}}, "139805163713056": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293446752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481881792"}, {"nodeId": "139805163713168"}, {"nodeId": "139805163713392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls", "msg"]}}, "139805163713168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163353168"}}}, "139805163353168": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "139805272039392"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805163352496"}]}]}}, "139805163352496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163353168"}}}, "139805163713392": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293447200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481881792"}, {"nodeId": "139805163713504"}, {"nodeId": "139805163713728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls", "msg"]}}, "139805163713504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163353168"}}}, "139805163713728": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805163705552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293447648"}, {"nodeId": "139805293448096"}]}}, "139805293447648": {"type": "Function", "content": {"typeVars": [".-1.139805293447648"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267813024", "args": [{"nodeId": ".-1.139805293447648"}]}, {"nodeId": ".-1.139805293447648"}, {"nodeId": "139805163714064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293447648": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293447648", "variance": "INVARIANT"}}, "139805163714064": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293448096": {"type": "Function", "content": {"typeVars": [".-1.139805293448096"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293448096"}, {"nodeId": "139805267812672", "args": [{"nodeId": ".-1.139805293448096"}]}, {"nodeId": "139805163714288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293448096": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293448096", "variance": "INVARIANT"}}, "139805163714288": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805163707904": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293448544"}, {"nodeId": "139805293448992"}]}}, "139805293448544": {"type": "Function", "content": {"typeVars": [".-1.139805293448544"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267813728", "args": [{"nodeId": ".-1.139805293448544"}]}, {"nodeId": ".-1.139805293448544"}, {"nodeId": "139805163714624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293448544": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293448544", "variance": "INVARIANT"}}, "139805163714624": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293448992": {"type": "Function", "content": {"typeVars": [".-1.139805293448992"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293448992"}, {"nodeId": "139805267813376", "args": [{"nodeId": ".-1.139805293448992"}]}, {"nodeId": "139805163714848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293448992": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293448992", "variance": "INVARIANT"}}, "139805163714848": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805163713840": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293449440"}, {"nodeId": "139805293449888"}]}}, "139805293449440": {"type": "Function", "content": {"typeVars": [".-1.139805293449440"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267812672", "args": [{"nodeId": ".-1.139805293449440"}]}, {"nodeId": ".-1.139805293449440"}, {"nodeId": "139805163715184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293449440": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293449440", "variance": "INVARIANT"}}, "139805163715184": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293449888": {"type": "Function", "content": {"typeVars": [".-1.139805293449888"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293449888"}, {"nodeId": "139805267813024", "args": [{"nodeId": ".-1.139805293449888"}]}, {"nodeId": "139805163715408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293449888": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293449888", "variance": "INVARIANT"}}, "139805163715408": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805163714400": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293450336"}, {"nodeId": "139805293450784"}]}}, "139805293450336": {"type": "Function", "content": {"typeVars": [".-1.139805293450336"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267812672", "args": [{"nodeId": ".-1.139805293450336"}]}, {"nodeId": ".-1.139805293450336"}, {"nodeId": "139805163715744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293450336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293450336", "variance": "INVARIANT"}}, "139805163715744": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293450784": {"type": "Function", "content": {"typeVars": [".-1.139805293450784"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293450784"}, {"nodeId": "139805267813024", "args": [{"nodeId": ".-1.139805293450784"}]}, {"nodeId": "139805163715968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293450784": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293450784", "variance": "INVARIANT"}}, "139805163715968": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805163714960": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293451232"}, {"nodeId": "139805293451680"}]}}, "139805293451232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805163716192"}, {"nodeId": "139805163562912"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_exception", "callable", "args", "kwargs"]}}, "139805163716192": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805163562912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805293451680": {"type": "Function", "content": {"typeVars": [".-1.139805293451680"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158621472"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805167802624", "args": [{"nodeId": ".-1.139805293451680"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "msg"]}}, "139805158621472": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805167802624": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "_AssertRaisesContext", "members": [{"kind": "Variable", "content": {"name": "exception", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805167802624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293651872"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293652320"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293652768"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805167802624"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805167802624": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805276675712"}, "def": "139805167802624", "variance": "INVARIANT"}}, "139805293651872": {"type": "Function", "content": {"typeVars": [".0.139805293651872"], "argTypes": [{"nodeId": ".0.139805293651872"}], "returnType": {"nodeId": ".0.139805293651872"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805293651872": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167802624", "args": [{"nodeId": ".1.139805167802624"}]}, "def": "139805293651872", "variance": "INVARIANT"}}, "139805293652320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167802624", "args": [{"nodeId": ".1.139805167802624"}]}, {"nodeId": "139805158634800"}, {"nodeId": "139805158634912"}, {"nodeId": "139805158635024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805158634800": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805158634912": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805158635024": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805293652768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, ".-1.139805293451680": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805276675712"}, "def": "139805293451680", "variance": "INVARIANT"}}, "139805163715520": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293452128"}, {"nodeId": "139805293452576"}]}}, "139805293452128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158621808"}, {"nodeId": "139805158621920"}, {"nodeId": "139805163557536"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_exception", "expected_regex", "callable", "args", "kwargs"]}}, "139805158621808": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805158621920": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}]}}, "139805163557536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805293452576": {"type": "Function", "content": {"typeVars": [".-1.139805293452576"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158622480"}, {"nodeId": "139805158622592"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805167802624", "args": [{"nodeId": ".-1.139805293452576"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "expected_regex", "msg"]}}, "139805158622480": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805158622592": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}]}}, ".-1.139805293452576": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805276675712"}, "def": "139805293452576", "variance": "INVARIANT"}}, "139805163716080": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293453024"}, {"nodeId": "139805293453472"}]}}, "139805293453024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158622928"}, {"nodeId": "139805163562688"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_warning", "callable", "args", "kwargs"]}}, "139805158622928": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805163562688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805293453472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158623600"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805167802976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_warning", "msg"]}}, "139805158623600": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805167802976": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "_AssertWarnsContext", "members": [{"kind": "Variable", "content": {"name": "warning", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167796288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293653216"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293653664"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805293653216": {"type": "Function", "content": {"typeVars": [".0.139805293653216"], "argTypes": [{"nodeId": ".0.139805293653216"}], "returnType": {"nodeId": ".0.139805293653216"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805293653216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167802976"}, "def": "139805293653216", "variance": "INVARIANT"}}, "139805293653664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167802976"}, {"nodeId": "139805158635248"}, {"nodeId": "139805158635360"}, {"nodeId": "139805158635472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805158635248": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805158635360": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805158635472": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805158621696": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293453920"}, {"nodeId": "139805293454368"}]}}, "139805293453920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158623936"}, {"nodeId": "139805158624048"}, {"nodeId": "139805163558208"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_warning", "expected_regex", "callable", "args", "kwargs"]}}, "139805158623936": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805158624048": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}]}}, "139805163558208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805293454368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158624720"}, {"nodeId": "139805158624832"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805167802976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_warning", "expected_regex", "msg"]}}, "139805158624720": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805158624832": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}]}}, "139805293454816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158625056"}, {"nodeId": "139805158625168"}], "returnType": {"nodeId": "139805167805440", "args": [{"nodeId": "139805158625280"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "logger", "level"]}}, "139805158625056": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805171902848"}, {"nodeId": "N"}]}}, "139805171902848": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Logger", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176259280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "propagate", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805171903200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "disabled", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "root", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171906368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171902496"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285093152"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285093600"}, "name": "setLevel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285094048"}, "name": "isEnabledFor"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285094496"}, "name": "getEffectiveLevel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285094944"}, "name": "getChild"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285095392"}, "name": "debug"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285095840"}, "name": "info"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285096288"}, "name": "warning"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285096736"}, "name": "warn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285097184"}, "name": "error"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285097632"}, "name": "exception"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285098080"}, "name": "critical"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285098528"}, "name": "log"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285098976"}, "name": "_log"}}, {"kind": "Variable", "content": {"name": "fatal", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167140928"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hdlr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285103456"}, "name": "addHandler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hdlr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285103904"}, "name": "removeHandler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285104352"}, "name": "findCaller"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285105248"}, "name": "handle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280682272"}, "name": "makeRecord"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280682720"}, "name": "hasHandlers"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280683168"}, "name": "callHandlers"}}], "typeVars": [], "bases": [{"nodeId": "139805171902144"}], "isAbstract": false}}, "139805176259280": {"type": "Union", "content": {"items": [{"nodeId": "139805171902848"}, {"nodeId": "N"}]}}, "139805171903200": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Handler", "members": [{"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "formatter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176259504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176259616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176252896"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280683616"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280684064"}, "name": "get_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280684512"}, "name": "set_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280684960"}, "name": "createLock"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280685408"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280685856"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280686304"}, "name": "setLevel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280686752"}, "name": "setFormatter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280687200"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280687648"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280688096"}, "name": "handle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280688544"}, "name": "handleError"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280688992"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280689440"}, "name": "emit"}}], "typeVars": [], "bases": [{"nodeId": "139805171902144"}], "isAbstract": false}}, "139805176259504": {"type": "Union", "content": {"items": [{"nodeId": "139805171903552"}, {"nodeId": "N"}]}}, "139805171903552": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Formatter", "members": [{"kind": "Variable", "content": {"name": "converter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176199680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176258272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "datefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176259840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_style", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171906720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_time_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_msec_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176253568"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "datefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "style", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "validate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280689888"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280691232"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "datefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280691680"}, "name": "formatTime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ei", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280692128"}, "name": "formatException"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280692576"}, "name": "formatMessage"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280693024"}, "name": "formatStack"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280693472"}, "name": "usesTime"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805176199680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805176258496"}], "returnType": {"nodeId": "139805176253680"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805176258496": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805176253680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184099712"}}}, "139805176258272": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176259840": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805171906720": {"type": "Concrete", "content": {"module": "logging", "simpleName": "PercentStyle", "members": [{"kind": "Variable", "content": {"name": "default_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asctime_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asctime_search", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "validation_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281105312"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281106208"}, "name": "usesTime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281106656"}, "name": "validate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281107104"}, "name": "format"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805281105312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171906720"}, {"nodeId": "139805276669024"}, {"nodeId": "139805166987504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "fmt", "defaults"]}}, "139805166987504": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805281106208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171906720"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805281106656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171906720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805281107104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171906720"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805176253568": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280689888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903552"}, {"nodeId": "139805176266336"}, {"nodeId": "139805176266448"}, {"nodeId": "139805176266560"}, {"nodeId": "139805481882144"}, {"nodeId": "139805166977200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "fmt", "datefmt", "style", "validate", "defaults"]}}, "139805176266336": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176266448": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176266560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251664"}}}, "139805176251664": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805166977200": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805280691232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903552"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805171904608": {"type": "Concrete", "content": {"module": "logging", "simpleName": "LogRecord", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176253456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asctime", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "created", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176261632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176257712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "funcName", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "levelname", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "levelno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msecs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176260064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pathname", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "process", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176254688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "processName", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176255136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "relativeCreated", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176254800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "thread", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176255024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "threadName", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176255248"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pathname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280696608"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280697056"}, "name": "getMessage"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280697504"}, "name": "__setattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805176253456": {"type": "Union", "content": {"items": [{"nodeId": "139805176254352"}, {"nodeId": "N"}]}}, "139805176254352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252000"}}}, "139805176252000": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}]}}, "139805176261632": {"type": "Union", "content": {"items": [{"nodeId": "139805176254576"}, {"nodeId": "N"}]}}, "139805176254576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176251440": {"type": "Union", "content": {"items": [{"nodeId": "139805176250656"}, {"nodeId": "139805176250544"}]}}, "139805176250656": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276675712"}, {"nodeId": "139805175802432"}]}}, "139805175802432": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805176250544": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}]}}, "139805176257712": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176260064": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}}, "139805176254688": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805176255136": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176254800": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176255024": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805176255248": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280696608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904608"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166977536"}, {"nodeId": "139805166977984"}, {"nodeId": "139805166978096"}, {"nodeId": "139805166978208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "name", "level", "pathname", "lineno", "msg", "args", "exc_info", "func", "sinfo"]}}, "139805166977536": {"type": "Union", "content": {"items": [{"nodeId": "139805166977760"}, {"nodeId": "N"}]}}, "139805166977760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252000"}}}, "139805166977984": {"type": "Union", "content": {"items": [{"nodeId": "139805166977872"}, {"nodeId": "N"}]}}, "139805166977872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166978096": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805166978208": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280697056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280697504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904608"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805280691680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903552"}, {"nodeId": "139805171904608"}, {"nodeId": "139805166977312"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "record", "datefmt"]}}, "139805166977312": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280692128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903552"}, {"nodeId": "139805166977424"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ei"]}}, "139805166977424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805280692576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903552"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805280693024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903552"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stack_info"]}}, "139805280693472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903552"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805176259616": {"type": "Union", "content": {"items": [{"nodeId": "139805193080672"}, {"nodeId": "N"}]}}, "139805176252896": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280683616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805176266000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}}, "139805176266000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252112"}}}, "139805176252112": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805280684064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280684512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "139805280684960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280685408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280685856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280686304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805176266224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "139805176266224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252112"}}}, "139805280686752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805176262192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fmt"]}}, "139805176262192": {"type": "Union", "content": {"items": [{"nodeId": "139805171903552"}, {"nodeId": "N"}]}}, "139805280687200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280687648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280688096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805280688544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805280688992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805280689440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805171902144": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Filterer", "members": [{"kind": "Variable", "content": {"name": "filters", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805176257488"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285090016"}, "name": "addFilter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285090464"}, "name": "removeFilter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285090912"}, "name": "filter"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805176257488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176258832"}}}, "139805176258832": {"type": "Union", "content": {"items": [{"nodeId": "139805171904256"}, {"nodeId": "139805176138432"}]}}, "139805171904256": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Filter", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280695712"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280696160"}, "name": "filter"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805280695712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904256"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139805280696160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904256"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805176138432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805285090016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902144"}, {"nodeId": "139805176252448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filter"]}}, "139805176252448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176258832"}}}, "139805285090464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902144"}, {"nodeId": "139805176261520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filter"]}}, "139805176261520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176258832"}}}, "139805285090912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902144"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805171906368": {"type": "Concrete", "content": {"module": "logging", "simpleName": "RootLogger", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281104864"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805171902848"}], "isAbstract": false}}, "139805281104864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171906368"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "139805171902496": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Manager", "members": [{"kind": "Variable", "content": {"name": "root", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171906368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "disable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "emittedNoHandlerWarning", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loggerDict", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805176258944"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loggerClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176250432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "logRecordFactory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176258384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rootnode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285091360"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285091808"}, "name": "getLogger"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "klass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285092256"}, "name": "setLoggerClass"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285092704"}, "name": "setLogRecordFactory"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805176258944": {"type": "Union", "content": {"items": [{"nodeId": "139805171902848"}, {"nodeId": "139805171906016"}]}}, "139805171906016": {"type": "Concrete", "content": {"module": "logging", "simpleName": "PlaceHolder", "members": [{"kind": "Variable", "content": {"name": "loggerMap", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805171902848"}, {"nodeId": "N"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "alogger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281103968"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "alogger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281104416"}, "name": "append"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805281103968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171906016"}, {"nodeId": "139805171902848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "alogger"]}}, "139805281104416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171906016"}, {"nodeId": "139805171902848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "alogger"]}}, "139805176250432": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805176258384": {"type": "Union", "content": {"items": [{"nodeId": "139805176199232"}, {"nodeId": "N"}]}}, "139805176199232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805171904608"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805285091360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902496"}, {"nodeId": "139805171906368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "rootnode"]}}, "139805285091808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902496"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805171902848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "139805285092256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902496"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "klass"]}}, "139805285092704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902496"}, {"nodeId": "139805176199456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "factory"]}}, "139805176199456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805171904608"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805285093152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805276669024"}, {"nodeId": "139805176261296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "level"]}}, "139805176261296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252112"}}}, "139805285093600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805176261856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "139805176261856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252112"}}}, "139805285094048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "139805285094496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805285094944": {"type": "Function", "content": {"typeVars": [".0.139805285094944"], "argTypes": [{"nodeId": ".0.139805285094944"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805285094944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}}, ".0.139805285094944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805171902848"}, "def": "139805285094944", "variance": "INVARIANT"}}, "139805285095392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176262528"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176261968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176262528": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176262080"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805176262080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176261968": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285095840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176262864"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176262304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176262864": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176262416"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805176262416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176262304": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285096288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176263200"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176262640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176263200": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176262752"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805176262752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176262640": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285096736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176263536"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176262976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176263536": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176263088"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805176263088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176262976": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285097184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176263872"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176263312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176263872": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176263424"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805176263424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176263312": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285097632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176263648"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176263760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176263648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251216"}}}, "139805176251216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805176250992"}, {"nodeId": "139805276675712"}]}}, "139805176250992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176263760": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285098080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176264432"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176260736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176264432": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176264208"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805176264208": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176260736": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285098528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176264768"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176264320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "level", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176264768": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176263984"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805176263984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176264320": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285098976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176264544"}, {"nodeId": "139805176264096"}, {"nodeId": "139805176264880"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "level", "msg", "args", "exc_info", "extra", "stack_info", "stacklevel"]}}, "139805176264544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252000"}}}, "139805176264096": {"type": "Union", "content": {"items": [{"nodeId": "139805176264656"}, {"nodeId": "N"}]}}, "139805176264656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251216"}}}, "139805176264880": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805167140928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805167130928"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805167130256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805167130928": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176264208"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805167130256": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285103456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805171903200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "hdlr"]}}, "139805285103904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805171903200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "hdlr"]}}, "139805285104352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805176265216"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "stack_info", "stacklevel"]}}, "139805176265216": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805176264992"}]}}, "139805176264992": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805285105248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805280682272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176265440"}, {"nodeId": "139805176265552"}, {"nodeId": "139805176265664"}, {"nodeId": "139805176265776"}, {"nodeId": "139805176265888"}], "returnType": {"nodeId": "139805171904608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "name", "level", "fn", "lno", "msg", "args", "exc_info", "func", "extra", "sinfo"]}}, "139805176265440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252000"}}}, "139805176265552": {"type": "Union", "content": {"items": [{"nodeId": "139805176265104"}, {"nodeId": "N"}]}}, "139805176265104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176265664": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176265776": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805176265888": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280682720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280683168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805158625168": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805167805440": {"type": "Concrete", "content": {"module": "unittest._log", "simpleName": "_AssertLogsContext", "members": [{"kind": "Variable", "content": {"name": "LOGGING_FORMAT", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167801920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "logger_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logger_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "no_logs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285021088"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "no_logs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285021984"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285022432"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139805167805440"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805167805440": {"type": "TypeVar", "content": {"varName": "_L", "values": [{"nodeId": "N"}, {"nodeId": "139805163349472"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805167805440", "variance": "INVARIANT"}}, "139805163349472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163350928"}}}, "139805163350928": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805171904608"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}]}}, "139805285021088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805440", "args": [{"nodeId": ".1.139805167805440"}]}, {"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test_case", "logger_name", "level", "no_logs"]}}, "139805285021984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805440", "args": [{"nodeId": ".1.139805167805440"}]}], "returnType": {"nodeId": ".1.139805167805440"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805285022432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805440", "args": [{"nodeId": ".1.139805167805440"}]}, {"nodeId": "139805163707456"}, {"nodeId": "139805163707568"}, {"nodeId": "139805163707680"}], "returnType": {"nodeId": "139805163707792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805163707456": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805163707568": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805163707680": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805163707792": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805158625280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163350928"}}}, "139805293455264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158625392"}, {"nodeId": "139805158625504"}], "returnType": {"nodeId": "139805167805440", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "logger", "level"]}}, "139805158625392": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805171902848"}, {"nodeId": "N"}]}}, "139805158625504": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805158622816": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293455712"}, {"nodeId": "139805293456160"}, {"nodeId": "139805293456608"}, {"nodeId": "139805293457056"}]}}, "139805293455712": {"type": "Function", "content": {"typeVars": [".-1.139805293455712"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293455712"}, {"nodeId": ".-1.139805293455712"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293455712": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805293455712", "variance": "INVARIANT"}}, "139805167801568": {"type": "Protocol", "content": {"module": "unittest.case", "simpleName": "_SupportsAbsAndDunderGE", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267813728", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481885312", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__abs__", "__ge__"]}}, "139805293456160": {"type": "Function", "content": {"typeVars": [".-1.139805293456160"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293456160"}, {"nodeId": ".-1.139805293456160"}, {"nodeId": "N"}, {"nodeId": "139805158625952"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293456160": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805293456160", "variance": "INVARIANT"}}, "139805158625952": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293456608": {"type": "Function", "content": {"typeVars": [".-1.139805293456608"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267815136", "args": [{"nodeId": ".-1.139805293456608"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": ".-1.139805293456608"}, {"nodeId": "139805158626064"}, {"nodeId": "139805158626288"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293456608": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293456608", "variance": "INVARIANT"}}, "139805158626064": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805158626288": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293457056": {"type": "Function", "content": {"typeVars": [".-1.139805293457056"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293457056"}, {"nodeId": "139805267815488", "args": [{"nodeId": ".-1.139805293457056"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": "139805158626400"}, {"nodeId": "139805158626624"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293457056": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293457056", "variance": "INVARIANT"}}, "139805158626400": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805158626624": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805158623824": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293457504"}, {"nodeId": "139805293457952"}, {"nodeId": "139805293458400"}, {"nodeId": "139805293458848"}]}}, "139805293457504": {"type": "Function", "content": {"typeVars": [".-1.139805293457504"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293457504"}, {"nodeId": ".-1.139805293457504"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293457504": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805293457504", "variance": "INVARIANT"}}, "139805293457952": {"type": "Function", "content": {"typeVars": [".-1.139805293457952"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293457952"}, {"nodeId": ".-1.139805293457952"}, {"nodeId": "N"}, {"nodeId": "139805158627072"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293457952": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805293457952", "variance": "INVARIANT"}}, "139805158627072": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293458400": {"type": "Function", "content": {"typeVars": [".-1.139805293458400"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267815136", "args": [{"nodeId": ".-1.139805293458400"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": ".-1.139805293458400"}, {"nodeId": "139805158627184"}, {"nodeId": "139805158627408"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293458400": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293458400", "variance": "INVARIANT"}}, "139805158627184": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805158627408": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293458848": {"type": "Function", "content": {"typeVars": [".-1.139805293458848"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293458848"}, {"nodeId": "139805267815488", "args": [{"nodeId": ".-1.139805293458848"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": "139805158627520"}, {"nodeId": "139805158627744"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293458848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293458848", "variance": "INVARIANT"}}, "139805158627520": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805158627744": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293459296": {"type": "Function", "content": {"typeVars": [".-1.139805293459296"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293459296"}, {"nodeId": "139805158627856"}, {"nodeId": "139805158628080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "expected_regex", "msg"]}}, ".-1.139805293459296": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293459296", "variance": "INVARIANT"}}, "139805158627856": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805293459296"}, {"nodeId": "139805272045024", "args": [{"nodeId": ".-1.139805293459296"}]}]}}, "139805158628080": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293459744": {"type": "Function", "content": {"typeVars": [".-1.139805293459744"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293459744"}, {"nodeId": "139805158628192"}, {"nodeId": "139805158628416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "unexpected_regex", "msg"]}}, ".-1.139805293459744": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293459744", "variance": "INVARIANT"}}, "139805158628192": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805293459744"}, {"nodeId": "139805272045024", "args": [{"nodeId": ".-1.139805293459744"}]}]}}, "139805158628416": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293460192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805158628864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805158628864": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293460640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "0"}, {"nodeId": "139805163565824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typeobj", "function"]}}, "139805163565824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805293461088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805158629312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805158629312": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293642016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}, {"nodeId": "139805158629760"}, {"nodeId": "139805158629984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "seq1", "seq2", "msg", "seq_type"]}}, "139805158629760": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805158629984": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805293642464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, {"nodeId": "139805158630432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "list1", "list2", "msg"]}}, "139805158630432": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293642912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805158630880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "tuple1", "tuple2", "msg"]}}, "139805158630880": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293643360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "139805158631104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "set1", "set2", "msg"]}}, "139805158631104": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293643808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": "139805481881792"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": "139805481881792"}]}, {"nodeId": "139805158631552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "d1", "d2", "msg"]}}, "139805158631552": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293644256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158631776"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "139805158631776": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293644704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293645152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293645600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293646048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "139805158631888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805158631888": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805293646496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805163566720"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}}, "139805163566720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805293647840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805158948000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805163559328"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", null, "args", "kwargs"]}}, "139805163559328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805159113216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139805293649632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158633120"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "msg", "standardMsg"]}}, "139805158633120": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805293650080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805163566944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second"]}}, "139805163566944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805159113888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805158880224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805158880224": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159114560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805158882800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805158882800": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159115008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805158876976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805158876976": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159115456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805159096384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805159096384": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159115904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "139805159099296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}}, "139805159099296": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159116352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "139805159099408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}}, "139805159099408": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159116800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "139805159099520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}}, "139805159099520": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159099968": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159117696"}, {"nodeId": "139805159117920"}]}}, "139805159117696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805159099632"}, {"nodeId": "139805159114112"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_exception", "callable", "args", "kwargs"]}}, "139805159099632": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805159114112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805159117920": {"type": "Function", "content": {"typeVars": [".-1.139805159117920"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805159099744"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805167802624", "args": [{"nodeId": ".-1.139805159117920"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "msg"]}}, "139805159099744": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, ".-1.139805159117920": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805276675712"}, "def": "139805159117920", "variance": "INVARIANT"}}, "139805159100640": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159118816"}, {"nodeId": "139805159119040"}, {"nodeId": "139805159119264"}, {"nodeId": "139805159119488"}]}}, "139805159118816": {"type": "Function", "content": {"typeVars": [".-1.139805159118816"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159118816"}, {"nodeId": ".-1.139805159118816"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159118816": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159118816", "variance": "INVARIANT"}}, "139805159119040": {"type": "Function", "content": {"typeVars": [".-1.139805159119040"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159119040"}, {"nodeId": ".-1.139805159119040"}, {"nodeId": "N"}, {"nodeId": "139805159099856"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159119040": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159119040", "variance": "INVARIANT"}}, "139805159099856": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159119264": {"type": "Function", "content": {"typeVars": [".-1.139805159119264"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267815136", "args": [{"nodeId": ".-1.139805159119264"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": ".-1.139805159119264"}, {"nodeId": "139805159100080"}, {"nodeId": "139805159100192"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159119264": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159119264", "variance": "INVARIANT"}}, "139805159100080": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159100192": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159119488": {"type": "Function", "content": {"typeVars": [".-1.139805159119488"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159119488"}, {"nodeId": "139805267815488", "args": [{"nodeId": ".-1.139805159119488"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": "139805159100304"}, {"nodeId": "139805159100416"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159119488": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159119488", "variance": "INVARIANT"}}, "139805159100304": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159100416": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159101312": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159119936"}, {"nodeId": "139805159120160"}, {"nodeId": "139805159120384"}, {"nodeId": "139805159120608"}]}}, "139805159119936": {"type": "Function", "content": {"typeVars": [".-1.139805159119936"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159119936"}, {"nodeId": ".-1.139805159119936"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159119936": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159119936", "variance": "INVARIANT"}}, "139805159120160": {"type": "Function", "content": {"typeVars": [".-1.139805159120160"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159120160"}, {"nodeId": ".-1.139805159120160"}, {"nodeId": "N"}, {"nodeId": "139805159100528"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159120160": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159120160", "variance": "INVARIANT"}}, "139805159100528": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159120384": {"type": "Function", "content": {"typeVars": [".-1.139805159120384"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267815136", "args": [{"nodeId": ".-1.139805159120384"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": ".-1.139805159120384"}, {"nodeId": "139805159100752"}, {"nodeId": "139805159100864"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159120384": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159120384", "variance": "INVARIANT"}}, "139805159100752": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159100864": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159120608": {"type": "Function", "content": {"typeVars": [".-1.139805159120608"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159120608"}, {"nodeId": "139805267815488", "args": [{"nodeId": ".-1.139805159120608"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": "139805159100976"}, {"nodeId": "139805159101088"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159120608": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159120608", "variance": "INVARIANT"}}, "139805159100976": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159101088": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159101984": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159121056"}, {"nodeId": "139805159121280"}, {"nodeId": "139805159121504"}, {"nodeId": "139805159121728"}]}}, "139805159121056": {"type": "Function", "content": {"typeVars": [".-1.139805159121056"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159121056"}, {"nodeId": ".-1.139805159121056"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159121056": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159121056", "variance": "INVARIANT"}}, "139805159121280": {"type": "Function", "content": {"typeVars": [".-1.139805159121280"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159121280"}, {"nodeId": ".-1.139805159121280"}, {"nodeId": "N"}, {"nodeId": "139805159101200"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159121280": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159121280", "variance": "INVARIANT"}}, "139805159101200": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159121504": {"type": "Function", "content": {"typeVars": [".-1.139805159121504"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267815136", "args": [{"nodeId": ".-1.139805159121504"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": ".-1.139805159121504"}, {"nodeId": "139805159101424"}, {"nodeId": "139805159101536"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159121504": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159121504", "variance": "INVARIANT"}}, "139805159101424": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159101536": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159121728": {"type": "Function", "content": {"typeVars": [".-1.139805159121728"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159121728"}, {"nodeId": "139805267815488", "args": [{"nodeId": ".-1.139805159121728"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": "139805159101648"}, {"nodeId": "139805159101760"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159121728": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159121728", "variance": "INVARIANT"}}, "139805159101648": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159101760": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159102656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159122176"}, {"nodeId": "139805159122400"}, {"nodeId": "139805159122624"}, {"nodeId": "139805159122848"}]}}, "139805159122176": {"type": "Function", "content": {"typeVars": [".-1.139805159122176"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159122176"}, {"nodeId": ".-1.139805159122176"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159122176": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159122176", "variance": "INVARIANT"}}, "139805159122400": {"type": "Function", "content": {"typeVars": [".-1.139805159122400"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159122400"}, {"nodeId": ".-1.139805159122400"}, {"nodeId": "N"}, {"nodeId": "139805159101872"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159122400": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159122400", "variance": "INVARIANT"}}, "139805159101872": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159122624": {"type": "Function", "content": {"typeVars": [".-1.139805159122624"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267815136", "args": [{"nodeId": ".-1.139805159122624"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": ".-1.139805159122624"}, {"nodeId": "139805159102096"}, {"nodeId": "139805159102208"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159122624": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159122624", "variance": "INVARIANT"}}, "139805159102096": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159102208": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159122848": {"type": "Function", "content": {"typeVars": [".-1.139805159122848"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159122848"}, {"nodeId": "139805267815488", "args": [{"nodeId": ".-1.139805159122848"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": "139805159102320"}, {"nodeId": "139805159102432"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159122848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159122848", "variance": "INVARIANT"}}, "139805159102320": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159102432": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159117472": {"type": "Function", "content": {"typeVars": [".-1.139805159117472"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159117472"}, {"nodeId": "139805159102544"}, {"nodeId": "139805159102768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "expected_regex", "msg"]}}, ".-1.139805159117472": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159117472", "variance": "INVARIANT"}}, "139805159102544": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805159117472"}, {"nodeId": "139805272045024", "args": [{"nodeId": ".-1.139805159117472"}]}]}}, "139805159102768": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159118592": {"type": "Function", "content": {"typeVars": [".-1.139805159118592"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159118592"}, {"nodeId": "139805159102880"}, {"nodeId": "139805159102992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "unexpected_regex", "msg"]}}, ".-1.139805159118592": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159118592", "variance": "INVARIANT"}}, "139805159102880": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805159118592"}, {"nodeId": "139805272045024", "args": [{"nodeId": ".-1.139805159118592"}]}]}}, "139805159102992": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159103664": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159123968"}, {"nodeId": "139805159124192"}]}}, "139805159123968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805159103104"}, {"nodeId": "139805159103216"}, {"nodeId": "139805159117248"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_exception", "expected_regex", "callable", "args", "kwargs"]}}, "139805159103104": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805159103216": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}]}}, "139805159117248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805159124192": {"type": "Function", "content": {"typeVars": [".-1.139805159124192"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805159103328"}, {"nodeId": "139805159103440"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805167802624", "args": [{"nodeId": ".-1.139805159124192"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "expected_regex", "msg"]}}, "139805159103328": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805159103440": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}]}}, ".-1.139805159124192": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805276675712"}, "def": "139805159124192", "variance": "INVARIANT"}}, "139805293650528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "139805158634016"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "subset", "dictionary", "msg"]}}, "139805158634016": {"type": "Union", "content": {"items": [{"nodeId": "139805481881792"}, {"nodeId": "N"}]}}, "139805167801216": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "SkipTest", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293059360"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805293059360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801216"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "reason"]}}, "139805167804384": {"type": "Concrete", "content": {"module": "unittest.loader", "simpleName": "TestLoader", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "0"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "testMethodPrefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sortTestMethodsUsing", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163701632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "testNamePatterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163353728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suiteClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163701744"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "testCaseClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293138144"}, "name": "loadTestsFromTestCase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293138592"}, "name": "loadTestsFromModule"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293139040"}, "name": "loadTestsFromName"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293139488"}, "name": "loadTestsFromNames"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "testCaseClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293139936"}, "name": "getTestCaseNames"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "top_level_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293140384"}, "name": "discover"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "full_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293140832"}, "name": "_match_path"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805163701632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805242514272"}}}, "139805242514272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805163353728": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805163701744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163573024"}}}, "139805163573024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805167801920"}]}], "returnType": {"nodeId": "139805167806144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805167806144": {"type": "Concrete", "content": {"module": "unittest.suite", "simpleName": "TestSuite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "debug", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293264480"}, "name": "run"}}], "typeVars": [], "bases": [{"nodeId": "139805167805792"}], "isAbstract": false}}, "139805293264480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806144"}, {"nodeId": "139805167800160"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "result", "debug"]}}, "139805167805792": {"type": "Concrete", "content": {"module": "unittest.suite", "simpleName": "BaseTestSuite", "members": [{"kind": "Variable", "content": {"name": "_tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805167801920"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_removed_tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293260448"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293260896"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293261344"}, "name": "addTest"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293261792"}, "name": "addTests"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293262240"}, "name": "run"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293262688"}, "name": "debug"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293263136"}, "name": "countTestCases"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293263584"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293264032"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805163352832"}]}], "isAbstract": false}}, "139805293260448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805158636592"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tests"]}}, "139805158636592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163352384"}}}, "139805163352384": {"type": "Union", "content": {"items": [{"nodeId": "139805167801920"}, {"nodeId": "139805167806144"}]}}, "139805293260896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}, {"nodeId": "139805167800160"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "result"]}}, "139805293261344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}, {"nodeId": "139805158636704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805158636704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163352384"}}}, "139805293261792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805158636816"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "tests"]}}, "139805158636816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163352384"}}}, "139805293262240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}, {"nodeId": "139805167800160"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "result"]}}, "139805293262688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293263136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293263584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805158636928"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805158636928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163352384"}}}, "139805293264032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805163352832": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163352384"}}}, "139805293138144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804384"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805167806144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "testCaseClass"]}}, "139805293138592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804384"}, {"nodeId": "139805272033408"}, {"nodeId": "A"}, {"nodeId": "139805158868240"}], "returnType": {"nodeId": "139805167806144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "module", "args", "pattern"]}}, "139805158868240": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293139040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804384"}, {"nodeId": "139805276669024"}, {"nodeId": "139805158868352"}], "returnType": {"nodeId": "139805167806144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "module"]}}, "139805158868352": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805293139488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804384"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805158868464"}], "returnType": {"nodeId": "139805167806144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "names", "module"]}}, "139805158868464": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805293139936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804384"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "testCaseClass"]}}, "139805293140384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804384"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805158868576"}], "returnType": {"nodeId": "139805167806144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "start_dir", "pattern", "top_level_dir"]}}, "139805158868576": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805293140832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804384"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "full_path", "pattern"]}}, "139805167805088": {"type": "Concrete", "content": {"module": "unittest.main", "simpleName": "TestProgram", "members": [{"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167800160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163702304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163702416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "catchbreak", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163702528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163702640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "progName", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163702752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163702864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "testNamePatterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163702976"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defaultTest", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argv", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "testRunner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "testLoader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "catchbreak", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_locals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293143968"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293144416"}, "name": "usageExit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argv", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293144864"}, "name": "parseArgs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "from_discovery", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293145312"}, "name": "createTests"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293145760"}, "name": "runTests"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805163702304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805272033408"}]}}, "139805163702416": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805163702528": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805163702640": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805163702752": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805163702864": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805163702976": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805293143968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805088"}, {"nodeId": "139805158637040"}, {"nodeId": "139805158869584"}, {"nodeId": "139805158869696"}, {"nodeId": "139805158869808"}, {"nodeId": "139805167804384"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805158869920"}, {"nodeId": "139805158870032"}, {"nodeId": "139805158870144"}, {"nodeId": "139805158870256"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "module", "defaultTest", "argv", "testRunner", "testLoader", "exit", "verbosity", "failfast", "catchbreak", "buffer", "warnings", "tb_locals"]}}, "139805158637040": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805272033408"}]}}, "139805158869584": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805158869696": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805158869808": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805167804736"}, {"nodeId": "N"}]}}, "139805167804736": {"type": "Protocol", "content": {"module": "unittest.main", "simpleName": "_TestRunner", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293143520"}, "name": "run"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["run"]}}, "139805293143520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804736"}, {"nodeId": "139805158869360"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805158869360": {"type": "Union", "content": {"items": [{"nodeId": "139805167806144"}, {"nodeId": "139805167801920"}]}}, "139805158869920": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805158870032": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805158870144": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805158870256": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805293144416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805088"}, {"nodeId": "139805158867904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "139805158867904": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293144864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805088"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "argv"]}}, "139805293145312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805088"}, {"nodeId": "139805481882144"}, {"nodeId": "139805158870480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "from_discovery", "Loader"]}}, "139805158870480": {"type": "Union", "content": {"items": [{"nodeId": "139805167804384"}, {"nodeId": "N"}]}}, "139805293145760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805167803680": {"type": "Concrete", "content": {"module": "unittest.runner", "simpleName": "TextTestResult", "members": [{"kind": "Variable", "content": {"name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dots", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "separator1", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "separator2", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "showAll", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277000928"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293253728"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293254176"}, "name": "getDescription"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "flavour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293254624"}, "name": "printErrorList"}}], "typeVars": [], "bases": [{"nodeId": "139805167800160"}], "isAbstract": false}}, "139805293253728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167803680"}, {"nodeId": "139805277000928"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "descriptions", "verbosity"]}}, "139805293254176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167803680"}, {"nodeId": "139805167801920"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805293254624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167803680"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805158867232"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "flavour", "errors"]}}, "139805158867232": {"type": "Tuple", "content": {"items": [{"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}]}}, "139805167804032": {"type": "Concrete", "content": {"module": "unittest.runner", "simpleName": "TextTestRunner", "members": [{"kind": "Variable", "content": {"name": "resultclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163701072"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resultclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_locals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293255072"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293255520"}, "name": "_makeResult"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293255968"}, "name": "run"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805163701072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805242514048"}}}, "139805242514048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000928"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805293255072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804032"}, {"nodeId": "139805158867344"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805158867568"}, {"nodeId": "139805158867680"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "stream", "descriptions", "verbosity", "failfast", "buffer", "resultclass", "warnings", "tb_locals"]}}, "139805158867344": {"type": "Union", "content": {"items": [{"nodeId": "139805277000928"}, {"nodeId": "N"}]}}, "139805158867568": {"type": "Union", "content": {"items": [{"nodeId": "139805158867456"}, {"nodeId": "N"}]}}, "139805158867456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805242514048"}}}, "139805158867680": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805293255520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804032"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293255968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804032"}, {"nodeId": "139805158867792"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805158867792": {"type": "Union", "content": {"items": [{"nodeId": "139805167806144"}, {"nodeId": "139805167801920"}]}}, "139805167803328": {"type": "Concrete", "content": {"module": "unittest.async_case", "simpleName": "IsolatedAsyncioTestCase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805163559552"}, "name": "asyncSetUp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805163567392"}, "name": "asyncTearDown"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288630304"}, "name": "addAsyncCleanup"}}], "typeVars": [], "bases": [{"nodeId": "139805167801920"}], "isAbstract": false}}, "139805163559552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167803328"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163567392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167803328"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805288630304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167803328"}, {"nodeId": "139805163556640"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}}, "139805163556640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": "139805481881792"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805272040800": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805272040800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805272040800"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339180768"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339179872"}, "name": "check_returncode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339179424"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805272040800"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805272040800": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272040800", "variance": "INVARIANT"}}, "139805339180768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272040800", "args": [{"nodeId": ".1.139805272040800"}]}, {"nodeId": "139805264368848"}, {"nodeId": "139805481893056"}, {"nodeId": "139805264368960"}, {"nodeId": "139805264369072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}}, "139805264368848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805264368960": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272040800"}, {"nodeId": "N"}]}}, "139805264369072": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272040800"}, {"nodeId": "N"}]}}, "139805339179872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272040800", "args": [{"nodeId": ".1.139805272040800"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339179424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805272041152": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805272041504": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805296964128"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263532368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268560464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272041152"}], "isAbstract": false}}, "139805296964128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272041504"}, {"nodeId": "139805259311232"}, {"nodeId": "139805481893408"}, {"nodeId": "139805259311344"}, {"nodeId": "139805259311456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}}, "139805259311232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259311344": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805259311456": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805263532368": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805268560464": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805272041856": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805296964576"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805272041152"}], "isAbstract": false}}, "139805296964576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272041856"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259311568"}, {"nodeId": "139805259311680"}, {"nodeId": "139805259311792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}}, "139805259311568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259311680": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805259311792": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805184481888": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_CDataMeta", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292785312"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292785760"}, "name": "__rmul__"}}], "typeVars": [], "bases": [{"nodeId": "139805481892352"}], "isAbstract": false}}, "139805292785312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805292785760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805171900032": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_Pointer", "members": [{"kind": "Variable", "content": {"name": "_type_", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805171900032"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805171766704"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805171776896"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314713632"}, "name": "__setitem__"}}], "typeVars": [{"nodeId": ".1.139805171900032"}], "bases": [{"nodeId": "139805184483296"}, {"nodeId": "139805184482240"}], "isAbstract": false}}, ".1.139805171900032": {"type": "TypeVar", "content": {"varName": "_CT", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805171900032", "variance": "INVARIANT"}}, "139805171766704": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314711840"}, {"nodeId": "139805314712288"}]}}, "139805314711840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900032", "args": [{"nodeId": ".1.139805171900032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805314712288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900032", "args": [{"nodeId": ".1.139805171900032"}]}, {"nodeId": ".1.139805171900032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "arg"]}}, "139805171776896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314712736"}, {"nodeId": "139805314713184"}]}}, "139805314712736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900032", "args": [{"nodeId": ".1.139805171900032"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805314713184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900032", "args": [{"nodeId": ".1.139805171900032"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805314713632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900032", "args": [{"nodeId": ".1.139805171900032"}]}, {"nodeId": "139805481893056"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805184484352": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_CField", "members": [{"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805184484704": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_StructUnionMeta", "members": [{"kind": "Variable", "content": {"name": "_fields_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481889888", "args": [{"nodeId": "139805171766032"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_pack_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_anonymous_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314718112"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805184481888"}], "isAbstract": false}}, "139805171766032": {"type": "Union", "content": {"items": [{"nodeId": "139805171765696"}, {"nodeId": "139805171765920"}]}}, "139805171765696": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805171765920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}, {"nodeId": "139805481893056"}]}}, "139805314718112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184484704"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805184484352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184485408": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "Union", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184485056"}], "isAbstract": false}}, "139805184486112": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "ArgumentError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805193087712": {"type": "Concrete", "content": {"module": "time", "simpleName": "struct_time", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805184111920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_year", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183984800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_mon", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183985248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_mday", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183985472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183985696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_min", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183985920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_sec", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183986144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_wday", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183986368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_yday", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183986592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_isdst", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183986816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_zone", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183987040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_gmtoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183987264"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805184099488"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805184111920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805183984800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184100384"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184100384": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183985248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184100496"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184100496": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183985472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184100608"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184100608": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183985696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184100720"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184100720": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183985920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184100832"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184100832": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183986144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184100944"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184100944": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183986368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184101056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184101056": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183986592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184101168"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184101168": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183986816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184101280"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184101280": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183987040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184101392"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184101392": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183987264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184101504"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184101504": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805184099488": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "139805481893056"}]}}, "139805193088064": {"type": "Protocol", "content": {"module": "time", "simpleName": "_ClockInfo", "members": [{"kind": "Variable", "content": {"name": "adjustable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "implementation", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "monotonic", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["adjustable", "implementation", "monotonic", "resolution"]}}, "139805272043968": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272232496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272232608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301249120"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805272232496": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805272232608": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805301249120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043968"}, {"nodeId": "139805276669024"}, {"nodeId": "139805259382592"}, {"nodeId": "139805259382256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}}, "139805259382592": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805259382256": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805272044320": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301249568"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139805481893056"}], "isAbstract": false}}, "139805301249568": {"type": "Function", "content": {"typeVars": [".0.139805301249568"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805301249568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}}, ".0.139805301249568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272044320"}, "def": "139805301249568", "variance": "INVARIANT"}}, "139805267807392": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301250912"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301251360"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301251808"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["close", "seek", "write"]}}, "139805301250912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267807392"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805301251360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267807392"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805301251808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267807392"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267807744": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301252256"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301252704"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301253152"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["close", "read", "seek"]}}, "139805301252256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267807744"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805301252704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267807744"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805301253152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267807744"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805268517184": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267807392"}, {"nodeId": "139805267807744"}], "protocolMembers": ["close", "read", "seek", "write"]}}, "139805267808096": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301253600"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805301253600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267808096"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255947248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139805255947248": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}]}}, "139805267808448": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301254048"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805301254048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267808448"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255947472"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139805255947472": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805267808800": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301254496"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805301254496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267808800"}, {"nodeId": "139805267807744"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805268518944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139805268518944": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805267807744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309634592"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309635040"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309635488"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309635936"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309636384"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309636832"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309637280"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309637728"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309638176"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309638624"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805267810208"}], "isAbstract": false}}, "139805309634592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}, {"nodeId": "139805267807744"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139805309635040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}}, "139805309635488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}, {"nodeId": "139805255953632"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}}, "139805255953632": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309635936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}, {"nodeId": "139805255953744"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}}, "139805255953744": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309636384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309636832": {"type": "Function", "content": {"typeVars": [".0.139805309636832"], "argTypes": [{"nodeId": ".0.139805309636832"}], "returnType": {"nodeId": ".0.139805309636832"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805309636832": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268518944"}, "def": "139805309636832", "variance": "INVARIANT"}}, "139805309637280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}, {"nodeId": "139805255953968"}, {"nodeId": "139805255954080"}, {"nodeId": "139805255954192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255953968": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255954080": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255954192": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805309637728": {"type": "Function", "content": {"typeVars": [".0.139805309637728"], "argTypes": [{"nodeId": ".0.139805309637728"}], "returnType": {"nodeId": ".0.139805309637728"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805309637728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268518944"}, "def": "139805309637728", "variance": "INVARIANT"}}, "139805309638176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309638624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255285696"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805255285696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805267810208": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310065504"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310065952"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805310065504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810208"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255951504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139805255951504": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}]}}, "139805310065952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810208"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255951728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139805255951728": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805267809152": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301254944"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805301254944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267809152"}, {"nodeId": "139805267807392"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805268518592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139805268518592": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805267807392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310073568"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310074016"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310074464"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309632800"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309633248"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309633696"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309634144"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805267810208"}], "isAbstract": false}}, "139805310073568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518592"}, {"nodeId": "139805267807392"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139805310074016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518592"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}}, "139805310074464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518592"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "139805309632800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309633248": {"type": "Function", "content": {"typeVars": [".0.139805309633248"], "argTypes": [{"nodeId": ".0.139805309633248"}], "returnType": {"nodeId": ".0.139805309633248"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805309633248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268518592"}, "def": "139805309633248", "variance": "INVARIANT"}}, "139805309633696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518592"}, {"nodeId": "139805255953072"}, {"nodeId": "139805255953184"}, {"nodeId": "139805255953296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255953072": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255953184": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255953296": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805309634144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518592"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255285248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805255285248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805267809504": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301255392"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805301255392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267809504"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805267810560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139805267810560": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310066400"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805213958528"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310067296"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310067744"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310068192"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": true}}, "139805310066400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810560"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139805213958528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810560"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139805310067296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805310067744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810560"}], "returnType": {"nodeId": "139805255951840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255951840": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805310068192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810560"}, {"nodeId": "139805255951952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139805255951952": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805267809856": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301255840"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805301255840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267809856"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805267810912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139805268517536": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805214035072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805214031936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213998688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213997792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213998240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213996448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301258976"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}], "isAbstract": false}}, "139805214035072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805255947696"}], "returnType": {"nodeId": "139805267808096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255947696": {"type": "Tuple", "content": {"items": [{"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}]}}, "139805214031936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805255947808"}], "returnType": {"nodeId": "139805267808448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255947808": {"type": "Tuple", "content": {"items": [{"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}]}}, "139805213998688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805255947920"}], "returnType": {"nodeId": "139805267808800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255947920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}]}}, "139805213997792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805255948032"}], "returnType": {"nodeId": "139805267809152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255948032": {"type": "Tuple", "content": {"items": [{"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}]}}, "139805213998240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805255948144"}], "returnType": {"nodeId": "139805267809504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255948144": {"type": "Tuple", "content": {"items": [{"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}]}}, "139805213996448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805255948256"}], "returnType": {"nodeId": "139805267809856"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255948256": {"type": "Tuple", "content": {"items": [{"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}]}}, "139805301258976": {"type": "Function", "content": {"typeVars": [".0.139805301258976"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805255948480"}, {"nodeId": "139805255948592"}, {"nodeId": "139805255948704"}, {"nodeId": "139805255948816"}, {"nodeId": "139805255948928"}, {"nodeId": "139805255949040"}], "returnType": {"nodeId": ".0.139805301258976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name", "_is_text_encoding"]}}, "139805255948480": {"type": "Union", "content": {"items": [{"nodeId": "139805267808800"}, {"nodeId": "N"}]}}, "139805255948592": {"type": "Union", "content": {"items": [{"nodeId": "139805267809152"}, {"nodeId": "N"}]}}, "139805255948704": {"type": "Union", "content": {"items": [{"nodeId": "139805267809504"}, {"nodeId": "N"}]}}, "139805255948816": {"type": "Union", "content": {"items": [{"nodeId": "139805267809856"}, {"nodeId": "N"}]}}, "139805255948928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255949040": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, ".0.139805301258976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805255947024"}, "def": "139805301258976", "variance": "INVARIANT"}}, "139805255947024": {"type": "Tuple", "content": {"items": [{"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}]}}, "139805268517888": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310070880"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805213956736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310071776"}, "name": "encode"}}], "typeVars": [], "bases": [{"nodeId": "139805267810560"}], "isAbstract": true}}, "139805310070880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268517888"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139805213956736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268517888"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805255952624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "139805255952624": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}]}}, "139805310071776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268517888"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139805268518240": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310072224"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805213955616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310073120"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "139805267810912"}], "isAbstract": true}}, "139805310072224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518240"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139805213955616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518240"}, {"nodeId": "139805277011488"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805255952848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "139805255952848": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805310073120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518240"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139805268519296": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268517184"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309639072"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309639520"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309639968"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309640416"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309640864"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309641312"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309641760"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309642208"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309642656"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309643104"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309643552"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309644000"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309644448"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309644896"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309645344"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309645792"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309646240"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309646688"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309647136"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309647584"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309648032"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309648480"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "139805277000928"}], "isAbstract": false}}, "139805309639072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805268517184"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}}, "139805309639520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805309639968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805255954528"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805255954528": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309640416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805255954640"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "139805255954640": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309640864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309641312": {"type": "Function", "content": {"typeVars": [".0.139805309641312"], "argTypes": [{"nodeId": ".0.139805309641312"}], "returnType": {"nodeId": ".0.139805309641312"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805309641312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519296"}, "def": "139805309641312", "variance": "INVARIANT"}}, "139805309641760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "139805309642208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "139805309642656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309643104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "139805309643552": {"type": "Function", "content": {"typeVars": [".0.139805309643552"], "argTypes": [{"nodeId": ".0.139805309643552"}], "returnType": {"nodeId": ".0.139805309643552"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805309643552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519296"}, "def": "139805309643552", "variance": "INVARIANT"}}, "139805309644000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805255954864"}, {"nodeId": "139805255954976"}, {"nodeId": "139805255955088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255954864": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255954976": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255955088": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805309644448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805309644896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309645344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309645792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309646240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309646688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309647136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805255955312"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805255955312": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309647584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309648032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309648480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267811264": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309813024"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309813472"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309813920"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309814368"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309814816"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309815264"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309815712"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309816160"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309816608"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309817056"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309817504"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309817952"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309818400"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309818848"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309819296"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309819744"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309820192"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309820640"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309821088"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309821536"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309821984"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309822432"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "139805277000576"}], "isAbstract": false}}, "139805309813024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805268517184"}, {"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"]}}, "139805309813472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805309813920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805255955424"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805255955424": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309814368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805255955536"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "139805255955536": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309814816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309815264": {"type": "Function", "content": {"typeVars": [".0.139805309815264"], "argTypes": [{"nodeId": ".0.139805309815264"}], "returnType": {"nodeId": ".0.139805309815264"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805309815264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805267811264"}, "def": "139805309815264", "variance": "INVARIANT"}}, "139805309815712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "139805309816160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669376"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "139805309816608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309817056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805309817504": {"type": "Function", "content": {"typeVars": [".0.139805309817504"], "argTypes": [{"nodeId": ".0.139805309817504"}], "returnType": {"nodeId": ".0.139805309817504"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805309817504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805267811264"}, "def": "139805309817504", "variance": "INVARIANT"}}, "139805309817952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805255955872"}, {"nodeId": "139805255955984"}, {"nodeId": "139805255956096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255955872": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255955984": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255956096": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805309818400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "139805309818848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309819296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309819744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309820192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309820640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309821088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805255956208"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805255956208": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309821536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309821984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309822432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272608608": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226532448"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276865280"}], "isAbstract": false}}, "139805226532448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272608608"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272609312": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309828256"}, "name": "load"}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226530432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226529760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226530208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272244032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309568160"}, "name": "matches"}}], "typeVars": [], "bases": [{"nodeId": "139805272608960"}], "isAbstract": false}}, "139805309828256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260223360"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260223360": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805226530432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260223584"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260223584": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805226529760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260223696"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260223696": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805226530208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260223808"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260223808": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805272244032": {"type": "Union", "content": {"items": [{"nodeId": "139805272610720"}, {"nodeId": "N"}]}}, "139805309568160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260223920"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "139805260223920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805272608960": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272242912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272242464"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276234560"}, "name": "_replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276238368"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276232768"}, "name": "_asdict"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276240608"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}], "isAbstract": false}}, "139805272242912": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805272242464": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805276234560": {"type": "Function", "content": {"typeVars": [".-1.139805276234560"], "argTypes": [{"nodeId": ".-1.139805276234560"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".-1.139805276234560"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}}, ".-1.139805276234560": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139805272242688"}, "def": "139805276234560", "variance": "INVARIANT"}}, "139805272242688": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805276238368": {"type": "Function", "content": {"typeVars": [".-1.139805276238368"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".-1.139805276238368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}}, ".-1.139805276238368": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139805272242688"}, "def": "139805276238368", "variance": "INVARIANT"}}, "139805276232768": {"type": "Function", "content": {"typeVars": [".-1.139805276232768"], "argTypes": [{"nodeId": ".-1.139805276232768"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}}, ".-1.139805276232768": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139805272242688"}, "def": "139805276232768", "variance": "INVARIANT"}}, "139805276240608": {"type": "Function", "content": {"typeVars": [".-1.139805276240608"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.139805276240608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["_cls", "iterable"]}}, ".-1.139805276240608": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139805272242688"}, "def": "139805276240608", "variance": "INVARIANT"}}, "139805272610016": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "content": {"name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805226519904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226519456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226519232"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805260222688"}, "items": [{"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "select"}}], "typeVars": [], "bases": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805272609664"}]}], "isAbstract": false}}, "139805226519904": {"type": "Function", "content": {"typeVars": [".0.139805226519904"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805260224256"}]}], "returnType": {"nodeId": ".0.139805226519904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}}, "139805260224256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268567072"}}}, ".0.139805226519904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272610016"}, "def": "139805226519904", "variance": "INVARIANT"}}, "139805226519456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610016"}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805226519232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610016"}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260222688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805309571744"}, {"nodeId": "139805309572192"}]}}, "139805309571744": {"type": "Function", "content": {"typeVars": [".0.139805309571744"], "argTypes": [{"nodeId": ".0.139805309571744"}], "returnType": {"nodeId": ".0.139805309571744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805309571744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272610016"}, "def": "139805309571744", "variance": "INVARIANT"}}, "139805309572192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610016"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805272609664"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "139805268513664": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "content": {"type": {"nodeId": "139805268514016"}}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805226496992"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272614240"}], "isAbstract": true}}, "139805226496992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268513664"}, {"nodeId": "139805268514016"}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": "139805272610720"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}}, "139805268514368": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805226495648"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309582496"}, "name": "invalidate_caches"}}], "typeVars": [], "bases": [{"nodeId": "139805268513664"}], "isAbstract": false}}, "139805226495648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805268514016"}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": "139805272611072"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}}, "139805309582496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268514368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139805193085600": {"type": "Concrete", "content": {"module": "functools", "simpleName": "_lru_cache_wrapper", "members": [{"kind": "Variable", "content": {"name": "__wrapped__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188033888"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305774688"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305775136"}, "name": "cache_info"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305775584"}, "name": "cache_clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305776032"}, "name": "cache_parameters"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305776480"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305776928"}, "name": "__deepcopy__"}}], "typeVars": [{"nodeId": ".1.139805193085600"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805193085600": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193085600", "variance": "INVARIANT"}}, "139805188033888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193085600"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305774688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}, {"nodeId": "139805276998112"}, {"nodeId": "139805276998112"}], "returnType": {"nodeId": ".1.139805193085600"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805305775136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}], "returnType": {"nodeId": "139805187984512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805187984512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805187928944"}}}, "139805187928944": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805187927936"}, {"nodeId": "139805481893056"}]}}, "139805187927936": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805305775584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305776032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}], "returnType": {"nodeId": "139805187984624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805187984624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805305776480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}], "returnType": {"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305776928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805193085952": {"type": "Concrete", "content": {"module": "functools", "simpleName": "partial", "members": [{"kind": "Variable", "content": {"name": "func", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188020864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188021312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188021536"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305799392"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "__self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305799840"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305800288"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805193085952"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805193085952": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193085952", "variance": "INVARIANT"}}, "139805188020864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085952", "args": [{"nodeId": ".1.139805193085952"}]}], "returnType": {"nodeId": "139805188079200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188079200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193085952"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188021312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085952", "args": [{"nodeId": ".1.139805193085952"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188021536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085952", "args": [{"nodeId": ".1.139805193085952"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305799392": {"type": "Function", "content": {"typeVars": [".0.139805305799392"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805188075616"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805305799392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", null, "args", "kwargs"]}}, "139805188075616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193085952"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".0.139805305799392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805193085952", "args": [{"nodeId": ".1.139805193085952"}]}, "def": "139805305799392", "variance": "INVARIANT"}}, "139805305799840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085952", "args": [{"nodeId": ".1.139805193085952"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193085952"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": [null, "args", "kwargs"]}}, "139805305800288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805193086304": {"type": "Concrete", "content": {"module": "functools", "simpleName": "partialmethod", "members": [{"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805187981600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805187983280"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305801632"}, "name": "__get__"}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188023776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305802976"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805193086304"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805193086304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193086304", "variance": "INVARIANT"}}, "139805187981600": {"type": "Union", "content": {"items": [{"nodeId": "139805188033664"}, {"nodeId": "139805187981488"}]}}, "139805188033664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086304"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805187981488": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805187983280": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805305800736"}, {"nodeId": "139805305801184"}]}}, "139805305800736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086304", "args": [{"nodeId": ".1.139805193086304"}]}, {"nodeId": "139805188078976"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "keywords"]}}, "139805188078976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086304"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305801184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086304", "args": [{"nodeId": ".1.139805193086304"}]}, {"nodeId": "139805187986976"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "keywords"]}}, "139805187986976": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805305801632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086304", "args": [{"nodeId": ".1.139805193086304"}]}, {"nodeId": "A"}, {"nodeId": "139805187987536"}], "returnType": {"nodeId": "139805188078528"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls"]}}, "139805187987536": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805188078528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086304"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188023776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086304", "args": [{"nodeId": ".1.139805193086304"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305802976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805193086656": {"type": "Concrete", "content": {"module": "functools", "simpleName": "_SingleDispatchCallable", "members": [{"kind": "Variable", "content": {"name": "registry", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272032352", "args": [{"nodeId": "A"}, {"nodeId": "139805188033216"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305803424"}, "name": "dispatch"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805187984848"}, "items": [{"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "register"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305805216"}, "name": "_clear_cache"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "__self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305805664"}, "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805193086656"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805193086656": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193086656", "variance": "INVARIANT"}}, "139805188033216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305803424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086656", "args": [{"nodeId": ".1.139805193086656"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805188078080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cls"]}}, "139805188078080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805187984848": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805305803872"}, {"nodeId": "139805305804320"}, {"nodeId": "139805305804768"}]}}, "139805305803872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086656", "args": [{"nodeId": ".1.139805193086656"}]}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805188078752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "func"]}}, "139805188078752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805188077632"}], "returnType": {"nodeId": "139805188077408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188077632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188077408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305804320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086656", "args": [{"nodeId": ".1.139805193086656"}]}, {"nodeId": "139805188078304"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805188076960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "func"]}}, "139805188078304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188076960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305804768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086656", "args": [{"nodeId": ".1.139805193086656"}]}, {"nodeId": "0"}, {"nodeId": "139805188077856"}], "returnType": {"nodeId": "139805188076512"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "cls", "func"]}}, "139805188077856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188076512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305805216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086656", "args": [{"nodeId": ".1.139805193086656"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305805664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086656", "args": [{"nodeId": ".1.139805193086656"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": [null, "args", "kwargs"]}}, "139805193087008": {"type": "Concrete", "content": {"module": "functools", "simpleName": "singledispatchmethod", "members": [{"kind": "Variable", "content": {"name": "dispatcher", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805193086656", "args": [{"nodeId": ".1.139805193087008"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188032992"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305806560"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188025120"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805187986528"}, "items": [{"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "register"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305808800"}, "name": "__get__"}}], "typeVars": [{"nodeId": ".1.139805193087008"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805193087008": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193087008", "variance": "INVARIANT"}}, "139805188032992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305806560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087008", "args": [{"nodeId": ".1.139805193087008"}]}, {"nodeId": "139805188076064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, "139805188076064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188025120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087008", "args": [{"nodeId": ".1.139805193087008"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805187986528": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805305807456"}, {"nodeId": "139805305807904"}, {"nodeId": "139805305808352"}]}}, "139805305807456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087008", "args": [{"nodeId": ".1.139805193087008"}]}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805188216576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "method"]}}, "139805188216576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805188216352"}], "returnType": {"nodeId": "139805188216800"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188216352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188216800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305807904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087008", "args": [{"nodeId": ".1.139805193087008"}]}, {"nodeId": "139805188192992"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805188190976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "method"]}}, "139805188192992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188190976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305808352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087008", "args": [{"nodeId": ".1.139805193087008"}]}, {"nodeId": "0"}, {"nodeId": "139805188191872"}], "returnType": {"nodeId": "139805188191648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "cls", "method"]}}, "139805188191872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188191648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305808800": {"type": "Function", "content": {"typeVars": [".-1.139805305808800"], "argTypes": [{"nodeId": "139805193087008", "args": [{"nodeId": ".1.139805193087008"}]}, {"nodeId": ".-1.139805305808800"}, {"nodeId": "139805187990560"}], "returnType": {"nodeId": "139805188192320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls"]}}, ".-1.139805305808800": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805305808800", "variance": "INVARIANT"}}, "139805187990560": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805188192320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805193087360": {"type": "Concrete", "content": {"module": "functools", "simpleName": "cached_property", "members": [{"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188032768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attrname", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805187982832"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305809248"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805187988096"}, "items": [{"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305810592"}, "name": "__set_name__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305811040"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305811488"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805193087360"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805193087360": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193087360", "variance": "INVARIANT"}}, "139805188032768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087360"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805187982832": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805305809248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087360", "args": [{"nodeId": ".1.139805193087360"}]}, {"nodeId": "139805188192096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, "139805188192096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087360"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805187988096": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805305809696"}, {"nodeId": "139805305810144"}]}}, "139805305809696": {"type": "Function", "content": {"typeVars": [".0.139805305809696"], "argTypes": [{"nodeId": ".0.139805305809696"}, {"nodeId": "N"}, {"nodeId": "139805187991120"}], "returnType": {"nodeId": ".0.139805305809696"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "instance", "owner"]}}, ".0.139805305809696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805193087360", "args": [{"nodeId": ".1.139805193087360"}]}, "def": "139805305809696", "variance": "INVARIANT"}}, "139805187991120": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805305810144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087360", "args": [{"nodeId": ".1.139805193087360"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805187991344"}], "returnType": {"nodeId": ".1.139805193087360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "instance", "owner"]}}, "139805187991344": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805305810592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087360", "args": [{"nodeId": ".1.139805193087360"}]}, {"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}}, "139805305811040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087360", "args": [{"nodeId": ".1.139805193087360"}]}, {"nodeId": "139805481881792"}, {"nodeId": ".1.139805193087360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "instance", "value"]}}, "139805305811488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805193084192": {"type": "Concrete", "content": {"module": "numpy.polynomial.polyutils", "simpleName": "RankWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276875136"}], "isAbstract": false}}, "139805193079264": {"type": "Concrete", "content": {"module": "threading", "simpleName": "ThreadError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805193079616": {"type": "Concrete", "content": {"module": "threading", "simpleName": "local", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305905760"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305906208"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305906656"}, "name": "__delattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805305905760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079616"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305906208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079616"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805305906656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079616"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805193079968": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Thread", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ident", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188326336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "daemon", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "daemon", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305907552"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305908000"}, "name": "start"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305908448"}, "name": "run"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305908896"}, "name": "join"}}, {"kind": "Variable", "content": {"name": "native_id", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188325664"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305909792"}, "name": "is_alive"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305910688"}, "name": "getName"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305911136"}, "name": "setName"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305911584"}, "name": "isDaemon"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "daemonic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305912032"}, "name": "setDaemon"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805188326336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}], "returnType": {"nodeId": "139805188791920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188791920": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805305907552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}, {"nodeId": "N"}, {"nodeId": "139805188792144"}, {"nodeId": "139805188792256"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805188792592"}, {"nodeId": "139805188792704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "group", "target", "name", "args", "kwargs", "daemon"]}}, "139805188792144": {"type": "Union", "content": {"items": [{"nodeId": "139805226332480"}, {"nodeId": "N"}]}}, "139805226332480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188792256": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805188792592": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805188792704": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805305908000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305908448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305908896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}, {"nodeId": "139805188792816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "139805188792816": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805188325664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}], "returnType": {"nodeId": "139805188792928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188792928": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805305909792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305910688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305911136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "139805305911584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305912032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "daemonic"]}}, "139805193080320": {"type": "Concrete", "content": {"module": "threading", "simpleName": "_DummyThread", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305912480"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805193079968"}], "isAbstract": false}}, "139805305912480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193080320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805193081024": {"type": "Concrete", "content": {"module": "threading", "simpleName": "_RLock", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292939296"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292939744"}, "name": "release"}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188338656"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292940192"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805292939296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "139805292939744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188338656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "139805292940192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081024"}, {"nodeId": "139805188793376"}, {"nodeId": "139805188793488"}, {"nodeId": "139805188793600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805188793376": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805188793488": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188793600": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805193081376": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Condition", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292940640"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292941088"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292941536"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292941984"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292942432"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292942880"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "predicate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292943328"}, "name": "wait_for"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292943776"}, "name": "notify"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292944224"}, "name": "notify_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292944672"}, "name": "notifyAll"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805292940640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}, {"nodeId": "139805188793712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "lock"]}}, "139805188793712": {"type": "Union", "content": {"items": [{"nodeId": "139805193080672"}, {"nodeId": "139805193081024"}, {"nodeId": "N"}]}}, "139805292941088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805292941536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}, {"nodeId": "139805188793824"}, {"nodeId": "139805188793936"}, {"nodeId": "139805188794048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805188793824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805188793936": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188794048": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805292941984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "139805292942432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292942880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}, {"nodeId": "139805188794160"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "139805188794160": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805292943328": {"type": "Function", "content": {"typeVars": [".-1.139805292943328"], "argTypes": [{"nodeId": "139805193081376"}, {"nodeId": "139805226332704"}, {"nodeId": "139805188794272"}], "returnType": {"nodeId": ".-1.139805292943328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "predicate", "timeout"]}}, "139805226332704": {"type": "Function", "content": {"typeVars": [".-1.139805226332704"], "argTypes": [], "returnType": {"nodeId": ".-1.139805226332704"}, "argKinds": [], "argNames": []}}, ".-1.139805226332704": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805226332704", "variance": "INVARIANT"}}, "139805188794272": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, ".-1.139805292943328": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805292943328", "variance": "INVARIANT"}}, "139805292943776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "139805292944224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292944672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805193081728": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Semaphore", "members": [{"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292945120"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292945568"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292946016"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292946464"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292946912"}, "name": "release"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805292945120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081728"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "139805292945568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081728"}, {"nodeId": "139805188794384"}, {"nodeId": "139805188794496"}, {"nodeId": "139805188794608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805188794384": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805188794496": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188794608": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805292946016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081728"}, {"nodeId": "139805481882144"}, {"nodeId": "139805188794720"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "139805188794720": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805292946464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081728"}, {"nodeId": "139805481882144"}, {"nodeId": "139805188794832"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null]}}, "139805188794832": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805292946912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081728"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "139805193082080": {"type": "Concrete", "content": {"module": "threading", "simpleName": "BoundedSemaphore", "members": [], "typeVars": [], "bases": [{"nodeId": "139805193081728"}], "isAbstract": false}}, "139805193082432": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Event", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292947808"}, "name": "is_set"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292948256"}, "name": "isSet"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292948704"}, "name": "set"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292949152"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292949600"}, "name": "wait"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805292947808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193082432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292948256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193082432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292948704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193082432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292949152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193082432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292949600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193082432"}, {"nodeId": "139805188794944"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "139805188794944": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805193082784": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Timer", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finished", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805193082432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "function", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242519424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "interval", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "interval", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "function", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292950048"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292950496"}, "name": "cancel"}}], "typeVars": [], "bases": [{"nodeId": "139805193079968"}], "isAbstract": false}}, "139805242519424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805292950048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193082784"}, {"nodeId": "139805481893408"}, {"nodeId": "139805226331808"}, {"nodeId": "139805188795280"}, {"nodeId": "139805188795504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "interval", "function", "args", "kwargs"]}}, "139805226331808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188795280": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805188795504": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805292950496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193082784"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805193083136": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Barrier", "members": [{"kind": "Variable", "content": {"name": "parties", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188214560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_waiting", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188215008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "broken", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188215232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parties", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "action", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292952288"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292952736"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292953184"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293052192"}, "name": "abort"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805188214560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193083136"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188215008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193083136"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188215232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193083136"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292952288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193083136"}, {"nodeId": "139805481893056"}, {"nodeId": "139805188795616"}, {"nodeId": "139805188795728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "parties", "action", "timeout"]}}, "139805188795616": {"type": "Union", "content": {"items": [{"nodeId": "139805242594848"}, {"nodeId": "N"}]}}, "139805242594848": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}}, "139805188795728": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805292952736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193083136"}, {"nodeId": "139805188795840"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "139805188795840": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805292953184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193083136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293052192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193083136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805193083488": {"type": "Concrete", "content": {"module": "threading", "simpleName": "BrokenBarrierError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276681696"}], "isAbstract": false}}, "139805167800864": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "_BaseTestCaseContext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293054432"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805293054432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800864"}, {"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test_case"]}}, "139805171908128": {"type": "Concrete", "content": {"module": "warnings", "simpleName": "_OptionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805193078208": {"type": "Concrete", "content": {"module": "json.decoder", "simpleName": "JSONDecodeError", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276015968"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276683456"}], "isAbstract": false}}, "139805276015968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078208"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "msg", "doc", "pos"]}}, "139805193078560": {"type": "Concrete", "content": {"module": "json.decoder", "simpleName": "JSONDecoder", "members": [{"kind": "Variable", "content": {"name": "object_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188399264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parse_float", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188399040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parse_int", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188398816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parse_constant", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188398592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object_pairs_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188398368"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parse_float", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parse_int", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parse_constant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object_pairs_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276016416"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_w", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276016864"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "idx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276017312"}, "name": "raw_decode"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805188399264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188399040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188398816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188398592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188398368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805188676000"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188676000": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}}, "139805276016416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078560"}, {"nodeId": "139805188676224"}, {"nodeId": "139805188676560"}, {"nodeId": "139805188676784"}, {"nodeId": "139805188677008"}, {"nodeId": "139805481882144"}, {"nodeId": "139805188677232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "object_hook", "parse_float", "parse_int", "parse_constant", "strict", "object_pairs_hook"]}}, "139805188676224": {"type": "Union", "content": {"items": [{"nodeId": "139805188398144"}, {"nodeId": "N"}]}}, "139805188398144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188676560": {"type": "Union", "content": {"items": [{"nodeId": "139805188397696"}, {"nodeId": "N"}]}}, "139805188397696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188676784": {"type": "Union", "content": {"items": [{"nodeId": "139805188397920"}, {"nodeId": "N"}]}}, "139805188397920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188677008": {"type": "Union", "content": {"items": [{"nodeId": "139805188395456"}, {"nodeId": "N"}]}}, "139805188395456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188677232": {"type": "Union", "content": {"items": [{"nodeId": "139805188393888"}, {"nodeId": "N"}]}}, "139805188393888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805188677568"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188677568": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}}, "139805276016864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078560"}, {"nodeId": "139805276669024"}, {"nodeId": "139805188395680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "s", "_w"]}}, "139805188395680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805276017312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078560"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805188678352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "s", "idx"]}}, "139805188678352": {"type": "Tuple", "content": {"items": [{"nodeId": "A"}, {"nodeId": "139805481893056"}]}}, "139805193077856": {"type": "Concrete", "content": {"module": "json.encoder", "simpleName": "JSONEncoder", "members": [{"kind": "Variable", "content": {"name": "item_separator", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key_separator", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "skipkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ensure_ascii", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "check_circular", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "allow_nan", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sort_keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188672416"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "skipkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ensure_ascii", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "check_circular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "allow_nan", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort_keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "separators", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276019552"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276020000"}, "name": "default"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276020448"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_one_shot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276020896"}, "name": "iterencode"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805188672416": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805276019552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077856"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805188672192"}, {"nodeId": "139805188672752"}, {"nodeId": "139805188672976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "skipkeys", "ensure_ascii", "check_circular", "allow_nan", "sort_keys", "indent", "separators", "default"]}}, "139805188672192": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805188672752": {"type": "Union", "content": {"items": [{"nodeId": "139805188672640"}, {"nodeId": "N"}]}}, "139805188672640": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805188672976": {"type": "Union", "content": {"items": [{"nodeId": "139805193096544"}, {"nodeId": "N"}]}}, "139805193096544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805276020000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077856"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "o"]}}, "139805276020448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077856"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "o"]}}, "139805276020896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077856"}, {"nodeId": "A"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "o", "_one_shot"]}}, "139805272042560": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805272042912": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805272229696"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263533488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805234815808"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288851360"}, "name": "opengroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288851808"}, "name": "closegroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288852256"}, "name": "checkgroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288852704"}, "name": "checklookbehindgroup"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805272229696": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805263533488": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805234815808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042912"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805288851360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042912"}, {"nodeId": "139805259379792"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139805259379792": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805288851808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042912"}, {"nodeId": "139805481893056"}, {"nodeId": "139805272043264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}}, "139805272043264": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805263536176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263473888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272042912"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288853152"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288854048"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288854496"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288854944"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288855392"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288855840"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288856288"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288856736"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288857184"}, "name": "getwidth"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805263536176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263537408"}}}, "139805263537408": {"type": "Tuple", "content": {"items": [{"nodeId": "139805272044320"}, {"nodeId": "139805263536288"}]}}, "139805263536288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263537184"}}}, "139805263537184": {"type": "Union", "content": {"items": [{"nodeId": "139805263535392"}, {"nodeId": "139805263535952"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805272043264"}]}, {"nodeId": "139805263536848"}, {"nodeId": "139805263537072"}]}}, "139805263535392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276671136", "args": [{"nodeId": "139805272229472"}]}}}, "139805272229472": {"type": "Tuple", "content": {"items": [{"nodeId": "139805272044320"}, {"nodeId": "139805481893056"}]}}, "139805263535952": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268561584"}}}, "139805268561584": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805272043264"}]}]}}, "139805263536848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268561472"}}}, "139805268561472": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805272043264"}, {"nodeId": "139805272043264"}]}}, "139805263537072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263532256"}}}, "139805263532256": {"type": "Tuple", "content": {"items": [{"nodeId": "139805272228240"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805272043264"}]}}, "139805272228240": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805263473888": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805288853152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}, {"nodeId": "139805272042912"}, {"nodeId": "139805259380016"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}}, "139805259380016": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805259379904"}]}, {"nodeId": "N"}]}}, "139805259379904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263537408"}}}, "139805288854048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}}, "139805288854496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805288854944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}, {"nodeId": "139805259380128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805259380128": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276670432"}]}}, "139805288855392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}, {"nodeId": "139805259380240"}], "returnType": {"nodeId": "139805259380464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805259380240": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276670432"}]}}, "139805259380464": {"type": "Union", "content": {"items": [{"nodeId": "139805272043264"}, {"nodeId": "139805259380352"}]}}, "139805259380352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263537408"}}}, "139805288855840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}, {"nodeId": "139805259380576"}, {"nodeId": "139805259380688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805259380576": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276670432"}]}}, "139805259380688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263537408"}}}, "139805288856288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259380800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}}, "139805259380800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263537408"}}}, "139805288856736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}, {"nodeId": "139805259380912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}}, "139805259380912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263537408"}}}, "139805288857184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}], "returnType": {"nodeId": "139805259381136"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259381136": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805288852256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042912"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}}, "139805288852704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042912"}, {"nodeId": "139805481893056"}, {"nodeId": "139805272043616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}}, "139805272043616": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "content": {"name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263537520"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289087264"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289087712"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289088160"}, "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289088608"}, "name": "getwhile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289089056"}, "name": "getuntil"}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805234811104"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289090400"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289090848"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289091296"}, "name": "error"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805263537520": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805289087264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "139805289087712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}}, "139805289088160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}], "returnType": {"nodeId": "139805259381360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259381360": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805289088608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}}, "139805289089056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}}, "139805234811104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805289090400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805289090848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}}, "139805289091296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805272043968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}}, "139805268036416": {"type": "Concrete", "content": {"module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289096672"}, "name": "size"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805289096672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268036416"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272608256": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289486304"}, "name": "joinpath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289486752"}, "name": "parent"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289487200"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289487648"}, "name": "__truediv__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}}, "139805289486304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272608256"}], "returnType": {"nodeId": "139805272608256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805289486752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272608256"}], "returnType": {"nodeId": "139805272608256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805289487200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272608256"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805289487648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272608256"}], "returnType": {"nodeId": "139805272608256"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805272619872": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272618816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263542000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268571552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805267642848"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289488992"}, "name": "is_multipart"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289489440"}, "name": "set_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289489888"}, "name": "get_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289490336"}, "name": "attach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289490784"}, "name": "get_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289491232"}, "name": "set_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289491680"}, "name": "set_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289492128"}, "name": "get_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289492576"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289493024"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289493472"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289493920"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289494368"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289494816"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289495264"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289495712"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289496160"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255224224"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255229040"}, "items": [{"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284370464"}, "name": "add_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284370912"}, "name": "replace_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284371360"}, "name": "get_content_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284371808"}, "name": "get_content_maintype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284372256"}, "name": "get_content_subtype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284372704"}, "name": "get_default_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284373152"}, "name": "set_default_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255232512"}, "items": [{"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_params"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255233072"}, "items": [{"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284375392"}, "name": "del_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284375840"}, "name": "set_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255233856"}, "items": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_filename"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255235424"}, "items": [{"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_boundary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284378080"}, "name": "set_boundary"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255235312"}, "items": [{"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_content_charset"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255235536"}, "items": [{"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_charsets"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284380320"}, "name": "walk"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284380768"}, "name": "get_content_disposition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284381216"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284381664"}, "name": "as_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284382112"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284382560"}, "name": "set_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284383008"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284383456"}, "name": "set_raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284383904"}, "name": "raw_items"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805272618816": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272707632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272707968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280221024"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280221472"}, "name": "clone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280221920"}, "name": "handle_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280222368"}, "name": "register_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280222816"}, "name": "header_max_count"}}, {"kind": "Variable", "content": {"name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222279808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222279360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222279136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222278912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222276896"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": true}}, "139805272707632": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805272707968": {"type": "Union", "content": {"items": [{"nodeId": "139805276237696"}, {"nodeId": "N"}]}}, "139805276237696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}], "returnType": {"nodeId": "139805272619872"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805280221024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805255228816"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805255228928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory"]}}, "139805255228816": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255228928": {"type": "Union", "content": {"items": [{"nodeId": "139805255270688"}, {"nodeId": "N"}]}}, "139805255270688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}], "returnType": {"nodeId": "139805272619872"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805280221472": {"type": "Function", "content": {"typeVars": [".0.139805280221472"], "argTypes": [{"nodeId": ".0.139805280221472"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805280221472"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}}, ".0.139805280221472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618816"}, "def": "139805280221472", "variance": "INVARIANT"}}, "139805280221920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805272619872"}, {"nodeId": "139805267642848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "139805267642848": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280219456"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276683456"}], "isAbstract": false}}, "139805280219456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267642848"}, {"nodeId": "139805255439008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}}, "139805255439008": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280222368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805272619872"}, {"nodeId": "139805267642848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "139805280222816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255229264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "139805255229264": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805222279808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805255229488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "139805255229488": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805222279360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255229712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805255229712": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805222279136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805222278912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805222276896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805263542000": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268571552": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805289488992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805289489440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}}, "139805289489888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805255231056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255231056": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805289490336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805272619872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}}, "139805289490784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805255231168"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}}, "139805255231168": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805289491232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805255231392"}, {"nodeId": "139805255231616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}}, "139805255231392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805272707856"}}}, "139805272707856": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805272619872"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, "139805255231616": {"type": "Union", "content": {"items": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805267650240": {"type": "Concrete", "content": {"module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272709760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272709872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272709984"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280210720"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280211168"}, "name": "get_body_encoding"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280211616"}, "name": "get_output_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280212064"}, "name": "header_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280212512"}, "name": "header_encode_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280212960"}, "name": "body_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280213408"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280213856"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805272709760": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805272709872": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805272709984": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280210720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}}, "139805280211168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280211616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}], "returnType": {"nodeId": "139805255440576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255440576": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280212064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "139805280212512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481886368", "args": [{"nodeId": "139805481893056"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}}, "139805280212960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "139805280213408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805280213856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805289491680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805255231504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}}, "139805255231504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268571328"}}}, "139805268571328": {"type": "Union", "content": {"items": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805289492128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805255231728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255231728": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268571328"}}}, "139805289492576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805289493024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805289493472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805289493920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255231840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255231840": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805289494368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255231952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805255231952": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805289494816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805289495264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805289495712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805255232064"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255232064": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805289496160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805255232400"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255232400": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805255232176"}]}}, "139805255232176": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805255224224": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284368672"}, {"nodeId": "139805284369120"}]}}, "139805284368672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805255232736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "139805255232736": {"type": "Union", "content": {"items": [{"nodeId": "139805255232624"}, {"nodeId": "N"}]}}, "139805255232624": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805284369120": {"type": "Function", "content": {"typeVars": [".-1.139805284369120"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": ".-1.139805284369120"}], "returnType": {"nodeId": "139805255232960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.139805284369120": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284369120", "variance": "INVARIANT"}}, "139805255232960": {"type": "Union", "content": {"items": [{"nodeId": "139805255232848"}, {"nodeId": ".-1.139805284369120"}]}}, "139805255232848": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805255229040": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284369568"}, {"nodeId": "139805284370016"}]}}, "139805284369568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805255233296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "139805255233296": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805255233184"}]}, {"nodeId": "N"}]}}, "139805255233184": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805284370016": {"type": "Function", "content": {"typeVars": [".-1.139805284370016"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": ".-1.139805284370016"}], "returnType": {"nodeId": "139805255233520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.139805284370016": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284370016", "variance": "INVARIANT"}}, "139805255233520": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805255233408"}]}, {"nodeId": ".-1.139805284370016"}]}}, "139805255233408": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805284370464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255233632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}}, "139805255233632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805272711104"}}}, "139805272711104": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}, {"nodeId": "139805272711328"}]}}, "139805272711328": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272710880"}, {"nodeId": "139805276669024"}]}}, "139805272710880": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284370912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255233744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}}, "139805255233744": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805284371360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284371808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284372256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284372704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284373152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}}, "139805255232512": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284373600"}, {"nodeId": "139805284374048"}]}}, "139805284373600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805255234192"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, "139805255234192": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805255234080"}]}, {"nodeId": "N"}]}}, "139805255234080": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805284374048": {"type": "Function", "content": {"typeVars": [".-1.139805284374048"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": ".-1.139805284374048"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805255234528"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, ".-1.139805284374048": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284374048", "variance": "INVARIANT"}}, "139805255234528": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805255234416"}]}, {"nodeId": ".-1.139805284374048"}]}}, "139805255234416": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805255233072": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284374496"}, {"nodeId": "139805284374944"}]}}, "139805284374496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805255234864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, "139805255234864": {"type": "Union", "content": {"items": [{"nodeId": "139805255234752"}, {"nodeId": "N"}]}}, "139805255234752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805272710432"}}}, "139805272710432": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272709424"}]}}, "139805272709424": {"type": "Tuple", "content": {"items": [{"nodeId": "139805272710656"}, {"nodeId": "139805272710544"}, {"nodeId": "139805276669024"}]}}, "139805272710656": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805272710544": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284374944": {"type": "Function", "content": {"typeVars": [".-1.139805284374944"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": ".-1.139805284374944"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805255235200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, ".-1.139805284374944": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284374944", "variance": "INVARIANT"}}, "139805255235200": {"type": "Union", "content": {"items": [{"nodeId": "139805255234640"}, {"nodeId": ".-1.139805284374944"}]}}, "139805255234640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805272710432"}}}, "139805284375392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}}, "139805284375840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}}, "139805255233856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284376288"}, {"nodeId": "139805284376736"}]}}, "139805284376288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805255234976"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "139805255234976": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284376736": {"type": "Function", "content": {"typeVars": [".-1.139805284376736"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": ".-1.139805284376736"}], "returnType": {"nodeId": "139805255235088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139805284376736": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284376736", "variance": "INVARIANT"}}, "139805255235088": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": ".-1.139805284376736"}]}}, "139805255235424": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284377184"}, {"nodeId": "139805284377632"}]}}, "139805284377184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805255235648"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "139805255235648": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284377632": {"type": "Function", "content": {"typeVars": [".-1.139805284377632"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": ".-1.139805284377632"}], "returnType": {"nodeId": "139805255235760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139805284377632": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284377632", "variance": "INVARIANT"}}, "139805255235760": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": ".-1.139805284377632"}]}}, "139805284378080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}}, "139805255235312": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284378528"}, {"nodeId": "139805284378976"}]}}, "139805284378528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805255235984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255235984": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284378976": {"type": "Function", "content": {"typeVars": [".-1.139805284378976"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": ".-1.139805284378976"}], "returnType": {"nodeId": "139805255236096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139805284378976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284378976", "variance": "INVARIANT"}}, "139805255236096": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": ".-1.139805284378976"}]}}, "139805255235536": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284379424"}, {"nodeId": "139805284379872"}]}}, "139805284379424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805255236320"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "139805255236320": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284379872": {"type": "Function", "content": {"typeVars": [".-1.139805284379872"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": ".-1.139805284379872"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805255236432"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139805284379872": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284379872", "variance": "INVARIANT"}}, "139805255236432": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": ".-1.139805284379872"}]}}, "139805284380320": {"type": "Function", "content": {"typeVars": [".0.139805284380320"], "argTypes": [{"nodeId": ".0.139805284380320"}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".0.139805284380320"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805284380320": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272619872"}, "def": "139805284380320", "variance": "INVARIANT"}}, "139805284380768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805255236656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255236656": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284381216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805255236768"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "139805255236768": {"type": "Union", "content": {"items": [{"nodeId": "139805272618816"}, {"nodeId": "N"}]}}, "139805284381664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805481882144"}, {"nodeId": "139805255236880"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}}, "139805255236880": {"type": "Union", "content": {"items": [{"nodeId": "139805272618816"}, {"nodeId": "N"}]}}, "139805284382112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284382560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805255236992"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "value", "header", "requote", "charset", "language", "replace"]}}, "139805255236992": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284383008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805272618816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "139805284383456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255237104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805255237104": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805284383904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805255237440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255237440": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805255237216"}]}}, "139805255237216": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805272620224": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284384352"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284499744"}, "name": "get_body"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284500192"}, "name": "iter_attachments"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284500640"}, "name": "iter_parts"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284501088"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284501536"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284501984"}, "name": "make_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284502432"}, "name": "make_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284502880"}, "name": "make_mixed"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284503328"}, "name": "add_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284503776"}, "name": "add_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284504224"}, "name": "add_attachment"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284504672"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284505120"}, "name": "clear_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284505568"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284506016"}, "name": "is_attachment"}}], "typeVars": [], "bases": [{"nodeId": "139805272619872"}], "isAbstract": false}}, "139805284384352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "139805255434304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "139805255434304": {"type": "Union", "content": {"items": [{"nodeId": "139805272618816"}, {"nodeId": "N"}]}}, "139805284499744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805255434416"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}}, "139805255434416": {"type": "Union", "content": {"items": [{"nodeId": "139805272619872"}, {"nodeId": "N"}]}}, "139805284500192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805272619872"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284500640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805272619872"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284501088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "A"}, {"nodeId": "139805255434640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139805255434640": {"type": "Union", "content": {"items": [{"nodeId": "139805267649888"}, {"nodeId": "N"}]}}, "139805267649888": {"type": "Concrete", "content": {"module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280216544"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280216992"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280217440"}, "name": "add_get_handler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280217888"}, "name": "add_set_handler"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805280216544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267649888"}, {"nodeId": "139805272619872"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}}, "139805280216992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267649888"}, {"nodeId": "139805272619872"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "obj", "args", "kw"]}}, "139805280217440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267649888"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255272480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}}, "139805255272480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805280217888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267649888"}, {"nodeId": "139805481892352"}, {"nodeId": "139805255272256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}}, "139805255272256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805284501536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "A"}, {"nodeId": "139805255435088"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139805255435088": {"type": "Union", "content": {"items": [{"nodeId": "139805267649888"}, {"nodeId": "N"}]}}, "139805284501984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "139805255435312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "139805255435312": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284502432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "139805255435424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "139805255435424": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284502880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "139805255435536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "139805255435536": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284503328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "A"}, {"nodeId": "139805255435760"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139805255435760": {"type": "Union", "content": {"items": [{"nodeId": "139805267649888"}, {"nodeId": "N"}]}}, "139805284503776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "A"}, {"nodeId": "139805255436096"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139805255436096": {"type": "Union", "content": {"items": [{"nodeId": "139805267649888"}, {"nodeId": "N"}]}}, "139805284504224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "A"}, {"nodeId": "139805255436432"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139805255436432": {"type": "Union", "content": {"items": [{"nodeId": "139805267649888"}, {"nodeId": "N"}]}}, "139805284504672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284505120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284505568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "139805481882144"}, {"nodeId": "139805255436656"}, {"nodeId": "139805255436768"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "139805255436656": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255436768": {"type": "Union", "content": {"items": [{"nodeId": "139805272618816"}, {"nodeId": "N"}]}}, "139805284506016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272620576": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "139805272620224"}], "isAbstract": false}}, "139805268520352": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268519648"}], "isAbstract": false}}, "139805268521056": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268520704"}, {"nodeId": "139805268520000"}], "isAbstract": false}}, "139805268521408": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268520704"}, {"nodeId": "139805268520352"}], "isAbstract": false}}, "139805171901792": {"type": "Concrete", "content": {"module": "numpy.compat.py3k", "simpleName": "contextlib_nullcontext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280348864"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280349136"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280349408"}, "name": "__exit__"}}, {"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805280348864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901792"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}}, "139805280349136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805280349408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901792"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139805193078912": {"type": "Concrete", "content": {"module": "_thread", "simpleName": "LockType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285012576"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285350336"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285013472"}, "name": "locked"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285348992"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285014368"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805285012576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078912"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "139805285350336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805285013472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078912"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805285348992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078912"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805285014368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078912"}, {"nodeId": "139805188788112"}, {"nodeId": "139805188788000"}, {"nodeId": "139805188788336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805188788112": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805188788000": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188788336": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805193083840": {"type": "Concrete", "content": {"module": "_thread", "simpleName": "_ExceptHookArgs", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188799088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805221977472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188720000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_traceback", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188724704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "thread", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188724256"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805188685072"}]}], "isAbstract": false}}, "139805188799088": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805221977472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805188789232"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188789232": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805188788896"}, {"nodeId": "139805188789008"}, {"nodeId": "139805188789120"}]}}, "139805188788896": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188789008": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805188789120": {"type": "Union", "content": {"items": [{"nodeId": "139805193079968"}, {"nodeId": "N"}]}}, "139805188720000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805188789680"}], "returnType": {"nodeId": "139805188789792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188789680": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805188789344"}, {"nodeId": "139805188789456"}, {"nodeId": "139805188789568"}]}}, "139805188789344": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188789456": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805188789568": {"type": "Union", "content": {"items": [{"nodeId": "139805193079968"}, {"nodeId": "N"}]}}, "139805188789792": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188724704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805188790240"}], "returnType": {"nodeId": "139805188790352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188790240": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805188789904"}, {"nodeId": "139805188790016"}, {"nodeId": "139805188790128"}]}}, "139805188789904": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188790016": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805188790128": {"type": "Union", "content": {"items": [{"nodeId": "139805193079968"}, {"nodeId": "N"}]}}, "139805188790352": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805188724256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805188790800"}], "returnType": {"nodeId": "139805188790912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188790800": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805188790464"}, {"nodeId": "139805188790576"}, {"nodeId": "139805188790688"}]}}, "139805188790464": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188790576": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805188790688": {"type": "Union", "content": {"items": [{"nodeId": "139805193079968"}, {"nodeId": "N"}]}}, "139805188790912": {"type": "Union", "content": {"items": [{"nodeId": "139805193079968"}, {"nodeId": "N"}]}}, "139805188685072": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276675712"}, {"nodeId": "139805272037280"}, {"nodeId": "139805193079968"}]}}, "139805171903904": {"type": "Concrete", "content": {"module": "logging", "simpleName": "BufferingFormatter", "members": [{"kind": "Variable", "content": {"name": "linefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171903552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280693920"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "records", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280694368"}, "name": "formatHeader"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "records", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280694816"}, "name": "formatFooter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "records", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280695264"}, "name": "format"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805280693920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903904"}, {"nodeId": "139805166977648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "linefmt"]}}, "139805166977648": {"type": "Union", "content": {"items": [{"nodeId": "139805171903552"}, {"nodeId": "N"}]}}, "139805280694368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903904"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805171904608"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "records"]}}, "139805280694816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903904"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805171904608"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "records"]}}, "139805280695264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903904"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805171904608"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "records"]}}, "139805171907776": {"type": "Concrete", "content": {"module": "logging", "simpleName": "LoggerAdapter", "members": [{"kind": "Variable", "content": {"name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805171907776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171902496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176259728"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280697952"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280862944"}, "name": "process"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280863392"}, "name": "debug"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280863840"}, "name": "info"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280864288"}, "name": "warning"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280864736"}, "name": "warn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280865184"}, "name": "error"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280865632"}, "name": "exception"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280866080"}, "name": "critical"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280866528"}, "name": "log"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280870560"}, "name": "isEnabledFor"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280871008"}, "name": "getEffectiveLevel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280871456"}, "name": "setLevel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280871904"}, "name": "hasHandlers"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280872352"}, "name": "_log"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805167147648"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805171907776"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805171907776": {"type": "TypeVar", "content": {"varName": "_L", "values": [], "upperBound": {"nodeId": "139805176257376"}, "def": "139805171907776", "variance": "INVARIANT"}}, "139805176257376": {"type": "Union", "content": {"items": [{"nodeId": "139805171902848"}, {"nodeId": "139805171907776", "args": [{"nodeId": "A"}]}]}}, "139805176259728": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280697952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": ".1.139805171907776"}, {"nodeId": "139805166978544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "logger", "extra"]}}, "139805166978544": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280862944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "A"}, {"nodeId": "139805481891648", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "139805166979104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "msg", "kwargs"]}}, "139805166979104": {"type": "Tuple", "content": {"items": [{"nodeId": "A"}, {"nodeId": "139805481891648", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805280863392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166979776"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166979216"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166979776": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805166979328"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805166979328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166979216": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280863840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166980112"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166979440"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166980112": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805166979664"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805166979664": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166979440": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280864288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166980448"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166979552"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166980448": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805166980000"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805166980000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166979552": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280864736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166980784"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166979888"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166980784": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805166980336"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805166980336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166979888": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280865184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166981120"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166980224"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166981120": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805166980672"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805166980672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166980224": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280865632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166980560"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166981008"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166980560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251216"}}}, "139805166981008": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280866080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166981680"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166980896"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166981680": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805166981456"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805166981456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166980896": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280866528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166982016"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166981344"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "level", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166982016": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805166981232"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805166981232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166981344": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280870560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "139805280871008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280871456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805166981568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "139805166981568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252112"}}}, "139805280871904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280872352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166981904"}, {"nodeId": "139805166982128"}, {"nodeId": "139805166982240"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "level", "msg", "args", "exc_info", "extra", "stack_info"]}}, "139805166981904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252000"}}}, "139805166982128": {"type": "Union", "content": {"items": [{"nodeId": "139805166981792"}, {"nodeId": "N"}]}}, "139805166981792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251216"}}}, "139805166982240": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805167147648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805171904960": {"type": "Concrete", "content": {"module": "logging", "simpleName": "StreamHandler", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805171904960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805176260400"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281101728"}, "name": "setStream"}}], "typeVars": [{"nodeId": ".1.139805171904960"}], "bases": [{"nodeId": "139805171903200"}], "isAbstract": false}}, ".1.139805171904960": {"type": "TypeVar", "content": {"varName": "_StreamT", "values": [], "upperBound": {"nodeId": "139805268033952", "args": [{"nodeId": "139805276669024"}]}, "def": "139805171904960", "variance": "INVARIANT"}}, "139805176260400": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805281100832"}, {"nodeId": "139805281101280"}]}}, "139805281100832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904960", "args": [{"nodeId": "139805277000928"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "stream"]}}, "139805281101280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904960", "args": [{"nodeId": ".1.139805171904960"}]}, {"nodeId": ".1.139805171904960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stream"]}}, "139805281101728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904960", "args": [{"nodeId": ".1.139805171904960"}]}, {"nodeId": ".1.139805171904960"}], "returnType": {"nodeId": "139805166986944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stream"]}}, "139805166986944": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805171904960"}, {"nodeId": "N"}]}}, "139805171905312": {"type": "Concrete", "content": {"module": "logging", "simpleName": "FileHandler", "members": [{"kind": "Variable", "content": {"name": "baseFilename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176259952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "delay", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176260288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delay", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281102624"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281103520"}, "name": "_open"}}], "typeVars": [], "bases": [{"nodeId": "139805171904960", "args": [{"nodeId": "139805272607200"}]}], "isAbstract": false}}, "139805176259952": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176260288": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805281102624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171905312"}, {"nodeId": "139805166987056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805166987168"}, {"nodeId": "139805481882144"}, {"nodeId": "139805166987280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "filename", "mode", "encoding", "delay", "errors"]}}, "139805166987056": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805166987168": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805166987280": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805281103520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171905312"}], "returnType": {"nodeId": "139805272607200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805171905664": {"type": "Concrete", "content": {"module": "logging", "simpleName": "NullHandler", "members": [], "typeVars": [], "bases": [{"nodeId": "139805171903200"}], "isAbstract": false}}, "139805171907072": {"type": "Concrete", "content": {"module": "logging", "simpleName": "StrFormatStyle", "members": [{"kind": "Variable", "content": {"name": "fmt_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "field_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805171906720"}], "isAbstract": false}}, "139805171907424": {"type": "Concrete", "content": {"module": "logging", "simpleName": "StringTemplateStyle", "members": [{"kind": "Variable", "content": {"name": "_tpl", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805193076800"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805171906720"}], "isAbstract": false}}, "139805193076800": {"type": "Concrete", "content": {"module": "string", "simpleName": "Template", "members": [{"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "delimiter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "idpattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "braceidpattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805192900496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268510144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285205152"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285205600"}, "name": "substitute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285206048"}, "name": "safe_substitute"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805192900496": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805285205152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193076800"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "139805285205600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193076800"}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwds"]}}, "139805285206048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193076800"}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwds"]}}, "139805267640736": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805267641088": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267640736"}], "isAbstract": false}}, "139805267641440": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267641088"}], "isAbstract": false}}, "139805267641792": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267641088"}], "isAbstract": false}}, "139805267642144": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267640736"}, {"nodeId": "139805276683104"}], "isAbstract": false}}, "139805267642496": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267640736"}], "isAbstract": false}}, "139805267643200": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267643552": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267643904": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267644256": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267644608": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267644960": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267645312": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267645664": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267646016": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267646368": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267646720": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267647072": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267647424": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267647776": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267647424"}], "isAbstract": false}}, "139805267648128": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267647424"}], "isAbstract": false}}, "139805267648480": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280219904"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805267647424"}], "isAbstract": false}}, "139805280219904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267648480"}, {"nodeId": "139805255439120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}}, "139805255439120": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805267648832": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267647424"}], "isAbstract": false}}, "139805267649184": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267647424"}], "isAbstract": false}}, "139805267649536": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267647424"}], "isAbstract": false}}, "139805272619168": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285337568"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285338016"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285338464"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285338912"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285339360"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "139805272618816"}], "isAbstract": false}}, "139805285337568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619168"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805255229936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "139805255229936": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805285338016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619168"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255230160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805255230160": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805285338464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619168"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255230272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805255230272": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805267640384"}]}}, "139805267640384": {"type": "Concrete", "content": {"module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285213216"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285213664"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285214112"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285214560"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285215008"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805285213216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267640384"}, {"nodeId": "139805255436880"}, {"nodeId": "139805255436992"}, {"nodeId": "139805255437104"}, {"nodeId": "139805255437216"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "maxlinelen", "header_name", "continuation_ws", "errors"]}}, "139805255436880": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255436992": {"type": "Union", "content": {"items": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255437104": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255437216": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805285213664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267640384"}, {"nodeId": "139805255437328"}, {"nodeId": "139805255437440"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}}, "139805255437328": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}, {"nodeId": "139805276669024"}]}}, "139805255437440": {"type": "Union", "content": {"items": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805285214112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267640384"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255437552"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}}, "139805255437552": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805285214560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267640384"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805285215008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267640384"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805285338912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619168"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805285339360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619168"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805272619520": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276229184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805267649888"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285339808"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285340256"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285340704"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285341152"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285341600"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285342048"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "139805272618816"}], "isAbstract": false}}, "139805276229184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805285339808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619520"}, {"nodeId": "139805255230384"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805255230496"}, {"nodeId": "139805481882144"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255273600"}, {"nodeId": "139805267649888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory", "utf8", "refold_source", "header_factory", "content_manager"]}}, "139805255230384": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255230496": {"type": "Union", "content": {"items": [{"nodeId": "139805255273376"}, {"nodeId": "N"}]}}, "139805255273376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}], "returnType": {"nodeId": "139805272619872"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805255273600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805285340256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619520"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805255230720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "139805255230720": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805285340704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619520"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255230944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805255230944": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805285341152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619520"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805285341600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619520"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805285342048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619520"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805193077504": {"type": "Concrete", "content": {"module": "textwrap", "simpleName": "TextWrapper", "members": [{"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "initial_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subsequent_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "expand_tabs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "replace_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fix_sentence_endings", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "drop_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "break_long_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "break_on_hyphens", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805192907440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "placeholder", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sentence_end_re", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "wordsep_re", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "wordsep_simple_re", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "whitespace_trans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "unicode_whitespace_trans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "uspace", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subsequent_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand_tabs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fix_sentence_endings", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "break_long_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "drop_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "break_on_hyphens", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "placeholder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285344512"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285344960"}, "name": "_munge_whitespace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285345408"}, "name": "_split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chunks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285345856"}, "name": "_fix_sentence_endings"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reversed_chunks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cur_line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cur_len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285346304"}, "name": "_handle_long_word"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chunks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285346752"}, "name": "_wrap_chunks"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285347200"}, "name": "_split_chunks"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285347648"}, "name": "wrap"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285348096"}, "name": "fill"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805192907440": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805285344512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805192908224"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "width", "initial_indent", "subsequent_indent", "expand_tabs", "replace_whitespace", "fix_sentence_endings", "break_long_words", "drop_whitespace", "break_on_hyphens", "tabsize", "max_lines", "placeholder"]}}, "139805192908224": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805285344960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}}, "139805285345408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}}, "139805285345856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "chunks"]}}, "139805285346304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "reversed_chunks", "cur_line", "cur_len", "width"]}}, "139805285346752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "chunks"]}}, "139805285347200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}}, "139805285347648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}}, "139805285348096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}}, "139805193077152": {"type": "Concrete", "content": {"module": "string", "simpleName": "Formatter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805192900720"}, "items": [{"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "format"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805192900832"}, "items": [{"kind": "Variable", "content": {"name": "vformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "vformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "vformat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "used_args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "recursion_depth", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "auto_arg_index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285209184"}, "name": "_vformat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285209632"}, "name": "parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "field_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285210080"}, "name": "get_field"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285210528"}, "name": "get_value"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "used_args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285210976"}, "name": "check_unused_args"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285211424"}, "name": "format_field"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285211872"}, "name": "convert_field"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805192900720": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805285207392"}, {"nodeId": "139805285207840"}]}}, "139805285207392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}}, "139805285207840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}}, "139805192900832": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805285208288"}, {"nodeId": "139805285208736"}]}}, "139805285208288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "format_string", "args", "kwargs"]}}, "139805285208736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "format_string", "args", "kwargs"]}}, "139805285209184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "139805277003040", "args": [{"nodeId": "139805192901952"}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805192902176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format_string", "args", "kwargs", "used_args", "recursion_depth", "auto_arg_index"]}}, "139805192901952": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805192902176": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805285209632": {"type": "Function", "content": {"typeVars": [".-1.139805285209632"], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": ".-1.139805285209632"}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": "139805192902736"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_string"]}}, ".-1.139805285209632": {"type": "TypeVar", "content": {"varName": "StrOrLiteralStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805285209632", "variance": "INVARIANT"}}, "139805192902736": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139805285209632"}, {"nodeId": "139805192902288"}, {"nodeId": "139805192902400"}, {"nodeId": "139805192902512"}]}}, "139805192902288": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805285209632"}, {"nodeId": "N"}]}}, "139805192902400": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805285209632"}, {"nodeId": "N"}]}}, "139805192902512": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805285209632"}, {"nodeId": "N"}]}}, "139805285210080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "field_name", "args", "kwargs"]}}, "139805285210528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805192903184"}, {"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "args", "kwargs"]}}, "139805192903184": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805285210976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805277003040", "args": [{"nodeId": "139805192903632"}]}, {"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "used_args", "args", "kwargs"]}}, "139805192903632": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805285211424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "A"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "value", "format_spec"]}}, "139805285211872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "A"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "value", "conversion"]}}, "139805268522464": {"type": "Protocol", "content": {"module": "pickle", "simpleName": "_ReadableFileobj", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285217248"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285217696"}, "name": "readline"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["read", "readline"]}}, "139805285217248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522464"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805285217696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522464"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805268522816": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "PickleBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285218144"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285218592"}, "name": "raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285219040"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285219488"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285219936"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805285218144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522816"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "buffer"]}}, "139805285218592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522816"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805285219040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805285219488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522816"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805285219936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522816"}, {"nodeId": "139805276670080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805268523168": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "PickleError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805268523520": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "PicklingError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268523168"}], "isAbstract": false}}, "139805268523872": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "UnpicklingError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268523168"}], "isAbstract": false}}, "139805268524224": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "Pickler", "members": [{"kind": "Variable", "content": {"name": "fast", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dispatch_table", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481891296", "args": [{"nodeId": "139805481892352"}, {"nodeId": "139805251663264"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dispatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481892352"}, {"nodeId": "139805196726816"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fix_imports", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276294944"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276295392"}, "name": "reducer_override"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276296288"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276296736"}, "name": "clear_memo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276297184"}, "name": "persistent_id"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805251663264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "139805197134400"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805197134400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805197139664"}}}, "139805197139664": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805197133392"}, {"nodeId": "139805197137536"}, {"nodeId": "139805197138432"}, {"nodeId": "139805197139552"}]}}, "139805197133392": {"type": "Tuple", "content": {"items": [{"nodeId": "139805197108160"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}]}}, "139805197108160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805197137536": {"type": "Tuple", "content": {"items": [{"nodeId": "139805238441824"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}]}}, "139805238441824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805197138432": {"type": "Tuple", "content": {"items": [{"nodeId": "139805197002208"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "139805197138320"}]}}, "139805197002208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805197138320": {"type": "Union", "content": {"items": [{"nodeId": "139805481886368", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805197139552": {"type": "Tuple", "content": {"items": [{"nodeId": "139805196997056"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "139805197139216"}, {"nodeId": "139805197139440"}]}}, "139805196997056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805197139216": {"type": "Union", "content": {"items": [{"nodeId": "139805481886368", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805197139440": {"type": "Union", "content": {"items": [{"nodeId": "139805481886368", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805196726816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524576"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805268524576": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "Unpickler", "members": [{"kind": "Variable", "content": {"name": "dispatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": "139805196994816"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fix_imports", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276297632"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276298528"}, "name": "load"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__module_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__global_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276298976"}, "name": "find_class"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276299424"}, "name": "persistent_load"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805196994816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805276297632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524576"}, {"nodeId": "139805268522464"}, {"nodeId": "139805481882144"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805192635552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "file", "fix_imports", "encoding", "errors", "buffers"]}}, "139805192635552": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805276298528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524576"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276298976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524576"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805276299424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524576"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pid"]}}, "139805276294944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524224"}, {"nodeId": "139805268033952", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805192634432"}, {"nodeId": "139805481882144"}, {"nodeId": "139805192635776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "file", "protocol", "fix_imports", "buffer_callback"]}}, "139805192634432": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805192635776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805272239776"}}}, "139805272239776": {"type": "Union", "content": {"items": [{"nodeId": "139805196465792"}, {"nodeId": "N"}]}}, "139805196465792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522816"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805276295392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524224"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805276296288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524224"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276296736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276297184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524224"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805100089840": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805104966336"}, {"nodeId": "139805104963872"}, {"nodeId": "139805104972384"}, {"nodeId": "139805104973504"}]}}, "139805104966336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "N"}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_OPT"], "argNames": [null]}}, "139805104963872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "N"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_OPT", "ARG_STAR_2"], "argNames": [null, "kwargs"]}}, "139805104972384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805104973504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805100090176": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805104976416"}, {"nodeId": "139805104978656"}, {"nodeId": "139805104978880"}, {"nodeId": "139805104325120"}]}}, "139805104976416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "N"}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_OPT"], "argNames": [null]}}, "139805104978656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "N"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_OPT", "ARG_STAR_2"], "argNames": [null, "kwargs"]}}, "139805104978880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805104325120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805104329152": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "139805104095648"}, "argKinds": [], "argNames": []}}, "139805104331616": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "139805104096704"}, "argKinds": [], "argNames": []}}, "139805104333408": {"type": "Function", "content": {"typeVars": [".-1.139805104333408"], "argTypes": [{"nodeId": "139805481885312", "args": [{"nodeId": ".-1.139805104333408"}]}], "returnType": {"nodeId": ".-1.139805104333408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805104333408": {"type": "TypeVar", "content": {"varName": "T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805104333408", "variance": "INVARIANT"}}}, "exprTypes": {"subtypes": [{"startOffset": 205, "endOffset": 223, "line": 13, "type": {"nodeId": "139805100089840"}}, {"startOffset": 226, "endOffset": 226, "line": 13, "type": {"nodeId": "139805095524304"}}, {"startOffset": 304, "endOffset": 322, "line": 18, "type": {"nodeId": "139805100090176"}}, {"startOffset": 325, "endOffset": 325, "line": 18, "type": {"nodeId": "139805095525648"}}, {"startOffset": 372, "endOffset": 375, "line": 22, "type": {"nodeId": "N"}}, {"startOffset": 379, "endOffset": 388, "line": 25, "type": {"nodeId": "139805099822880"}}, {"startOffset": 390, "endOffset": 390, "line": 25, "type": {"nodeId": "139805104329152"}}, {"startOffset": 510, "endOffset": 513, "line": 35, "type": {"nodeId": "139805104096704"}}, {"startOffset": 558, "endOffset": 561, "line": 39, "type": {"nodeId": "N"}}, {"startOffset": 565, "endOffset": 574, "line": 42, "type": {"nodeId": "139805104898784"}}, {"startOffset": 576, "endOffset": 580, "line": 42, "type": {"nodeId": "139805104331616"}}, {"startOffset": 587, "endOffset": 587, "line": 45, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481893056"}]}}, {"startOffset": 670, "endOffset": 672, "line": 52, "type": {"nodeId": "139805104333408"}}, {"startOffset": 674, "endOffset": 674, "line": 52, "type": {"nodeId": "139805481885312", "args": [{"nodeId": ".-1.139805193098784"}]}}, {"startOffset": 679, "endOffset": 679, "line": 55, "type": {"nodeId": "139805481893056"}}, {"startOffset": 804, "endOffset": 804, "line": 64, "type": {"nodeId": "139805104097056"}}, {"startOffset": 957, "endOffset": 957, "line": 73, "type": {"nodeId": "139805104097760"}}]}, "definitions": {"subtypes": {"__name__": {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": false}}, "__doc__": {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": false}}, "__file__": {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": false}}, "__package__": {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": false}}, "__annotations__": {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": false}}, "P": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104095296"}}}, "S": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104095648"}}}, "S1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104096000"}}}, "func_for_P": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805099822880"}, "name": "func_for_P"}}, "R": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104096352"}}}, "RImpl": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104096704"}}}, "func_for_R": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805104898784"}, "name": "func_for_R"}}, "a": {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481893056"}]}, "isInitializedInClass": false}}, "func_abs": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805193098784"}, "name": "func_abs"}}, "b": {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": false}}, "SupportsCall": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104097056"}}}, "HasF": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104097408"}}}, "SupportsSpecificCall": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104097760"}}}, "HasSpecificF": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104098112"}}}}, "collections": {"UserDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277005504"}}}, "UserList": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277005856"}}}, "UserString": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277006208"}}}, "deque": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277006560"}}}, "Counter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276880064"}}}, "_OrderedDictKeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267806336"}}}, "_OrderedDictItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267806688"}}}, "_OrderedDictValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267807040"}}}, "_odict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277006912"}}}, "_odict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277007264"}}}, "_odict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277007616"}}}, "OrderedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277007968"}}}, "defaultdict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276880416"}}}, "ChainMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277008320"}}}}, "numpy": {"PytestTester": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171901440"}}}, "_ctypes": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155353952"}}}, "_SupportsArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154853984"}}}, "_NestedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167797344"}}}, "_UnknownType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154854688"}}}, "_SupportsDType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167807552"}}}, "NBitBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154855744"}}}, "_256Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154856096"}}}, "_128Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154856448"}}}, "_96Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154856800"}}}, "_80Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154857152"}}}, "_64Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154857504"}}}, "_32Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154857856"}}}, "_16Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154858208"}}}, "_8Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154858560"}}}, "_UFunc_Nin1_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150978368"}}}, "_UFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150978720"}}}, "_UFunc_Nin1_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979072"}}}, "_UFunc_Nin2_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979424"}}}, "_GUFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979776"}}}, "_BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155345504"}}}, "_BoolBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155345856"}}}, "_BoolSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155346208"}}}, "_BoolTrueDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155346560"}}}, "_BoolMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155346912"}}}, "_BoolDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155347264"}}}, "_TD64Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155347616"}}}, "_IntTrueDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155347968"}}}, "_UnsignedIntOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155348320"}}}, "_UnsignedIntBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155348672"}}}, "_UnsignedIntMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155349024"}}}, "_UnsignedIntDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155349376"}}}, "_SignedIntOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155349728"}}}, "_SignedIntBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155350080"}}}, "_SignedIntMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155350432"}}}, "_SignedIntDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155350784"}}}, "_FloatOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155351136"}}}, "_FloatMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155351488"}}}, "_FloatDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155351840"}}}, "_ComplexOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155352192"}}}, "_NumberOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155352544"}}}, "_ComparisonOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155353600"}}}, "flagsobj": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154868768"}}}, "Arrayterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150981888"}}}, "_IOProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155354304"}}}, "_MemMapIOProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155354656"}}}, "_SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155355008"}}}, "dtype": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150983296"}}}, "flatiter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150983648"}}}, "_ArrayOrScalarCommon": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155355360"}}}, "_SupportsItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155355712"}}}, "_SupportsReal": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155356064"}}}, "_SupportsImag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155356416"}}}, "ndarray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155356768"}}}, "generic": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155357120"}}}, "number": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155357472"}}}, "bool_": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155357824"}}}, "object_": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155358176"}}}, "_DatetimeScalar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155358528"}}}, "datetime64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155358880"}}}, "integer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155359232"}}}, "signedinteger": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155359584"}}}, "timedelta64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155359936"}}}, "unsignedinteger": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155360288"}}}, "inexact": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150576704"}}}, "floating": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150577056"}}}, "complexfloating": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150577408"}}}, "flexible": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150577760"}}}, "void": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150578112"}}}, "character": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150578464"}}}, "bytes_": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150578816"}}}, "str_": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150579168"}}}, "ufunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150579520"}}}, "_CopyMode": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150579872"}}}, "ModuleDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150580224"}}}, "VisibleDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150580576"}}}, "ComplexWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150580928"}}}, "RankWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150581280"}}}, "TooHardError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150581632"}}}, "AxisError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150581984"}}}, "errstate": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150582336"}}}, "ndenumerate": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150984000"}}}, "ndindex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150582688"}}}, "DataSource": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150583040"}}}, "broadcast": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150583392"}}}, "busdaycalendar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150583744"}}}, "finfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150984352"}}}, "iinfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150584096"}}}, "format_parser": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150584448"}}}, "recarray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150584800"}}}, "record": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150585152"}}}, "nditer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150585504"}}}, "memmap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150585856"}}}, "vectorize": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150586208"}}}, "poly1d": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150586560"}}}, "matrix": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150586912"}}}, "chararray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150587264"}}}, "_SupportsDLPack": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150587616"}}}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277010432"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481882848"}}}, "_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481883200"}}}, "ParamSpecArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481883552"}}}, "ParamSpecKwargs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481883904"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481884256"}}}, "NewType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481884608"}}}, "_Alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481884960"}}}, "_ProtocolMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276995648"}}}, "SupportsInt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276996000"}}}, "SupportsFloat": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276996352"}}}, "SupportsComplex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276996704"}}}, "SupportsBytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276997056"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276997408"}}}, "SupportsAbs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481885312"}}}, "SupportsRound": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481885664"}}}, "Sized": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276997760"}}}, "Hashable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276998112"}}}, "Iterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481886016"}}}, "Iterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481886368"}}}, "Reversible": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481886720"}}}, "Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481887072"}}}, "Awaitable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481887424"}}}, "Coroutine": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481887776"}}}, "AwaitableGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276998464"}}}, "AsyncIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481888128"}}}, "AsyncIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481888480"}}}, "AsyncGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481888832"}}}, "Container": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481889184"}}}, "Collection": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481889536"}}}, "Sequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481889888"}}}, "MutableSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481890240"}}}, "AbstractSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481890592"}}}, "MutableSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481890944"}}}, "MappingView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276998816"}}}, "ItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276999168"}}}, "KeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276999520"}}}, "ValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276999872"}}}, "Mapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481891296"}}}, "MutableMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481891648"}}}, "IO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277000224"}}}, "BinaryIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277000576"}}}, "TextIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277000928"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277001280"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277001632"}}}, "ForwardRef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481892000"}}}}, "builtins": {"object": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481881792"}}}, "bool": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481882144"}}}, "function": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481882496"}}}, "staticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "classmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "type": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481892352"}}}, "super": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481892704"}}}, "int": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481893056"}}}, "float": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481893408"}}}, "complex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276667968"}}}, "_FormatMapMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276668320"}}}, "_TranslateTable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276668672"}}}, "str": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276669024"}}}, "bytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276669376"}}}, "bytearray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276669728"}}}, "memoryview": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276670080"}}}, "slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276670432"}}}, "tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276670784"}}}, "list": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276671136"}}}, "dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276671488"}}}, "set": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277003040"}}}, "frozenset": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277003392"}}}, "enumerate": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277003744"}}}, "range": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276671840"}}}, "property": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276672192"}}}, "_NotImplementedType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276672544"}}}, "_PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268308768"}}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276672896"}}}, "filter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277004096"}}}, "_GetItemIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276673248"}}}, "map": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277004448"}}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268309120"}}}, "_SupportsPow2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276673600"}}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276673952"}}}, "_SupportsPow3": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276674304"}}}, "reversed": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277004800"}}}, "_SupportsRound1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276674656"}}}, "_SupportsRound2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276675008"}}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268309472"}}}, "zip": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277005152"}}}, "ellipsis": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276675360"}}}, "BaseException": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276675712"}}}, "GeneratorExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276676064"}}}, "KeyboardInterrupt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276676416"}}}, "SystemExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276676768"}}}, "Exception": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276677120"}}}, "StopIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276677472"}}}, "OSError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276677824"}}}, "ArithmeticError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276678176"}}}, "AssertionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276678528"}}}, "AttributeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276678880"}}}, "BufferError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276679232"}}}, "EOFError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276679584"}}}, "ImportError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276679936"}}}, "LookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276680288"}}}, "MemoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276680640"}}}, "NameError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276680992"}}}, "ReferenceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276681344"}}}, "RuntimeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276681696"}}}, "StopAsyncIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276682048"}}}, "SyntaxError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276682400"}}}, "SystemError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276682752"}}}, "TypeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276683104"}}}, "ValueError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276683456"}}}, "FloatingPointError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276683808"}}}, "OverflowError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276864576"}}}, "ZeroDivisionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276864928"}}}, "ModuleNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276865280"}}}, "IndexError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276865632"}}}, "KeyError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276865984"}}}, "UnboundLocalError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276866336"}}}, "BlockingIOError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276866688"}}}, "ChildProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276867040"}}}, "ConnectionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276867392"}}}, "BrokenPipeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276867744"}}}, "ConnectionAbortedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276868096"}}}, "ConnectionRefusedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276868448"}}}, "ConnectionResetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276868800"}}}, "FileExistsError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276869152"}}}, "FileNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276869504"}}}, "InterruptedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276869856"}}}, "IsADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276870208"}}}, "NotADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276870560"}}}, "PermissionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276870912"}}}, "ProcessLookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276871264"}}}, "TimeoutError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276871616"}}}, "NotImplementedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276871968"}}}, "RecursionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276872320"}}}, "IndentationError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276872672"}}}, "TabError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276873024"}}}, "UnicodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276873376"}}}, "UnicodeDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276873728"}}}, "UnicodeEncodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276874080"}}}, "UnicodeTranslateError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276874432"}}}, "Warning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276874784"}}}, "UserWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276875136"}}}, "DeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276875488"}}}, "SyntaxWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276875840"}}}, "RuntimeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276876192"}}}, "FutureWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276876544"}}}, "PendingDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276876896"}}}, "ImportWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276877248"}}}, "UnicodeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276877600"}}}, "BytesWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276877952"}}}, "ResourceWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276878304"}}}, "EncodingWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276878656"}}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272039744"}}}, "_flags": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268310880"}}}, "_float_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268311232"}}}, "_hash_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268311584"}}}, "_implementation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272040096"}}}, "_int_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268508736"}}}, "_thread_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268509088"}}}, "_version_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268509440"}}}, "UnraisableHookArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272040448"}}}, "_asyncgen_hooks": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268509792"}}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277001984"}}}, "dict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277002336"}}}, "dict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277002688"}}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267811616"}}}, "SupportsNext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267811968"}}}, "SupportsAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267812320"}}}, "SupportsDunderLT": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267812672"}}}, "SupportsDunderGT": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267813024"}}}, "SupportsDunderLE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267813376"}}}, "SupportsDunderGE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267813728"}}}, "SupportsAllComparisons": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267814080"}}}, "SupportsAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267814432"}}}, "SupportsRAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267814784"}}}, "SupportsSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267815136"}}}, "SupportsRSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267815488"}}}, "SupportsDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267815840"}}}, "SupportsRDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267816192"}}}, "SupportsIter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267816544"}}}, "SupportsAiter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267816896"}}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267817248"}}}, "SupportsTrunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267817600"}}}, "SupportsItems": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267817952"}}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267818304"}}}, "SupportsGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267818656"}}}, "SupportsItemAccess": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267819008"}}}, "HasFileno": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267819360"}}}, "SupportsRead": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267819712"}}}, "SupportsReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267820064"}}}, "SupportsNoArgReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268033600"}}}, "SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268033952"}}}, "SliceableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268034304"}}}, "IndexableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268034656"}}}, "SupportsGetItemBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268035008"}}}, "SizedBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268035360"}}}, "structseq": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268035712"}}}, "DataclassInstance": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268036064"}}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277008672"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277009024"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277009376"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277009728"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277010080"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277010432"}}}, "TypeVarTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277010784"}}}, "TypeAliasType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277011136"}}}, "Buffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277011488"}}}}, "types": {"_Cell": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272031296"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272031648"}}}, "CodeType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272032000"}}}, "MappingProxyType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272032352"}}}, "SimpleNamespace": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272032704"}}}, "_LoaderProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272033056"}}}, "ModuleType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272033408"}}}, "GeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272033760"}}}, "AsyncGeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272034112"}}}, "CoroutineType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272034464"}}}, "_StaticFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272034816"}}}, "MethodType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272035168"}}}, "BuiltinFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272035520"}}}, "WrapperDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272035872"}}}, "MethodWrapperType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272036224"}}}, "MethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272036576"}}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272036928"}}}, "TracebackType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272037280"}}}, "FrameType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272037632"}}}, "GetSetDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272037984"}}}, "MemberDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272038336"}}}, "GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272038688"}}}, "NoneType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272039040"}}}, "UnionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272039392"}}}}, "numpy.core._internal": {"_ctypes": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155353952"}}}}, "numpy._typing._callable": {"_BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155345504"}}}, "_BoolBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155345856"}}}, "_BoolSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155346208"}}}, "_BoolTrueDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155346560"}}}, "_BoolMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155346912"}}}, "_BoolDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155347264"}}}, "_TD64Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155347616"}}}, "_IntTrueDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155347968"}}}, "_UnsignedIntOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155348320"}}}, "_UnsignedIntBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155348672"}}}, "_UnsignedIntMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155349024"}}}, "_UnsignedIntDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155349376"}}}, "_SignedIntOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155349728"}}}, "_SignedIntBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155350080"}}}, "_SignedIntMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155350432"}}}, "_SignedIntDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155350784"}}}, "_FloatOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155351136"}}}, "_FloatMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155351488"}}}, "_FloatDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155351840"}}}, "_ComplexOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155352192"}}}, "_NumberOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155352544"}}}, "_SupportsLT": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155352896"}}}, "_SupportsGT": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155353248"}}}, "_ComparisonOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155353600"}}}}, "numpy.core.records": {"_SupportsReadInto": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150972384"}}}}, "numpy.core.multiarray": {"_SupportsLenAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154868416"}}}, "flagsobj": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154868768"}}}}, "numpy.core.numerictypes": {"_CastFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154867712"}}}, "_typedict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150982240"}}}}, "numpy.lib.arraypad": {"_ModeFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154867360"}}}}, "numpy.lib.arrayterator": {"Arrayterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150981888"}}}}, "numpy.lib.function_base": {"_TrimZerosSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154866656"}}}, "_SupportsWriteFlush": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154867008"}}}}, "numpy.lib.index_tricks": {"nd_grid": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154864192"}}}, "MGridClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154864544"}}}, "OGridClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154864896"}}}, "AxisConcatenator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154865248"}}}, "RClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154865600"}}}, "CClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154865952"}}}, "IndexExpression": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154866304"}}}}, "numpy.lib.npyio": {"_SupportsGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154862080"}}}, "_SupportsRead": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154862432"}}}, "_SupportsReadSeek": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154862784"}}}, "_SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154863136"}}}, "BagObj": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154863488"}}}, "NpzFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154863840"}}}}, "numpy.lib.shape_base": {"_ArrayWrap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154860672"}}}, "_ArrayPrepare": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154861024"}}}, "_SupportsArrayWrap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154861376"}}}, "_SupportsArrayPrepare": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154861728"}}}}, "numpy.lib.stride_tricks": {"DummyArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154860320"}}}}, "numpy.lib.type_check": {"_SupportsReal": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154859616"}}}, "_SupportsImag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154859968"}}}}, "numpy.lib.utils": {"_SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154858912"}}}, "_Deprecate": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154859264"}}}}, "numpy._pytesttester": {"PytestTester": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171901440"}}}}, "numpy._typing": {"NBitBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154855744"}}}, "_256Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154856096"}}}, "_128Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154856448"}}}, "_96Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154856800"}}}, "_80Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154857152"}}}, "_64Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154857504"}}}, "_32Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154857856"}}}, "_16Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154858208"}}}, "_8Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154858560"}}}, "_NestedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167797344"}}}, "_SupportsDType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167807552"}}}, "_SupportsArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154853984"}}}, "_SupportsArrayFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154854336"}}}, "_UnknownType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154854688"}}}, "_GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167806496"}}}, "_UFunc_Nin1_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150978368"}}}, "_UFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150978720"}}}, "_UFunc_Nin1_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979072"}}}, "_UFunc_Nin2_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979424"}}}, "_GUFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979776"}}}}, "numpy.ctypeslib": {"_ndptr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154855040"}}}, "_concrete_ndptr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154855392"}}}}, "numpy.lib": {"NumpyVersion": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193089472"}}}, "Arrayterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150981888"}}}}, "numpy.linalg": {"LinAlgError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150972032"}}}}, "numpy.ma": {"MAError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167808256"}}}, "MaskError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167808608"}}}, "MaskedArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150980128"}}}, "mvoid": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150980480"}}}}, "numpy.polynomial": {"Chebyshev": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150971328"}}}, "Hermite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150970976"}}}, "HermiteE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150970624"}}}, "Laguerre": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150970272"}}}, "Legendre": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150969920"}}}, "Polynomial": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150592544"}}}}, "numpy.random": {"Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150977664"}}}, "MT19937": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150977312"}}}, "PCG64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150975904"}}}, "PCG64DXSM": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150976256"}}}, "Philox": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150974848"}}}, "SFC64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150973792"}}}, "BitGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150592192"}}}, "SeedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150591840"}}}, "RandomState": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150972736"}}}}, "numpy.testing": {"IgnoreException": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150588320"}}}, "clear_and_catch_warnings": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150588672"}}}, "KnownFailureException": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150587968"}}}, "suppress_warnings": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150589728"}}}}, "os": {"_Environ": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272045376"}}}, "stat_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268309824"}}}, "PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268510496"}}}, "DirEntry": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272045728"}}}, "statvfs_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268510848"}}}, "uname_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268511200"}}}, "terminal_size": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268511552"}}}, "_ScandirIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268511904"}}}, "_wrap_close": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268512256"}}}, "times_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268512608"}}}, "waitid_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268512960"}}}, "sched_param": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268513312"}}}}, "mmap": {"mmap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171901088"}}}}, "ctypes": {"CDLL": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184486464"}}}, "PyDLL": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184486816"}}}, "LibraryLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171900736"}}}, "_FuncPointer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184487168"}}}, "_NamedFuncPointer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184487520"}}}, "c_byte": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184487872"}}}, "c_char": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184488224"}}}, "c_char_p": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184488576"}}}, "c_double": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184488928"}}}, "c_longdouble": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184489280"}}}, "c_float": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184489632"}}}, "c_int": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184489984"}}}, "c_int8": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184490336"}}}, "c_int16": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184490688"}}}, "c_int32": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184491040"}}}, "c_int64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171892288"}}}, "c_long": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171892640"}}}, "c_longlong": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171892992"}}}, "c_short": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171893344"}}}, "c_size_t": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171893696"}}}, "c_ssize_t": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171894048"}}}, "c_ubyte": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171894400"}}}, "c_uint": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171894752"}}}, "c_uint8": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171895104"}}}, "c_uint16": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171895456"}}}, "c_uint32": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171895808"}}}, "c_uint64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171896160"}}}, "c_ulong": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171896512"}}}, "c_ulonglong": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171896864"}}}, "c_ushort": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171897216"}}}, "c_void_p": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171897568"}}}, "c_wchar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171897920"}}}, "c_wchar_p": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171898272"}}}, "c_bool": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171898624"}}}, "py_object": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171898976"}}}, "BigEndianStructure": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171899328"}}}, "LittleEndianStructure": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171899680"}}}}, "array": {"array": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184481536"}}}}, "datetime": {"tzinfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167797696"}}}, "timezone": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167798048"}}}, "date": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167798752"}}}, "time": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167799104"}}}, "timedelta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167799456"}}}, "datetime": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167799808"}}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272616352"}}}, "EnumMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272616704"}}}, "Enum": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272617056"}}}, "IntEnum": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272617408"}}}, "Flag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272617760"}}}, "IntFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272618112"}}}, "auto": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272618464"}}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276879008"}}}, "abstractclassmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractstaticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractproperty": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276879360"}}}, "ABC": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276879712"}}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267652704"}}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267653056"}}}, "ContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267653408"}}}, "_GeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267653760"}}}, "AsyncContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267654112"}}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267654464"}}}, "_SupportsClose": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267654816"}}}, "closing": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267655168"}}}, "_SupportsAclose": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267655520"}}}, "aclosing": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267655872"}}}, "suppress": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267656224"}}}, "_RedirectStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267804224"}}}, "redirect_stdout": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267804576"}}}, "redirect_stderr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267804928"}}}, "ExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267805280"}}}, "AsyncExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267805632"}}}, "nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267805984"}}}}, "re": {"Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272044672"}}}, "Pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272045024"}}}, "RegexFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268510144"}}}}, "_ast": {"AST": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268036768"}}}, "mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268037120"}}}, "type_ignore": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268037472"}}}, "TypeIgnore": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268037824"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268038176"}}}, "Module": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268038528"}}}, "Interactive": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268038880"}}}, "Expression": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268039232"}}}, "stmt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268039584"}}}, "FunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268039936"}}}, "AsyncFunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268040288"}}}, "ClassDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268040640"}}}, "Return": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268040992"}}}, "Delete": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268041344"}}}, "Assign": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268041696"}}}, "AugAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268042048"}}}, "AnnAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268042400"}}}, "For": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268042752"}}}, "AsyncFor": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268043104"}}}, "While": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268043456"}}}, "If": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268043808"}}}, "With": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268044160"}}}, "AsyncWith": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268044512"}}}, "Raise": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268044864"}}}, "Try": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268045216"}}}, "Assert": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268045568"}}}, "Import": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268045920"}}}, "ImportFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268046272"}}}, "Global": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268046624"}}}, "Nonlocal": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268046976"}}}, "Expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268047328"}}}, "Pass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268047680"}}}, "Break": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268048032"}}}, "Continue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268048384"}}}, "expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268048736"}}}, "BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268049088"}}}, "BinOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268049440"}}}, "UnaryOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268181056"}}}, "Lambda": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268181408"}}}, "IfExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268181760"}}}, "Dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268182112"}}}, "Set": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268182464"}}}, "ListComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268182816"}}}, "SetComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268183168"}}}, "DictComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268183520"}}}, "GeneratorExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268183872"}}}, "Await": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268184224"}}}, "Yield": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268184576"}}}, "YieldFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268184928"}}}, "Compare": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268185280"}}}, "Call": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268185632"}}}, "FormattedValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268185984"}}}, "JoinedStr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268186336"}}}, "Constant": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268186688"}}}, "NamedExpr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268187040"}}}, "Attribute": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268187392"}}}, "Slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268187744"}}}, "Subscript": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268188096"}}}, "Starred": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268188448"}}}, "Name": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268188800"}}}, "List": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268189152"}}}, "Tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268189504"}}}, "expr_context": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268189856"}}}, "Del": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268190208"}}}, "Load": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268190560"}}}, "Store": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268190912"}}}, "boolop": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268191264"}}}, "And": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268191616"}}}, "Or": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268191968"}}}, "operator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268192320"}}}, "Add": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268192672"}}}, "BitAnd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268193024"}}}, "BitOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268193376"}}}, "BitXor": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268193728"}}}, "Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268194080"}}}, "FloorDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268194432"}}}, "LShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268194784"}}}, "Mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268195136"}}}, "Mult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268195488"}}}, "MatMult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268195840"}}}, "Pow": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268196192"}}}, "RShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268196544"}}}, "Sub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268196896"}}}, "unaryop": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268295744"}}}, "Invert": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268296096"}}}, "Not": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268296448"}}}, "UAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268296800"}}}, "USub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268297152"}}}, "cmpop": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268297504"}}}, "Eq": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268297856"}}}, "Gt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268298208"}}}, "GtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268298560"}}}, "In": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268298912"}}}, "Is": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268299264"}}}, "IsNot": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268299616"}}}, "Lt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268299968"}}}, "LtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268300320"}}}, "NotEq": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268300672"}}}, "NotIn": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268301024"}}}, "comprehension": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268301376"}}}, "excepthandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268301728"}}}, "ExceptHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268302080"}}}, "arguments": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268302432"}}}, "arg": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268302784"}}}, "keyword": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268303136"}}}, "alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268303488"}}}, "withitem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268303840"}}}, "Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268304192"}}}, "pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268304544"}}}, "match_case": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268304896"}}}, "MatchValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268305248"}}}, "MatchSingleton": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268305600"}}}, "MatchSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268305952"}}}, "MatchStar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268306304"}}}, "MatchMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268306656"}}}, "MatchClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268307008"}}}, "MatchAs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268307360"}}}, "MatchOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268307712"}}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272046080"}}}, "IOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272046432"}}}, "RawIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272046784"}}}, "BufferedIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272047136"}}}, "FileIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272604736"}}}, "BytesIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272605088"}}}, "BufferedReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272605440"}}}, "BufferedWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272605792"}}}, "BufferedRandom": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272606144"}}}, "BufferedRWPair": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272606496"}}}, "TextIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272606848"}}}, "TextIOWrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272607200"}}}, "StringIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272607552"}}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268521760"}}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272612128"}}}, "Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272612480"}}}, "ResourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272612832"}}}, "InspectLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272613184"}}}, "ExecutionLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272613536"}}}, "SourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272613888"}}}, "MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272614240"}}}, "PathEntryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272614592"}}}, "FileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272614944"}}}, "ResourceReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272615296"}}}, "Traversable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272615648"}}}, "TraversableResources": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272616000"}}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272611424"}}}, "BuiltinImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268514720"}}}, "FrozenImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268515072"}}}, "WindowsRegistryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268515424"}}}, "PathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272611776"}}}, "FileFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268515776"}}}, "SourceFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268516128"}}}, "SourcelessFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268516480"}}}, "ExtensionFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268516832"}}}}, "dataclasses": {"_MISSING_TYPE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267650592"}}}, "KW_ONLY": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267650944"}}}, "_DefaultFactory": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267651296"}}}, "Field": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267651648"}}}, "FrozenInstanceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267652000"}}}, "InitVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267652352"}}}}, "numpy._typing._generic_alias": {"_GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167806496"}}}}, "numpy._typing._nested_sequence": {"_NestedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167797344"}}}}, "__future__": {"_Feature": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184481184"}}}}, "numpy.ma.mrecords": {"MaskedRecords": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150984704"}}}}, "zipfile": {"BadZipFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184477312"}}}, "LargeZipFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184477664"}}}, "_ZipStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184478016"}}}, "_SupportsReadSeekTell": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184478368"}}}, "_ClosableZipStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184478720"}}}, "ZipExtFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184479072"}}}, "_Writer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184479424"}}}, "ZipFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184479776"}}}, "PyZipFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184480128"}}}, "ZipInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184480480"}}}, "Path": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184480832"}}}}, "ast": {"_ABC": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193089824"}}}, "Num": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193090176"}}}, "Str": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193090528"}}}, "Bytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193090880"}}}, "NameConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193091232"}}}, "Ellipsis": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193091584"}}}, "slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193091936"}}}, "ExtSlice": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193092288"}}}, "Index": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193092640"}}}, "Suite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184475200"}}}, "AugLoad": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184475552"}}}, "AugStore": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184475904"}}}, "Param": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184476256"}}}, "NodeVisitor": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184476608"}}}, "NodeTransformer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184476960"}}}}, "numpy._typing._dtype_like": {"_SupportsDType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167807552"}}}}, "numpy._typing._array_like": {"_SupportsArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154853984"}}}, "_SupportsArrayFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154854336"}}}, "_UnknownType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154854688"}}}}, "numpy._typing._ufunc": {"_SupportsArrayUFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150978016"}}}, "_UFunc_Nin1_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150978368"}}}, "_UFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150978720"}}}, "_UFunc_Nin1_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979072"}}}, "_UFunc_Nin2_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979424"}}}, "_GUFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979776"}}}}, "numpy.lib.mixins": {"NDArrayOperatorsMixin": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150971680"}}}}, "numpy.lib._version": {"NumpyVersion": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193089472"}}}}, "math": {"_SupportsCeil": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193088416"}}}, "_SupportsFloor": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193088768"}}}, "_SupportsTrunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193089120"}}}}, "numpy.ma.extras": {"_fromnxfunction": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167812128"}}}, "_fromnxfunction_single": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154852928"}}}, "_fromnxfunction_seq": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154853280"}}}, "_fromnxfunction_allargs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154853632"}}}, "MAxisConcatenator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150981184"}}}, "mr_class": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150981536"}}}}, "numpy.ma.core": {"MaskedArrayFutureWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167807904"}}}, "MAError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167808256"}}}, "MaskError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167808608"}}}, "_MaskedUFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167808960"}}}, "_MaskedUnaryOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167809312"}}}, "_MaskedBinaryOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167809664"}}}, "_DomainedBinaryOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167810016"}}}, "_MaskedPrintOption": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167810368"}}}, "MaskedIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167810720"}}}, "MaskedArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150980128"}}}, "mvoid": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150980480"}}}, "MaskedConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150980832"}}}, "_extrema_operation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167811072"}}}, "_frommethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167811424"}}}, "_convert2ma": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167811776"}}}}, "numpy.polynomial.chebyshev": {"Chebyshev": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150971328"}}}}, "numpy.polynomial.hermite": {"Hermite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150970976"}}}}, "numpy.polynomial.hermite_e": {"HermiteE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150970624"}}}}, "numpy.polynomial.laguerre": {"Laguerre": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150970272"}}}}, "numpy.polynomial.legendre": {"Legendre": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150969920"}}}}, "numpy.polynomial.polynomial": {"Polynomial": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150592544"}}}}, "numpy.random._generator": {"Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150977664"}}}}, "numpy.random._mt19937": {"MT19937": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150977312"}}}}, "numpy.random._pcg64": {"PCG64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150975904"}}}, "PCG64DXSM": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150976256"}}}}, "numpy.random._philox": {"Philox": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150974848"}}}}, "numpy.random._sfc64": {"SFC64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150973792"}}}}, "numpy.random.bit_generator": {"ISeedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150590784"}}}, "ISpawnableSeedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150591136"}}}, "SeedlessSeedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150591488"}}}, "SeedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150591840"}}}, "BitGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150592192"}}}}, "numpy.random.mtrand": {"RandomState": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150972736"}}}}, "numpy.testing._private.utils": {"KnownFailureException": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150587968"}}}, "IgnoreException": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150588320"}}}, "clear_and_catch_warnings": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150588672"}}}, "_clear_and_catch_warnings_with_records": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150589024"}}}, "_clear_and_catch_warnings_without_records": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150589376"}}}, "suppress_warnings": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150589728"}}}}, "unittest": {"FunctionTestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167802272"}}}, "SkipTest": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167801216"}}}, "TestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167801920"}}}, "TestLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167804384"}}}, "TestProgram": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167805088"}}}, "TestResult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167800160"}}}, "TextTestResult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167803680"}}}, "TextTestRunner": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167804032"}}}, "BaseTestSuite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167805792"}}}, "TestSuite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167806144"}}}, "IsolatedAsyncioTestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167803328"}}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272040800"}}}, "SubprocessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272041152"}}}, "TimeoutExpired": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272041504"}}}, "CalledProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272041856"}}}, "Popen": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272042208"}}}}, "_ctypes": {"_CDataMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184481888"}}}, "_CData": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184482240"}}}, "_SimpleCData": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184482592"}}}, "_CanCastTo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184482944"}}}, "_PointerLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184483296"}}}, "_Pointer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171900032"}}}, "_CArgObject": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184483648"}}}, "CFuncPtr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184484000"}}}, "_CField": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184484352"}}}, "_StructUnionMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184484704"}}}, "_StructUnionBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184485056"}}}, "Union": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184485408"}}}, "Structure": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184485760"}}}, "Array": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171900384"}}}, "ArgumentError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184486112"}}}}, "time": {"struct_time": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193087712"}}}, "_ClockInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193088064"}}}}, "sre_constants": {"error": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272043968"}}}, "_NamedIntConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272044320"}}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267807392"}}}, "_ReadableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267807744"}}}, "_Stream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268517184"}}}, "_Encoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267808096"}}}, "_Decoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267808448"}}}, "_StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267808800"}}}, "_StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267809152"}}}, "_IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267809504"}}}, "_IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267809856"}}}, "CodecInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268517536"}}}, "Codec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267810208"}}}, "IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267810560"}}}, "IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267810912"}}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268517888"}}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268518240"}}}, "StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268518592"}}}, "StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268518944"}}}, "StreamReaderWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268519296"}}}, "StreamRecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267811264"}}}}, "importlib": {"Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272612480"}}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272607904"}}}, "PackageNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272608608"}}}, "EntryPoint": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272609312"}}}, "EntryPoints": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272609664"}}}, "SelectableGroups": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272610016"}}}, "PackagePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268522112"}}}, "FileHash": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272610368"}}}, "Distribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272610720"}}}, "DistributionFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268513664"}}}, "MetadataPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268514368"}}}, "PathDistribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272611072"}}}}, "functools": {"_lru_cache_wrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193085600"}}}, "partial": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193085952"}}}, "partialmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193086304"}}}, "_SingleDispatchCallable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193086656"}}}, "singledispatchmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193087008"}}}, "cached_property": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193087360"}}}}, "numpy.polynomial._polybase": {"ABCPolyBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193084544"}}}}, "numpy.polynomial.polyutils": {"RankWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193084192"}}}}, "threading": {"ThreadError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193079264"}}}, "local": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193079616"}}}, "Thread": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193079968"}}}, "_DummyThread": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193080320"}}}, "Lock": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193080672"}}}, "_RLock": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193081024"}}}, "Condition": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193081376"}}}, "Semaphore": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193081728"}}}, "BoundedSemaphore": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193082080"}}}, "Event": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193082432"}}}, "Timer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193082784"}}}, "Barrier": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193083136"}}}, "BrokenBarrierError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193083488"}}}}, "unittest.case": {"_BaseTestCaseContext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167800864"}}}, "SkipTest": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167801216"}}}, "_SupportsAbsAndDunderGE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167801568"}}}, "TestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167801920"}}}, "FunctionTestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167802272"}}}, "_AssertRaisesContext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167802624"}}}, "_AssertWarnsContext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167802976"}}}}, "warnings": {"_OptionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171908128"}}}, "WarningMessage": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167796288"}}}, "catch_warnings": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167796640"}}}}, "unittest.loader": {"TestLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167804384"}}}}, "unittest.main": {"_TestRunner": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167804736"}}}, "TestProgram": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167805088"}}}}, "unittest.result": {"TestResult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167800160"}}}}, "unittest.runner": {"TextTestResult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167803680"}}}, "TextTestRunner": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167804032"}}}}, "unittest.suite": {"BaseTestSuite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167805792"}}}, "TestSuite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167806144"}}}}, "unittest.async_case": {"IsolatedAsyncioTestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167803328"}}}}, "json": {"JSONDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193078208"}}}, "JSONDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193078560"}}}, "JSONEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193077856"}}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272042560"}}}, "_State": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272042912"}}}, "SubPattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272043264"}}}, "Tokenizer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272043616"}}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268036416"}}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272607904"}}}, "SimplePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272608256"}}}}, "email.message": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272619872"}}}, "MIMEPart": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272620224"}}}, "EmailMessage": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272620576"}}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268519648"}}}, "PurePosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268520000"}}}, "PureWindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268520352"}}}, "Path": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268520704"}}}, "PosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268521056"}}}, "WindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268521408"}}}}, "numpy.compat": {"contextlib_nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171901792"}}}}, "_thread": {"LockType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193078912"}}}, "_ExceptHookArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193083840"}}}}, "unittest._log": {"_AssertLogsContext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167805440"}}}}, "logging": {"Filterer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171902144"}}}, "Manager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171902496"}}}, "Logger": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171902848"}}}, "Handler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171903200"}}}, "Formatter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171903552"}}}, "BufferingFormatter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171903904"}}}, "Filter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171904256"}}}, "LogRecord": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171904608"}}}, "LoggerAdapter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171907776"}}}, "StreamHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171904960"}}}, "FileHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171905312"}}}, "NullHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171905664"}}}, "PlaceHolder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171906016"}}}, "RootLogger": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171906368"}}}, "PercentStyle": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171906720"}}}, "StrFormatStyle": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171907072"}}}, "StringTemplateStyle": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171907424"}}}}, "json.decoder": {"JSONDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193078208"}}}, "JSONDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193078560"}}}}, "json.encoder": {"JSONEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193077856"}}}}, "email": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272619872"}}}, "Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272618816"}}}}, "email.charset": {"Charset": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267650240"}}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267649888"}}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267640736"}}}, "MessageParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267641088"}}}, "HeaderParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267641440"}}}, "BoundaryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267641792"}}}, "MultipartConversionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267642144"}}}, "CharsetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267642496"}}}, "MessageDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267642848"}}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267643200"}}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267643552"}}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267643904"}}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267644256"}}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267644608"}}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267644960"}}}, "UndecodableBytesDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267645312"}}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267645664"}}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267646016"}}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267646368"}}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267646720"}}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267647072"}}}, "HeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267647424"}}}, "InvalidHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267647776"}}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267648128"}}}, "NonPrintableDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267648480"}}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267648832"}}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267649184"}}}, "InvalidDateDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267649536"}}}}, "email.policy": {"Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272618816"}}}, "Compat32": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272619168"}}}, "EmailPolicy": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272619520"}}}}, "numpy.compat.py3k": {"contextlib_nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171901792"}}}}, "textwrap": {"TextWrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193077504"}}}}, "string": {"Template": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193076800"}}}, "Formatter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193077152"}}}}, "email.header": {"Header": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267640384"}}}}, "pickle": {"_ReadableFileobj": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268522464"}}}, "PickleBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268522816"}}}, "PickleError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268523168"}}}, "PicklingError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268523520"}}}, "UnpicklingError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268523872"}}}, "Pickler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268524224"}}}, "Unpickler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268524576"}}}}}, "names": {"subtypes": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "numpy", "kind": "Module", "fullname": "numpy"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing.ParamSpec"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "ByteString", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "P", "kind": "LocalType"}, {"name": "S", "kind": "LocalType"}, {"name": "S1", "kind": "LocalType"}, {"name": "func_for_P", "kind": "Other"}, {"name": "R", "kind": "LocalType"}, {"name": "RImpl", "kind": "LocalType"}, {"name": "func_for_R", "kind": "Other"}, {"name": "a", "kind": "Other"}, {"name": "T", "kind": "Other"}, {"name": "func_abs", "kind": "Other"}, {"name": "b", "kind": "Other"}, {"name": "SupportsCall", "kind": "LocalType"}, {"name": "HasF", "kind": "LocalType"}, {"name": "SupportsSpecificCall", "kind": "LocalType"}, {"name": "HasSpecificF", "kind": "LocalType"}], "collections": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "SupportsItems", "kind": "ImportedType", "fullname": "_typeshed.SupportsItems"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "Callable", "kind": "Other"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "namedtuple", "kind": "Other"}, {"name": "UserDict", "kind": "LocalType"}, {"name": "UserList", "kind": "LocalType"}, {"name": "UserString", "kind": "LocalType"}, {"name": "deque", "kind": "LocalType"}, {"name": "Counter", "kind": "LocalType"}, {"name": "_OrderedDictKeysView", "kind": "LocalType"}, {"name": "_OrderedDictItemsView", "kind": "LocalType"}, {"name": "_OrderedDictValuesView", "kind": "LocalType"}, {"name": "_odict_keys", "kind": "LocalType"}, {"name": "_odict_items", "kind": "LocalType"}, {"name": "_odict_values", "kind": "LocalType"}, {"name": "OrderedDict", "kind": "LocalType"}, {"name": "defaultdict", "kind": "LocalType"}, {"name": "ChainMap", "kind": "LocalType"}], "numpy": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "builtins", "kind": "Module", "fullname": "builtins"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "mmap", "kind": "Module", "fullname": "mmap"}, {"name": "ct", "kind": "Module", "fullname": "ctypes"}, {"name": "_array", "kind": "Module", "fullname": "array"}, {"name": "dt", "kind": "Module", "fullname": "datetime"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "MappingProxyType", "kind": "ImportedType", "fullname": "types.MappingProxyType"}, {"name": "ContextDecorator", "kind": "ImportedType", "fullname": "contextlib.ContextDecorator"}, {"name": "contextmanager", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "PytestTester", "kind": "LocalType"}, {"name": "_ctypes", "kind": "LocalType"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_SupportsArray", "kind": "LocalType"}, {"name": "_NestedSequence", "kind": "LocalType"}, {"name": "_FiniteNestedSequence", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeStr_co", "kind": "Other"}, {"name": "_ArrayLikeBytes_co", "kind": "Other"}, {"name": "_ArrayLikeUnknown", "kind": "Other"}, {"name": "_UnknownType", "kind": "LocalType"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_DTypeLikeVoid", "kind": "Other"}, {"name": "_SupportsDType", "kind": "LocalType"}, {"name": "_VoidDTypeLike", "kind": "Other"}, {"name": "_Shape", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_CharLike_co", "kind": "Other"}, {"name": "_BoolLike_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "_TD64Like_co", "kind": "Other"}, {"name": "_NumberLike_co", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "NBitBase", "kind": "LocalType"}, {"name": "_256Bit", "kind": "LocalType"}, {"name": "_128Bit", "kind": "LocalType"}, {"name": "_96Bit", "kind": "LocalType"}, {"name": "_80Bit", "kind": "LocalType"}, {"name": "_64Bit", "kind": "LocalType"}, {"name": "_32Bit", "kind": "LocalType"}, {"name": "_16Bit", "kind": "LocalType"}, {"name": "_8Bit", "kind": "LocalType"}, {"name": "_NBitByte", "kind": "Other"}, {"name": "_NBitShort", "kind": "Other"}, {"name": "_NBitIntC", "kind": "Other"}, {"name": "_NBitIntP", "kind": "Other"}, {"name": "_NBitInt", "kind": "Other"}, {"name": "_NBitLongLong", "kind": "Other"}, {"name": "_NBitHalf", "kind": "Other"}, {"name": "_NBitSingle", "kind": "Other"}, {"name": "_NBitDouble", "kind": "Other"}, {"name": "_NBitLongDouble", "kind": "Other"}, {"name": "_BoolCodes", "kind": "Other"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_Float16Codes", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Complex64Codes", "kind": "Other"}, {"name": "_Complex128Codes", "kind": "Other"}, {"name": "_ByteCodes", "kind": "Other"}, {"name": "_ShortCodes", "kind": "Other"}, {"name": "_IntCCodes", "kind": "Other"}, {"name": "_IntPCodes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_LongLongCodes", "kind": "Other"}, {"name": "_UByteCodes", "kind": "Other"}, {"name": "_UShortCodes", "kind": "Other"}, {"name": "_UIntCCodes", "kind": "Other"}, {"name": "_UIntPCodes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ULongLongCodes", "kind": "Other"}, {"name": "_HalfCodes", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_LongDoubleCodes", "kind": "Other"}, {"name": "_CSingleCodes", "kind": "Other"}, {"name": "_CDoubleCodes", "kind": "Other"}, {"name": "_CLongDoubleCodes", "kind": "Other"}, {"name": "_DT64Codes", "kind": "Other"}, {"name": "_TD64Codes", "kind": "Other"}, {"name": "_StrCodes", "kind": "Other"}, {"name": "_BytesCodes", "kind": "Other"}, {"name": "_VoidCodes", "kind": "Other"}, {"name": "_ObjectCodes", "kind": "Other"}, {"name": "_UFunc_Nin1_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin1_Nout2", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout2", "kind": "LocalType"}, {"name": "_GUFunc_Nin2_Nout1", "kind": "LocalType"}, {"name": "_BoolOp", "kind": "LocalType"}, {"name": "_BoolBitOp", "kind": "LocalType"}, {"name": "_BoolSub", "kind": "LocalType"}, {"name": "_BoolTrueDiv", "kind": "LocalType"}, {"name": "_BoolMod", "kind": "LocalType"}, {"name": "_BoolDivMod", "kind": "LocalType"}, {"name": "_TD64Div", "kind": "LocalType"}, {"name": "_IntTrueDiv", "kind": "LocalType"}, {"name": "_UnsignedIntOp", "kind": "LocalType"}, {"name": "_UnsignedIntBitOp", "kind": "LocalType"}, {"name": "_UnsignedIntMod", "kind": "LocalType"}, {"name": "_UnsignedIntDivMod", "kind": "LocalType"}, {"name": "_SignedIntOp", "kind": "LocalType"}, {"name": "_SignedIntBitOp", "kind": "LocalType"}, {"name": "_SignedIntMod", "kind": "LocalType"}, {"name": "_SignedIntDivMod", "kind": "LocalType"}, {"name": "_FloatOp", "kind": "LocalType"}, {"name": "_FloatMod", "kind": "LocalType"}, {"name": "_FloatDivMod", "kind": "LocalType"}, {"name": "_ComplexOp", "kind": "LocalType"}, {"name": "_NumberOp", "kind": "LocalType"}, {"name": "_ComparisonOp", "kind": "LocalType"}, {"name": "uint128", "kind": "Other"}, {"name": "uint256", "kind": "Other"}, {"name": "int128", "kind": "Other"}, {"name": "int256", "kind": "Other"}, {"name": "float80", "kind": "Other"}, {"name": "float96", "kind": "Other"}, {"name": "float128", "kind": "Other"}, {"name": "float256", "kind": "Other"}, {"name": "complex160", "kind": "Other"}, {"name": "complex192", "kind": "Other"}, {"name": "complex256", "kind": "Other"}, {"name": "complex512", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "NoReturn", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "ctypeslib", "kind": "Module", "fullname": "numpy.ctypeslib"}, {"name": "fft", "kind": "Module", "fullname": "numpy.fft"}, {"name": "lib", "kind": "Module", "fullname": "numpy.lib"}, {"name": "linalg", "kind": "Module", "fullname": "numpy.linalg"}, {"name": "ma", "kind": "Module", "fullname": "numpy.ma"}, {"name": "polynomial", "kind": "Module", "fullname": "numpy.polynomial"}, {"name": "random", "kind": "Module", "fullname": "numpy.random"}, {"name": "testing", "kind": "Module", "fullname": "numpy.testing"}, {"name": "version", "kind": "Module", "fullname": "numpy.version"}, {"name": "defchararray", "kind": "Module", "fullname": "numpy.core.defchararray"}, {"name": "records", "kind": "Module", "fullname": "numpy.core.records"}, {"name": "char", "kind": "Module", "fullname": "numpy.core.defchararray"}, {"name": "rec", "kind": "Module", "fullname": "numpy.core.records"}, {"name": "linspace", "kind": "Other"}, {"name": "logspace", "kind": "Other"}, {"name": "geomspace", "kind": "Other"}, {"name": "take", "kind": "Other"}, {"name": "reshape", "kind": "Other"}, {"name": "choose", "kind": "Other"}, {"name": "repeat", "kind": "Other"}, {"name": "put", "kind": "Other"}, {"name": "swapaxes", "kind": "Other"}, {"name": "transpose", "kind": "Other"}, {"name": "partition", "kind": "Other"}, {"name": "argpartition", "kind": "Other"}, {"name": "sort", "kind": "Other"}, {"name": "argsort", "kind": "Other"}, {"name": "argmax", "kind": "Other"}, {"name": "argmin", "kind": "Other"}, {"name": "searchsorted", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "squeeze", "kind": "Other"}, {"name": "diagonal", "kind": "Other"}, {"name": "trace", "kind": "Other"}, {"name": "ravel", "kind": "Other"}, {"name": "nonzero", "kind": "Other"}, {"name": "shape", "kind": "Other"}, {"name": "compress", "kind": "Other"}, {"name": "clip", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "cumsum", "kind": "Other"}, {"name": "ptp", "kind": "Other"}, {"name": "amax", "kind": "Other"}, {"name": "amin", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "cumprod", "kind": "Other"}, {"name": "ndim", "kind": "Other"}, {"name": "size", "kind": "Other"}, {"name": "around", "kind": "Other"}, {"name": "mean", "kind": "Other"}, {"name": "std", "kind": "Other"}, {"name": "var", "kind": "Other"}, {"name": "require", "kind": "Other"}, {"name": "sctypes", "kind": "Other"}, {"name": "sctypeDict", "kind": "Other"}, {"name": "seterr", "kind": "Other"}, {"name": "geterr", "kind": "Other"}, {"name": "setbufsize", "kind": "Other"}, {"name": "getbufsize", "kind": "Other"}, {"name": "seterrcall", "kind": "Other"}, {"name": "geterrcall", "kind": "Other"}, {"name": "_ErrKind", "kind": "Other"}, {"name": "_ErrFunc", "kind": "Other"}, {"name": "_ErrDictOptional", "kind": "LocalType"}, {"name": "set_printoptions", "kind": "Other"}, {"name": "get_printoptions", "kind": "Other"}, {"name": "array2string", "kind": "Other"}, {"name": "format_float_scientific", "kind": "Other"}, {"name": "format_float_positional", "kind": "Other"}, {"name": "array_repr", "kind": "Other"}, {"name": "array_str", "kind": "Other"}, {"name": "set_string_function", "kind": "Other"}, {"name": "printoptions", "kind": "Other"}, {"name": "einsum", "kind": "Other"}, {"name": "einsum_path", "kind": "Other"}, {"name": "ALLOW_THREADS", "kind": "Other"}, {"name": "BUFSIZE", "kind": "Other"}, {"name": "CLIP", "kind": "Other"}, {"name": "MAXDIMS", "kind": "Other"}, {"name": "MAY_SHARE_BOUNDS", "kind": "Other"}, {"name": "MAY_SHARE_EXACT", "kind": "Other"}, {"name": "RAISE", "kind": "Other"}, {"name": "WRAP", "kind": "Other"}, {"name": "tracemalloc_domain", "kind": "Other"}, {"name": "array", "kind": "Other"}, {"name": "empty_like", "kind": "Other"}, {"name": "empty", "kind": "Other"}, {"name": "zeros", "kind": "Other"}, {"name": "concatenate", "kind": "Other"}, {"name": "inner", "kind": "Other"}, {"name": "where", "kind": "Other"}, {"name": "lexsort", "kind": "Other"}, {"name": "can_cast", "kind": "Other"}, {"name": "min_scalar_type", "kind": "Other"}, {"name": "result_type", "kind": "Other"}, {"name": "dot", "kind": "Other"}, {"name": "vdot", "kind": "Other"}, {"name": "bincount", "kind": "Other"}, {"name": "copyto", "kind": "Other"}, {"name": "putmask", "kind": "Other"}, {"name": "packbits", "kind": "Other"}, {"name": "unpackbits", "kind": "Other"}, {"name": "shares_memory", "kind": "Other"}, {"name": "may_share_memory", "kind": "Other"}, {"name": "asarray", "kind": "Other"}, {"name": "asanyarray", "kind": "Other"}, {"name": "ascontiguousarray", "kind": "Other"}, {"name": "asfortranarray", "kind": "Other"}, {"name": "arange", "kind": "Other"}, {"name": "busday_count", "kind": "Other"}, {"name": "busday_offset", "kind": "Other"}, {"name": "compare_chararrays", "kind": "Other"}, {"name": "datetime_as_string", "kind": "Other"}, {"name": "datetime_data", "kind": "Other"}, {"name": "frombuffer", "kind": "Other"}, {"name": "fromfile", "kind": "Other"}, {"name": "fromiter", "kind": "Other"}, {"name": "is_busday", "kind": "Other"}, {"name": "promote_types", "kind": "Other"}, {"name": "seterrobj", "kind": "Other"}, {"name": "geterrobj", "kind": "Other"}, {"name": "fromstring", "kind": "Other"}, {"name": "frompyfunc", "kind": "Other"}, {"name": "nested_iters", "kind": "Other"}, {"name": "flagsobj", "kind": "LocalType"}, {"name": "zeros_like", "kind": "Other"}, {"name": "ones", "kind": "Other"}, {"name": "ones_like", "kind": "Other"}, {"name": "full", "kind": "Other"}, {"name": "full_like", "kind": "Other"}, {"name": "count_nonzero", "kind": "Other"}, {"name": "isfortran", "kind": "Other"}, {"name": "argwhere", "kind": "Other"}, {"name": "flatnonzero", "kind": "Other"}, {"name": "correlate", "kind": "Other"}, {"name": "convolve", "kind": "Other"}, {"name": "outer", "kind": "Other"}, {"name": "tensordot", "kind": "Other"}, {"name": "roll", "kind": "Other"}, {"name": "rollaxis", "kind": "Other"}, {"name": "moveaxis", "kind": "Other"}, {"name": "cross", "kind": "Other"}, {"name": "indices", "kind": "Other"}, {"name": "fromfunction", "kind": "Other"}, {"name": "isscalar", "kind": "Other"}, {"name": "binary_repr", "kind": "Other"}, {"name": "base_repr", "kind": "Other"}, {"name": "identity", "kind": "Other"}, {"name": "allclose", "kind": "Other"}, {"name": "isclose", "kind": "Other"}, {"name": "array_equal", "kind": "Other"}, {"name": "array_equiv", "kind": "Other"}, {"name": "maximum_sctype", "kind": "Other"}, {"name": "issctype", "kind": "Other"}, {"name": "obj2sctype", "kind": "Other"}, {"name": "issubclass_", "kind": "Other"}, {"name": "issubsctype", "kind": "Other"}, {"name": "issubdtype", "kind": "Other"}, {"name": "sctype2char", "kind": "Other"}, {"name": "find_common_type", "kind": "Other"}, {"name": "nbytes", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "ScalarType", "kind": "Other"}, {"name": "typecodes", "kind": "Other"}, {"name": "atleast_1d", "kind": "Other"}, {"name": "atleast_2d", "kind": "Other"}, {"name": "atleast_3d", "kind": "Other"}, {"name": "block", "kind": "Other"}, {"name": "hstack", "kind": "Other"}, {"name": "stack", "kind": "Other"}, {"name": "vstack", "kind": "Other"}, {"name": "emath", "kind": "Module", "fullname": "numpy.lib.scimath"}, {"name": "pad", "kind": "Other"}, {"name": "ediff1d", "kind": "Other"}, {"name": "intersect1d", "kind": "Other"}, {"name": "setxor1d", "kind": "Other"}, {"name": "union1d", "kind": "Other"}, {"name": "setdiff1d", "kind": "Other"}, {"name": "unique", "kind": "Other"}, {"name": "in1d", "kind": "Other"}, {"name": "isin", "kind": "Other"}, {"name": "Arrayterator", "kind": "LocalType"}, {"name": "select", "kind": "Other"}, {"name": "piecewise", "kind": "Other"}, {"name": "trim_zeros", "kind": "Other"}, {"name": "copy", "kind": "Other"}, {"name": "iterable", "kind": "Other"}, {"name": "percentile", "kind": "Other"}, {"name": "diff", "kind": "Other"}, {"name": "gradient", "kind": "Other"}, {"name": "angle", "kind": "Other"}, {"name": "unwrap", "kind": "Other"}, {"name": "sort_complex", "kind": "Other"}, {"name": "disp", "kind": "Other"}, {"name": "flip", "kind": "Other"}, {"name": "rot90", "kind": "Other"}, {"name": "extract", "kind": "Other"}, {"name": "place", "kind": "Other"}, {"name": "asarray_chkfinite", "kind": "Other"}, {"name": "average", "kind": "Other"}, {"name": "digitize", "kind": "Other"}, {"name": "cov", "kind": "Other"}, {"name": "corrcoef", "kind": "Other"}, {"name": "msort", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "sinc", "kind": "Other"}, {"name": "hamming", "kind": "Other"}, {"name": "hanning", "kind": "Other"}, {"name": "bartlett", "kind": "Other"}, {"name": "blackman", "kind": "Other"}, {"name": "kaiser", "kind": "Other"}, {"name": "trapz", "kind": "Other"}, {"name": "i0", "kind": "Other"}, {"name": "add_newdoc", "kind": "Other"}, {"name": "add_docstring", "kind": "Other"}, {"name": "meshgrid", "kind": "Other"}, {"name": "delete", "kind": "Other"}, {"name": "insert", "kind": "Other"}, {"name": "append", "kind": "Other"}, {"name": "interp", "kind": "Other"}, {"name": "add_newdoc_ufunc", "kind": "Other"}, {"name": "quantile", "kind": "Other"}, {"name": "histogram_bin_edges", "kind": "Other"}, {"name": "histogram", "kind": "Other"}, {"name": "histogramdd", "kind": "Other"}, {"name": "ravel_multi_index", "kind": "Other"}, {"name": "unravel_index", "kind": "Other"}, {"name": "mgrid", "kind": "Other"}, {"name": "ogrid", "kind": "Other"}, {"name": "r_", "kind": "Other"}, {"name": "c_", "kind": "Other"}, {"name": "s_", "kind": "Other"}, {"name": "index_exp", "kind": "Other"}, {"name": "ix_", "kind": "Other"}, {"name": "fill_diagonal", "kind": "Other"}, {"name": "diag_indices", "kind": "Other"}, {"name": "diag_indices_from", "kind": "Other"}, {"name": "nansum", "kind": "Other"}, {"name": "nanmax", "kind": "Other"}, {"name": "nanmin", "kind": "Other"}, {"name": "nanargmax", "kind": "Other"}, {"name": "nanargmin", "kind": "Other"}, {"name": "nanmean", "kind": "Other"}, {"name": "nanmedian", "kind": "Other"}, {"name": "nanpercentile", "kind": "Other"}, {"name": "nanvar", "kind": "Other"}, {"name": "nanstd", "kind": "Other"}, {"name": "nanprod", "kind": "Other"}, {"name": "nancumsum", "kind": "Other"}, {"name": "nancumprod", "kind": "Other"}, {"name": "nanquantile", "kind": "Other"}, {"name": "savetxt", "kind": "Other"}, {"name": "loadtxt", "kind": "Other"}, {"name": "genfromtxt", "kind": "Other"}, {"name": "recfromtxt", "kind": "Other"}, {"name": "recfromcsv", "kind": "Other"}, {"name": "load", "kind": "Other"}, {"name": "save", "kind": "Other"}, {"name": "savez", "kind": "Other"}, {"name": "savez_compressed", "kind": "Other"}, {"name": "fromregex", "kind": "Other"}, {"name": "poly", "kind": "Other"}, {"name": "roots", "kind": "Other"}, {"name": "polyint", "kind": "Other"}, {"name": "polyder", "kind": "Other"}, {"name": "polyadd", "kind": "Other"}, {"name": "polysub", "kind": "Other"}, {"name": "polymul", "kind": "Other"}, {"name": "polydiv", "kind": "Other"}, {"name": "polyval", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}, {"name": "column_stack", "kind": "Other"}, {"name": "row_stack", "kind": "Other"}, {"name": "dstack", "kind": "Other"}, {"name": "array_split", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "hsplit", "kind": "Other"}, {"name": "vsplit", "kind": "Other"}, {"name": "dsplit", "kind": "Other"}, {"name": "apply_over_axes", "kind": "Other"}, {"name": "expand_dims", "kind": "Other"}, {"name": "apply_along_axis", "kind": "Other"}, {"name": "kron", "kind": "Other"}, {"name": "tile", "kind": "Other"}, {"name": "get_array_wrap", "kind": "Other"}, {"name": "take_along_axis", "kind": "Other"}, {"name": "put_along_axis", "kind": "Other"}, {"name": "broadcast_to", "kind": "Other"}, {"name": "broadcast_arrays", "kind": "Other"}, {"name": "broadcast_shapes", "kind": "Other"}, {"name": "diag", "kind": "Other"}, {"name": "diagflat", "kind": "Other"}, {"name": "eye", "kind": "Other"}, {"name": "fliplr", "kind": "Other"}, {"name": "flipud", "kind": "Other"}, {"name": "tri", "kind": "Other"}, {"name": "triu", "kind": "Other"}, {"name": "tril", "kind": "Other"}, {"name": "vander", "kind": "Other"}, {"name": "histogram2d", "kind": "Other"}, {"name": "mask_indices", "kind": "Other"}, {"name": "tril_indices", "kind": "Other"}, {"name": "tril_indices_from", "kind": "Other"}, {"name": "triu_indices", "kind": "Other"}, {"name": "triu_indices_from", "kind": "Other"}, {"name": "mintypecode", "kind": "Other"}, {"name": "asfarray", "kind": "Other"}, {"name": "real", "kind": "Other"}, {"name": "imag", "kind": "Other"}, {"name": "iscomplex", "kind": "Other"}, {"name": "isreal", "kind": "Other"}, {"name": "iscomplexobj", "kind": "Other"}, {"name": "isrealobj", "kind": "Other"}, {"name": "nan_to_num", "kind": "Other"}, {"name": "real_if_close", "kind": "Other"}, {"name": "typename", "kind": "Other"}, {"name": "common_type", "kind": "Other"}, {"name": "fix", "kind": "Other"}, {"name": "isposinf", "kind": "Other"}, {"name": "isneginf", "kind": "Other"}, {"name": "deprecate", "kind": "Other"}, {"name": "deprecate_with_doc", "kind": "Other"}, {"name": "get_include", "kind": "Other"}, {"name": "info", "kind": "Other"}, {"name": "source", "kind": "Other"}, {"name": "who", "kind": "Other"}, {"name": "lookfor", "kind": "Other"}, {"name": "byte_bounds", "kind": "Other"}, {"name": "safe_eval", "kind": "Other"}, {"name": "show_runtime", "kind": "Other"}, {"name": "asmatrix", "kind": "Other"}, {"name": "mat", "kind": "Other"}, {"name": "bmat", "kind": "Other"}, {"name": "_AnyStr_contra", "kind": "Other"}, {"name": "_IOProtocol", "kind": "LocalType"}, {"name": "_MemMapIOProtocol", "kind": "LocalType"}, {"name": "_SupportsWrite", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "__version__", "kind": "Other"}, {"name": "__git_version__", "kind": "Other"}, {"name": "test", "kind": "Other"}, {"name": "round", "kind": "Other"}, {"name": "round_", "kind": "Other"}, {"name": "max", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "product", "kind": "Other"}, {"name": "cumproduct", "kind": "Other"}, {"name": "sometrue", "kind": "Other"}, {"name": "alltrue", "kind": "Other"}, {"name": "show_config", "kind": "Other"}, {"name": "_NdArraySubClass", "kind": "Other"}, {"name": "_DTypeScalar_co", "kind": "Other"}, {"name": "_ByteOrder", "kind": "Other"}, {"name": "dtype", "kind": "LocalType"}, {"name": "_ArrayLikeInt", "kind": "Other"}, {"name": "_FlatIterSelf", "kind": "Other"}, {"name": "flatiter", "kind": "LocalType"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "_OrderACF", "kind": "Other"}, {"name": "_OrderCF", "kind": "Other"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "_PartitionKind", "kind": "Other"}, {"name": "_SortKind", "kind": "Other"}, {"name": "_SortSide", "kind": "Other"}, {"name": "_ArraySelf", "kind": "Other"}, {"name": "_ArrayOrScalarCommon", "kind": "LocalType"}, {"name": "_DType", "kind": "Other"}, {"name": "_DType_co", "kind": "Other"}, {"name": "_FlexDType", "kind": "Other"}, {"name": "_ShapeType", "kind": "Other"}, {"name": "_ShapeType2", "kind": "Other"}, {"name": "_NumberType", "kind": "Other"}, {"name": "_SupportsBuffer", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_2Tuple", "kind": "Other"}, {"name": "_CastingKind", "kind": "Other"}, {"name": "_ArrayUInt_co", "kind": "Other"}, {"name": "_ArrayInt_co", "kind": "Other"}, {"name": "_ArrayFloat_co", "kind": "Other"}, {"name": "_ArrayComplex_co", "kind": "Other"}, {"name": "_ArrayNumber_co", "kind": "Other"}, {"name": "_ArrayTD64_co", "kind": "Other"}, {"name": "_dtype", "kind": "Other"}, {"name": "_PyCapsule", "kind": "Other"}, {"name": "_SupportsItem", "kind": "LocalType"}, {"name": "_SupportsReal", "kind": "LocalType"}, {"name": "_SupportsImag", "kind": "LocalType"}, {"name": "ndarray", "kind": "LocalType"}, {"name": "_ScalarType", "kind": "Other"}, {"name": "_NBit1", "kind": "Other"}, {"name": "_NBit2", "kind": "Other"}, {"name": "generic", "kind": "LocalType"}, {"name": "number", "kind": "LocalType"}, {"name": "bool_", "kind": "LocalType"}, {"name": "object_", "kind": "LocalType"}, {"name": "_DatetimeScalar", "kind": "LocalType"}, {"name": "datetime64", "kind": "LocalType"}, {"name": "_IntValue", "kind": "Other"}, {"name": "_FloatValue", "kind": "Other"}, {"name": "_ComplexValue", "kind": "Other"}, {"name": "integer", "kind": "LocalType"}, {"name": "signedinteger", "kind": "LocalType"}, {"name": "int8", "kind": "Other"}, {"name": "int16", "kind": "Other"}, {"name": "int32", "kind": "Other"}, {"name": "int64", "kind": "Other"}, {"name": "byte", "kind": "Other"}, {"name": "short", "kind": "Other"}, {"name": "intc", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "longlong", "kind": "Other"}, {"name": "timedelta64", "kind": "LocalType"}, {"name": "unsignedinteger", "kind": "LocalType"}, {"name": "uint8", "kind": "Other"}, {"name": "uint16", "kind": "Other"}, {"name": "uint32", "kind": "Other"}, {"name": "uint64", "kind": "Other"}, {"name": "ubyte", "kind": "Other"}, {"name": "ushort", "kind": "Other"}, {"name": "uintc", "kind": "Other"}, {"name": "uintp", "kind": "Other"}, {"name": "uint", "kind": "Other"}, {"name": "ulonglong", "kind": "Other"}, {"name": "inexact", "kind": "LocalType"}, {"name": "_IntType", "kind": "Other"}, {"name": "_FloatType", "kind": "Other"}, {"name": "floating", "kind": "LocalType"}, {"name": "float16", "kind": "Other"}, {"name": "float32", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "half", "kind": "Other"}, {"name": "single", "kind": "Other"}, {"name": "double", "kind": "Other"}, {"name": "float_", "kind": "Other"}, {"name": "longdouble", "kind": "Other"}, {"name": "longfloat", "kind": "Other"}, {"name": "complexfloating", "kind": "LocalType"}, {"name": "complex64", "kind": "Other"}, {"name": "complex128", "kind": "Other"}, {"name": "csingle", "kind": "Other"}, {"name": "singlecomplex", "kind": "Other"}, {"name": "cdouble", "kind": "Other"}, {"name": "complex_", "kind": "Other"}, {"name": "cfloat", "kind": "Other"}, {"name": "clongdouble", "kind": "Other"}, {"name": "clongfloat", "kind": "Other"}, {"name": "longcomplex", "kind": "Other"}, {"name": "flexible", "kind": "LocalType"}, {"name": "void", "kind": "LocalType"}, {"name": "character", "kind": "LocalType"}, {"name": "bytes_", "kind": "LocalType"}, {"name": "string_", "kind": "Other"}, {"name": "str_", "kind": "LocalType"}, {"name": "unicode_", "kind": "Other"}, {"name": "Inf", "kind": "Other"}, {"name": "Infinity", "kind": "Other"}, {"name": "NAN", "kind": "Other"}, {"name": "NINF", "kind": "Other"}, {"name": "NZERO", "kind": "Other"}, {"name": "NaN", "kind": "Other"}, {"name": "PINF", "kind": "Other"}, {"name": "PZERO", "kind": "Other"}, {"name": "e", "kind": "Other"}, {"name": "euler_gamma", "kind": "Other"}, {"name": "inf", "kind": "Other"}, {"name": "infty", "kind": "Other"}, {"name": "nan", "kind": "Other"}, {"name": "pi", "kind": "Other"}, {"name": "ERR_IGNORE", "kind": "Other"}, {"name": "ERR_WARN", "kind": "Other"}, {"name": "ERR_RAISE", "kind": "Other"}, {"name": "ERR_CALL", "kind": "Other"}, {"name": "ERR_PRINT", "kind": "Other"}, {"name": "ERR_LOG", "kind": "Other"}, {"name": "ERR_DEFAULT", "kind": "Other"}, {"name": "SHIFT_DIVIDEBYZERO", "kind": "Other"}, {"name": "SHIFT_OVERFLOW", "kind": "Other"}, {"name": "SHIFT_UNDERFLOW", "kind": "Other"}, {"name": "SHIFT_INVALID", "kind": "Other"}, {"name": "FPE_DIVIDEBYZERO", "kind": "Other"}, {"name": "FPE_OVERFLOW", "kind": "Other"}, {"name": "FPE_UNDERFLOW", "kind": "Other"}, {"name": "FPE_INVALID", "kind": "Other"}, {"name": "FLOATING_POINT_SUPPORT", "kind": "Other"}, {"name": "UFUNC_BUFSIZE_DEFAULT", "kind": "Other"}, {"name": "little_endian", "kind": "Other"}, {"name": "True_", "kind": "Other"}, {"name": "False_", "kind": "Other"}, {"name": "UFUNC_PYVALS_NAME", "kind": "Other"}, {"name": "newaxis", "kind": "Other"}, {"name": "ufunc", "kind": "LocalType"}, {"name": "absolute", "kind": "Other"}, {"name": "add", "kind": "Other"}, {"name": "arccos", "kind": "Other"}, {"name": "arccosh", "kind": "Other"}, {"name": "arcsin", "kind": "Other"}, {"name": "arcsinh", "kind": "Other"}, {"name": "arctan2", "kind": "Other"}, {"name": "arctan", "kind": "Other"}, {"name": "arctanh", "kind": "Other"}, {"name": "bitwise_and", "kind": "Other"}, {"name": "bitwise_not", "kind": "Other"}, {"name": "bitwise_or", "kind": "Other"}, {"name": "bitwise_xor", "kind": "Other"}, {"name": "cbrt", "kind": "Other"}, {"name": "ceil", "kind": "Other"}, {"name": "conj", "kind": "Other"}, {"name": "conjugate", "kind": "Other"}, {"name": "copysign", "kind": "Other"}, {"name": "cos", "kind": "Other"}, {"name": "cosh", "kind": "Other"}, {"name": "deg2rad", "kind": "Other"}, {"name": "degrees", "kind": "Other"}, {"name": "divide", "kind": "Other"}, {"name": "divmod", "kind": "Other"}, {"name": "equal", "kind": "Other"}, {"name": "exp2", "kind": "Other"}, {"name": "exp", "kind": "Other"}, {"name": "expm1", "kind": "Other"}, {"name": "fabs", "kind": "Other"}, {"name": "float_power", "kind": "Other"}, {"name": "floor", "kind": "Other"}, {"name": "floor_divide", "kind": "Other"}, {"name": "fmax", "kind": "Other"}, {"name": "fmin", "kind": "Other"}, {"name": "fmod", "kind": "Other"}, {"name": "frexp", "kind": "Other"}, {"name": "gcd", "kind": "Other"}, {"name": "greater", "kind": "Other"}, {"name": "greater_equal", "kind": "Other"}, {"name": "heaviside", "kind": "Other"}, {"name": "hypot", "kind": "Other"}, {"name": "invert", "kind": "Other"}, {"name": "isfinite", "kind": "Other"}, {"name": "isinf", "kind": "Other"}, {"name": "isnan", "kind": "Other"}, {"name": "isnat", "kind": "Other"}, {"name": "lcm", "kind": "Other"}, {"name": "ldexp", "kind": "Other"}, {"name": "left_shift", "kind": "Other"}, {"name": "less", "kind": "Other"}, {"name": "less_equal", "kind": "Other"}, {"name": "log10", "kind": "Other"}, {"name": "log1p", "kind": "Other"}, {"name": "log2", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "logaddexp2", "kind": "Other"}, {"name": "logaddexp", "kind": "Other"}, {"name": "logical_and", "kind": "Other"}, {"name": "logical_not", "kind": "Other"}, {"name": "logical_or", "kind": "Other"}, {"name": "logical_xor", "kind": "Other"}, {"name": "matmul", "kind": "Other"}, {"name": "maximum", "kind": "Other"}, {"name": "minimum", "kind": "Other"}, {"name": "mod", "kind": "Other"}, {"name": "modf", "kind": "Other"}, {"name": "multiply", "kind": "Other"}, {"name": "negative", "kind": "Other"}, {"name": "nextafter", "kind": "Other"}, {"name": "not_equal", "kind": "Other"}, {"name": "positive", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "rad2deg", "kind": "Other"}, {"name": "radians", "kind": "Other"}, {"name": "reciprocal", "kind": "Other"}, {"name": "remainder", "kind": "Other"}, {"name": "right_shift", "kind": "Other"}, {"name": "rint", "kind": "Other"}, {"name": "sign", "kind": "Other"}, {"name": "signbit", "kind": "Other"}, {"name": "sin", "kind": "Other"}, {"name": "sinh", "kind": "Other"}, {"name": "spacing", "kind": "Other"}, {"name": "sqrt", "kind": "Other"}, {"name": "square", "kind": "Other"}, {"name": "subtract", "kind": "Other"}, {"name": "tan", "kind": "Other"}, {"name": "tanh", "kind": "Other"}, {"name": "true_divide", "kind": "Other"}, {"name": "trunc", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "_CopyMode", "kind": "LocalType"}, {"name": "ModuleDeprecationWarning", "kind": "LocalType"}, {"name": "VisibleDeprecationWarning", "kind": "LocalType"}, {"name": "ComplexWarning", "kind": "LocalType"}, {"name": "RankWarning", "kind": "LocalType"}, {"name": "TooHardError", "kind": "LocalType"}, {"name": "AxisError", "kind": "LocalType"}, {"name": "_CallType", "kind": "Other"}, {"name": "errstate", "kind": "LocalType"}, {"name": "_no_nep50_warning", "kind": "Other"}, {"name": "_get_promotion_state", "kind": "Other"}, {"name": "_set_promotion_state", "kind": "Other"}, {"name": "ndenumerate", "kind": "LocalType"}, {"name": "ndindex", "kind": "LocalType"}, {"name": "DataSource", "kind": "LocalType"}, {"name": "broadcast", "kind": "LocalType"}, {"name": "busdaycalendar", "kind": "LocalType"}, {"name": "finfo", "kind": "LocalType"}, {"name": "iinfo", "kind": "LocalType"}, {"name": "format_parser", "kind": "LocalType"}, {"name": "recarray", "kind": "LocalType"}, {"name": "record", "kind": "LocalType"}, {"name": "_NDIterFlagsKind", "kind": "Other"}, {"name": "_NDIterOpFlagsKind", "kind": "Other"}, {"name": "nditer", "kind": "LocalType"}, {"name": "_MemMapModeKind", "kind": "Other"}, {"name": "memmap", "kind": "LocalType"}, {"name": "vectorize", "kind": "LocalType"}, {"name": "poly1d", "kind": "LocalType"}, {"name": "matrix", "kind": "LocalType"}, {"name": "_CharType", "kind": "Other"}, {"name": "_CharDType", "kind": "Other"}, {"name": "_CharArray", "kind": "Other"}, {"name": "chararray", "kind": "LocalType"}, {"name": "_SupportsDLPack", "kind": "LocalType"}, {"name": "from_dlpack", "kind": "Other"}], "typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AbstractAsyncContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractAsyncContextManager"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "BuiltinFunctionType", "kind": "ImportedType", "fullname": "types.BuiltinFunctionType"}, {"name": "CodeType", "kind": "ImportedType", "fullname": "types.CodeType"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "FunctionType", "kind": "ImportedType", "fullname": "types.FunctionType"}, {"name": "MethodDescriptorType", "kind": "ImportedType", "fullname": "types.MethodDescriptorType"}, {"name": "MethodType", "kind": "ImportedType", "fullname": "types.MethodType"}, {"name": "MethodWrapperType", "kind": "ImportedType", "fullname": "types.MethodWrapperType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "WrapperDescriptorType", "kind": "ImportedType", "fullname": "types.WrapperDescriptorType"}, {"name": "_Never", "kind": "Other"}, {"name": "_ParamSpec", "kind": "LocalType"}, {"name": "_final", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "_promote", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "LocalType"}, {"name": "ParamSpecKwargs", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "LocalType"}, {"name": "_S", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "_Alias", "kind": "LocalType"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "_ProtocolMeta", "kind": "LocalType"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "LocalType"}, {"name": "SupportsFloat", "kind": "LocalType"}, {"name": "SupportsComplex", "kind": "LocalType"}, {"name": "SupportsBytes", "kind": "LocalType"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "SupportsAbs", "kind": "LocalType"}, {"name": "SupportsRound", "kind": "LocalType"}, {"name": "Sized", "kind": "LocalType"}, {"name": "Hashable", "kind": "LocalType"}, {"name": "Iterable", "kind": "LocalType"}, {"name": "Iterator", "kind": "LocalType"}, {"name": "Reversible", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "Generator", "kind": "LocalType"}, {"name": "Awaitable", "kind": "LocalType"}, {"name": "Coroutine", "kind": "LocalType"}, {"name": "AwaitableGenerator", "kind": "LocalType"}, {"name": "AsyncIterable", "kind": "LocalType"}, {"name": "AsyncIterator", "kind": "LocalType"}, {"name": "AsyncGenerator", "kind": "LocalType"}, {"name": "Container", "kind": "LocalType"}, {"name": "Collection", "kind": "LocalType"}, {"name": "Sequence", "kind": "LocalType"}, {"name": "MutableSequence", "kind": "LocalType"}, {"name": "AbstractSet", "kind": "LocalType"}, {"name": "MutableSet", "kind": "LocalType"}, {"name": "MappingView", "kind": "LocalType"}, {"name": "ItemsView", "kind": "LocalType"}, {"name": "KeysView", "kind": "LocalType"}, {"name": "ValuesView", "kind": "LocalType"}, {"name": "Mapping", "kind": "LocalType"}, {"name": "MutableMapping", "kind": "LocalType"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "LocalType"}, {"name": "BinaryIO", "kind": "LocalType"}, {"name": "TextIO", "kind": "LocalType"}, {"name": "ByteString", "kind": "Other"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "ForwardRef", "kind": "LocalType"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "_type_repr", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "builtins": [{"name": "object", "kind": "LocalType"}, {"name": "bool", "kind": "LocalType"}, {"name": "function", "kind": "LocalType"}, {"name": "None", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "reveal_locals", "kind": "Other"}, {"name": "True", "kind": "Other"}, {"name": "False", "kind": "Other"}, {"name": "__debug__", "kind": "Other"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T3", "kind": "Other"}, {"name": "_T4", "kind": "Other"}, {"name": "_T5", "kind": "Other"}, {"name": "_SupportsNextT", "kind": "Other"}, {"name": "_SupportsAnextT", "kind": "Other"}, {"name": "_AwaitableT", "kind": "Other"}, {"name": "_AwaitableT_co", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "staticmethod", "kind": "LocalType"}, {"name": "classmethod", "kind": "LocalType"}, {"name": "type", "kind": "LocalType"}, {"name": "super", "kind": "LocalType"}, {"name": "_PositiveInteger", "kind": "Other"}, {"name": "_NegativeInteger", "kind": "Other"}, {"name": "_LiteralInteger", "kind": "Other"}, {"name": "int", "kind": "LocalType"}, {"name": "float", "kind": "LocalType"}, {"name": "complex", "kind": "LocalType"}, {"name": "_FormatMapMapping", "kind": "LocalType"}, {"name": "_TranslateTable", "kind": "LocalType"}, {"name": "str", "kind": "LocalType"}, {"name": "bytes", "kind": "LocalType"}, {"name": "bytearray", "kind": "LocalType"}, {"name": "memoryview", "kind": "LocalType"}, {"name": "slice", "kind": "LocalType"}, {"name": "tuple", "kind": "LocalType"}, {"name": "list", "kind": "LocalType"}, {"name": "dict", "kind": "LocalType"}, {"name": "set", "kind": "LocalType"}, {"name": "frozenset", "kind": "LocalType"}, {"name": "enumerate", "kind": "LocalType"}, {"name": "range", "kind": "LocalType"}, {"name": "property", "kind": "LocalType"}, {"name": "_NotImplementedType", "kind": "LocalType"}, {"name": "NotImplemented", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "ascii", "kind": "Other"}, {"name": "bin", "kind": "Other"}, {"name": "breakpoint", "kind": "Other"}, {"name": "callable", "kind": "Other"}, {"name": "chr", "kind": "Other"}, {"name": "_PathLike", "kind": "LocalType"}, {"name": "aiter", "kind": "Other"}, {"name": "_SupportsSynchronousAnext", "kind": "LocalType"}, {"name": "anext", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "credits", "kind": "Other"}, {"name": "delattr", "kind": "Other"}, {"name": "dir", "kind": "Other"}, {"name": "divmod", "kind": "Other"}, {"name": "eval", "kind": "Other"}, {"name": "exec", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "filter", "kind": "LocalType"}, {"name": "format", "kind": "Other"}, {"name": "getattr", "kind": "Other"}, {"name": "globals", "kind": "Other"}, {"name": "hasattr", "kind": "Other"}, {"name": "hash", "kind": "Other"}, {"name": "help", "kind": "Other"}, {"name": "hex", "kind": "Other"}, {"name": "id", "kind": "Other"}, {"name": "input", "kind": "Other"}, {"name": "_GetItemIterable", "kind": "LocalType"}, {"name": "iter", "kind": "Other"}, {"name": "_ClassInfo", "kind": "Other"}, {"name": "isinstance", "kind": "Other"}, {"name": "issubclass", "kind": "Other"}, {"name": "len", "kind": "Other"}, {"name": "license", "kind": "Other"}, {"name": "locals", "kind": "Other"}, {"name": "map", "kind": "LocalType"}, {"name": "max", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "next", "kind": "Other"}, {"name": "oct", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "ord", "kind": "Other"}, {"name": "_SupportsWriteAndFlush", "kind": "LocalType"}, {"name": "print", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_M", "kind": "Other"}, {"name": "_SupportsPow2", "kind": "LocalType"}, {"name": "_SupportsPow3NoneOnly", "kind": "LocalType"}, {"name": "_SupportsPow3", "kind": "LocalType"}, {"name": "_SupportsSomeKindOfPow", "kind": "Other"}, {"name": "pow", "kind": "Other"}, {"name": "quit", "kind": "Other"}, {"name": "reversed", "kind": "LocalType"}, {"name": "repr", "kind": "Other"}, {"name": "_SupportsRound1", "kind": "LocalType"}, {"name": "_SupportsRound2", "kind": "LocalType"}, {"name": "round", "kind": "Other"}, {"name": "setattr", "kind": "Other"}, {"name": "sorted", "kind": "Other"}, {"name": "_AddableT1", "kind": "Other"}, {"name": "_AddableT2", "kind": "Other"}, {"name": "_SupportsSumWithNoDefaultGiven", "kind": "LocalType"}, {"name": "_SupportsSumNoDefaultT", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "vars", "kind": "Other"}, {"name": "zip", "kind": "LocalType"}, {"name": "__import__", "kind": "Other"}, {"name": "__build_class__", "kind": "Other"}, {"name": "ellipsis", "kind": "LocalType"}, {"name": "Ellipsis", "kind": "Other"}, {"name": "BaseException", "kind": "LocalType"}, {"name": "GeneratorExit", "kind": "LocalType"}, {"name": "KeyboardInterrupt", "kind": "LocalType"}, {"name": "SystemExit", "kind": "LocalType"}, {"name": "Exception", "kind": "LocalType"}, {"name": "StopIteration", "kind": "LocalType"}, {"name": "OSError", "kind": "LocalType"}, {"name": "EnvironmentError", "kind": "Other"}, {"name": "IOError", "kind": "Other"}, {"name": "ArithmeticError", "kind": "LocalType"}, {"name": "AssertionError", "kind": "LocalType"}, {"name": "AttributeError", "kind": "LocalType"}, {"name": "BufferError", "kind": "LocalType"}, {"name": "EOFError", "kind": "LocalType"}, {"name": "ImportError", "kind": "LocalType"}, {"name": "LookupError", "kind": "LocalType"}, {"name": "MemoryError", "kind": "LocalType"}, {"name": "NameError", "kind": "LocalType"}, {"name": "ReferenceError", "kind": "LocalType"}, {"name": "RuntimeError", "kind": "LocalType"}, {"name": "StopAsyncIteration", "kind": "LocalType"}, {"name": "SyntaxError", "kind": "LocalType"}, {"name": "SystemError", "kind": "LocalType"}, {"name": "TypeError", "kind": "LocalType"}, {"name": "ValueError", "kind": "LocalType"}, {"name": "FloatingPointError", "kind": "LocalType"}, {"name": "OverflowError", "kind": "LocalType"}, {"name": "ZeroDivisionError", "kind": "LocalType"}, {"name": "ModuleNotFoundError", "kind": "LocalType"}, {"name": "IndexError", "kind": "LocalType"}, {"name": "KeyError", "kind": "LocalType"}, {"name": "UnboundLocalError", "kind": "LocalType"}, {"name": "BlockingIOError", "kind": "LocalType"}, {"name": "ChildProcessError", "kind": "LocalType"}, {"name": "ConnectionError", "kind": "LocalType"}, {"name": "BrokenPipeError", "kind": "LocalType"}, {"name": "ConnectionAbortedError", "kind": "LocalType"}, {"name": "ConnectionRefusedError", "kind": "LocalType"}, {"name": "ConnectionResetError", "kind": "LocalType"}, {"name": "FileExistsError", "kind": "LocalType"}, {"name": "FileNotFoundError", "kind": "LocalType"}, {"name": "InterruptedError", "kind": "LocalType"}, {"name": "IsADirectoryError", "kind": "LocalType"}, {"name": "NotADirectoryError", "kind": "LocalType"}, {"name": "PermissionError", "kind": "LocalType"}, {"name": "ProcessLookupError", "kind": "LocalType"}, {"name": "TimeoutError", "kind": "LocalType"}, {"name": "NotImplementedError", "kind": "LocalType"}, {"name": "RecursionError", "kind": "LocalType"}, {"name": "IndentationError", "kind": "LocalType"}, {"name": "TabError", "kind": "LocalType"}, {"name": "UnicodeError", "kind": "LocalType"}, {"name": "UnicodeDecodeError", "kind": "LocalType"}, {"name": "UnicodeEncodeError", "kind": "LocalType"}, {"name": "UnicodeTranslateError", "kind": "LocalType"}, {"name": "Warning", "kind": "LocalType"}, {"name": "UserWarning", "kind": "LocalType"}, {"name": "DeprecationWarning", "kind": "LocalType"}, {"name": "SyntaxWarning", "kind": "LocalType"}, {"name": "RuntimeWarning", "kind": "LocalType"}, {"name": "FutureWarning", "kind": "LocalType"}, {"name": "PendingDeprecationWarning", "kind": "LocalType"}, {"name": "ImportWarning", "kind": "LocalType"}, {"name": "UnicodeWarning", "kind": "LocalType"}, {"name": "BytesWarning", "kind": "LocalType"}, {"name": "ResourceWarning", "kind": "LocalType"}, {"name": "EncodingWarning", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "collections.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}], "sys": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "_object", "kind": "ImportedType", "fullname": "builtins.object"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "PathEntryFinder", "kind": "ImportedType", "fullname": "importlib.abc.PathEntryFinder"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ExitCode", "kind": "Other"}, {"name": "_OptExcInfo", "kind": "Other"}, {"name": "_MetaPathFinder", "kind": "LocalType"}, {"name": "abiflags", "kind": "Other"}, {"name": "argv", "kind": "Other"}, {"name": "base_exec_prefix", "kind": "Other"}, {"name": "base_prefix", "kind": "Other"}, {"name": "byteorder", "kind": "Other"}, {"name": "builtin_module_names", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "dont_write_bytecode", "kind": "Other"}, {"name": "displayhook", "kind": "Other"}, {"name": "excepthook", "kind": "Other"}, {"name": "exec_prefix", "kind": "Other"}, {"name": "executable", "kind": "Other"}, {"name": "float_repr_style", "kind": "Other"}, {"name": "hexversion", "kind": "Other"}, {"name": "last_type", "kind": "Other"}, {"name": "last_value", "kind": "Other"}, {"name": "last_traceback", "kind": "Other"}, {"name": "maxsize", "kind": "Other"}, {"name": "maxunicode", "kind": "Other"}, {"name": "meta_path", "kind": "Other"}, {"name": "modules", "kind": "Other"}, {"name": "orig_argv", "kind": "Other"}, {"name": "path", "kind": "Other"}, {"name": "path_hooks", "kind": "Other"}, {"name": "path_importer_cache", "kind": "Other"}, {"name": "platform", "kind": "Other"}, {"name": "platlibdir", "kind": "Other"}, {"name": "prefix", "kind": "Other"}, {"name": "pycache_prefix", "kind": "Other"}, {"name": "ps1", "kind": "Other"}, {"name": "ps2", "kind": "Other"}, {"name": "stdin", "kind": "Other"}, {"name": "stdout", "kind": "Other"}, {"name": "stderr", "kind": "Other"}, {"name": "stdlib_module_names", "kind": "Other"}, {"name": "__stdin__", "kind": "Other"}, {"name": "__stdout__", "kind": "Other"}, {"name": "__stderr__", "kind": "Other"}, {"name": "tracebacklimit", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "api_version", "kind": "Other"}, {"name": "warnoptions", "kind": "Other"}, {"name": "_xoptions", "kind": "Other"}, {"name": "_UninstantiableStructseq", "kind": "Other"}, {"name": "flags", "kind": "Other"}, {"name": "_FlagTuple", "kind": "Other"}, {"name": "_flags", "kind": "LocalType"}, {"name": "float_info", "kind": "Other"}, {"name": "_float_info", "kind": "LocalType"}, {"name": "hash_info", "kind": "Other"}, {"name": "_hash_info", "kind": "LocalType"}, {"name": "implementation", "kind": "Other"}, {"name": "_implementation", "kind": "LocalType"}, {"name": "int_info", "kind": "Other"}, {"name": "_int_info", "kind": "LocalType"}, {"name": "_ThreadInfoName", "kind": "Other"}, {"name": "_ThreadInfoLock", "kind": "Other"}, {"name": "_thread_info", "kind": "LocalType"}, {"name": "thread_info", "kind": "Other"}, {"name": "_version_info", "kind": "LocalType"}, {"name": "version_info", "kind": "Other"}, {"name": "call_tracing", "kind": "Other"}, {"name": "_clear_type_cache", "kind": "Other"}, {"name": "_current_frames", "kind": "Other"}, {"name": "_getframe", "kind": "Other"}, {"name": "_debugmallocstats", "kind": "Other"}, {"name": "__displayhook__", "kind": "Other"}, {"name": "__excepthook__", "kind": "Other"}, {"name": "exc_info", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "getallocatedblocks", "kind": "Other"}, {"name": "getdefaultencoding", "kind": "Other"}, {"name": "getdlopenflags", "kind": "Other"}, {"name": "getfilesystemencoding", "kind": "Other"}, {"name": "getfilesystemencodeerrors", "kind": "Other"}, {"name": "getrefcount", "kind": "Other"}, {"name": "getrecursionlimit", "kind": "Other"}, {"name": "getsizeof", "kind": "Other"}, {"name": "getswitchinterval", "kind": "Other"}, {"name": "getprofile", "kind": "Other"}, {"name": "setprofile", "kind": "Other"}, {"name": "gettrace", "kind": "Other"}, {"name": "settrace", "kind": "Other"}, {"name": "intern", "kind": "Other"}, {"name": "is_finalizing", "kind": "Other"}, {"name": "breakpointhook", "kind": "Other"}, {"name": "__breakpointhook__", "kind": "Other"}, {"name": "setdlopenflags", "kind": "Other"}, {"name": "setrecursionlimit", "kind": "Other"}, {"name": "setswitchinterval", "kind": "Other"}, {"name": "gettotalrefcount", "kind": "Other"}, {"name": "UnraisableHookArgs", "kind": "LocalType"}, {"name": "unraisablehook", "kind": "Other"}, {"name": "__unraisablehook__", "kind": "Other"}, {"name": "addaudithook", "kind": "Other"}, {"name": "audit", "kind": "Other"}, {"name": "_AsyncgenHook", "kind": "Other"}, {"name": "_asyncgen_hooks", "kind": "LocalType"}, {"name": "get_asyncgen_hooks", "kind": "Other"}, {"name": "set_asyncgen_hooks", "kind": "Other"}, {"name": "get_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_int_max_str_digits", "kind": "Other"}, {"name": "get_int_max_str_digits", "kind": "Other"}], "_collections_abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "MappingProxyType", "kind": "ImportedType", "fullname": "types.MappingProxyType"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Protocol", "kind": "Other"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "dict_keys", "kind": "LocalType"}, {"name": "dict_values", "kind": "LocalType"}, {"name": "dict_items", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "_typeshed": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Field", "kind": "ImportedType", "fullname": "dataclasses.Field"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Buffer", "kind": "ImportedType", "fullname": "typing_extensions.Buffer"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_KT_contra", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "Incomplete", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "IdentityFunction", "kind": "LocalType"}, {"name": "SupportsNext", "kind": "LocalType"}, {"name": "SupportsAnext", "kind": "LocalType"}, {"name": "SupportsDunderLT", "kind": "LocalType"}, {"name": "SupportsDunderGT", "kind": "LocalType"}, {"name": "SupportsDunderLE", "kind": "LocalType"}, {"name": "SupportsDunderGE", "kind": "LocalType"}, {"name": "SupportsAllComparisons", "kind": "LocalType"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "SupportsAdd", "kind": "LocalType"}, {"name": "SupportsRAdd", "kind": "LocalType"}, {"name": "SupportsSub", "kind": "LocalType"}, {"name": "SupportsRSub", "kind": "LocalType"}, {"name": "SupportsDivMod", "kind": "LocalType"}, {"name": "SupportsRDivMod", "kind": "LocalType"}, {"name": "SupportsIter", "kind": "LocalType"}, {"name": "SupportsAiter", "kind": "LocalType"}, {"name": "SupportsLenAndGetItem", "kind": "LocalType"}, {"name": "SupportsTrunc", "kind": "LocalType"}, {"name": "SupportsItems", "kind": "LocalType"}, {"name": "SupportsKeysAndGetItem", "kind": "LocalType"}, {"name": "SupportsGetItem", "kind": "LocalType"}, {"name": "SupportsItemAccess", "kind": "LocalType"}, {"name": "StrPath", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "OpenTextModeUpdating", "kind": "Other"}, {"name": "OpenTextModeWriting", "kind": "Other"}, {"name": "OpenTextModeReading", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "HasFileno", "kind": "LocalType"}, {"name": "FileDescriptor", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "SupportsRead", "kind": "LocalType"}, {"name": "SupportsReadline", "kind": "LocalType"}, {"name": "SupportsNoArgReadline", "kind": "LocalType"}, {"name": "SupportsWrite", "kind": "LocalType"}, {"name": "ReadOnlyBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "LocalType"}, {"name": "IndexableBuffer", "kind": "LocalType"}, {"name": "SupportsGetItemBuffer", "kind": "LocalType"}, {"name": "SizedBuffer", "kind": "LocalType"}, {"name": "_BufferWithLen", "kind": "Other"}, {"name": "ExcInfo", "kind": "Other"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "NoneType", "kind": "ImportedType", "fullname": "types.NoneType"}, {"name": "structseq", "kind": "LocalType"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "StrOrLiteralStr", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "DataclassInstance", "kind": "LocalType"}], "typing_extensions": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing", "kind": "Module", "fullname": "typing"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "List", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Set", "kind": "Other"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Text", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Tuple", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "cast", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "Protocol", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "runtime", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "IntVar", "kind": "Other"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "TypedDict", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "_AnnotatedAlias", "kind": "Other"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "Never", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "assert_never", "kind": "Other"}, {"name": "assert_type", "kind": "Other"}, {"name": "clear_overloads", "kind": "Other"}, {"name": "get_overloads", "kind": "Other"}, {"name": "Required", "kind": "Other"}, {"name": "NotRequired", "kind": "Other"}, {"name": "Unpack", "kind": "Other"}, {"name": "dataclass_transform", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "TypeVarTuple", "kind": "LocalType"}, {"name": "deprecated", "kind": "Other"}, {"name": "override", "kind": "Other"}, {"name": "get_original_bases", "kind": "Other"}, {"name": "TypeAliasType", "kind": "LocalType"}, {"name": "Buffer", "kind": "LocalType"}, {"name": "is_protocol", "kind": "Other"}, {"name": "get_protocol_members", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}], "types": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeVarTuple", "kind": "ImportedType", "fullname": "typing_extensions.TypeVarTuple"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_Cell", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "LambdaType", "kind": "Other"}, {"name": "CodeType", "kind": "LocalType"}, {"name": "MappingProxyType", "kind": "LocalType"}, {"name": "SimpleNamespace", "kind": "LocalType"}, {"name": "_LoaderProtocol", "kind": "LocalType"}, {"name": "ModuleType", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "GeneratorType", "kind": "LocalType"}, {"name": "AsyncGeneratorType", "kind": "LocalType"}, {"name": "CoroutineType", "kind": "LocalType"}, {"name": "_StaticFunctionType", "kind": "LocalType"}, {"name": "MethodType", "kind": "LocalType"}, {"name": "BuiltinFunctionType", "kind": "LocalType"}, {"name": "BuiltinMethodType", "kind": "Other"}, {"name": "WrapperDescriptorType", "kind": "LocalType"}, {"name": "MethodWrapperType", "kind": "LocalType"}, {"name": "MethodDescriptorType", "kind": "LocalType"}, {"name": "ClassMethodDescriptorType", "kind": "LocalType"}, {"name": "TracebackType", "kind": "LocalType"}, {"name": "FrameType", "kind": "LocalType"}, {"name": "GetSetDescriptorType", "kind": "LocalType"}, {"name": "MemberDescriptorType", "kind": "LocalType"}, {"name": "new_class", "kind": "Other"}, {"name": "resolve_bases", "kind": "Other"}, {"name": "prepare_class", "kind": "Other"}, {"name": "DynamicClassAttribute", "kind": "Other"}, {"name": "_Fn", "kind": "Other"}, {"name": "_R", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "coroutine", "kind": "Other"}, {"name": "CellType", "kind": "Other"}, {"name": "GenericAlias", "kind": "LocalType"}, {"name": "NoneType", "kind": "LocalType"}, {"name": "EllipsisType", "kind": "Other"}, {"name": "_NotImplementedType", "kind": "ImportedType", "fullname": "builtins._NotImplementedType"}, {"name": "NotImplementedType", "kind": "Other"}, {"name": "UnionType", "kind": "LocalType"}], "numpy.core._internal": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "ct", "kind": "Module", "fullname": "ctypes"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "c_intp", "kind": "Other"}, {"name": "_CastT", "kind": "Other"}, {"name": "_CT", "kind": "Other"}, {"name": "_PT", "kind": "Other"}, {"name": "_ctypes", "kind": "LocalType"}], "numpy._typing._callable": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "int8", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "float64", "kind": "Other"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "complex128", "kind": "Other"}, {"name": "_NBitInt", "kind": "Other"}, {"name": "_NBitDouble", "kind": "Other"}, {"name": "_BoolLike_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_NumberLike_co", "kind": "Other"}, {"name": "NBitBase", "kind": "ImportedType", "fullname": "numpy._typing.NBitBase"}, {"name": "NDArray", "kind": "Other"}, {"name": "_NestedSequence", "kind": "ImportedType", "fullname": "numpy._typing._nested_sequence._NestedSequence"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T1_contra", "kind": "Other"}, {"name": "_T2_contra", "kind": "Other"}, {"name": "_2Tuple", "kind": "Other"}, {"name": "_NBit1", "kind": "Other"}, {"name": "_NBit2", "kind": "Other"}, {"name": "_IntType", "kind": "Other"}, {"name": "_FloatType", "kind": "Other"}, {"name": "_NumberType", "kind": "Other"}, {"name": "_NumberType_co", "kind": "Other"}, {"name": "_GenericType_co", "kind": "Other"}, {"name": "_BoolOp", "kind": "LocalType"}, {"name": "_BoolBitOp", "kind": "LocalType"}, {"name": "_BoolSub", "kind": "LocalType"}, {"name": "_BoolTrueDiv", "kind": "LocalType"}, {"name": "_BoolMod", "kind": "LocalType"}, {"name": "_BoolDivMod", "kind": "LocalType"}, {"name": "_TD64Div", "kind": "LocalType"}, {"name": "_IntTrueDiv", "kind": "LocalType"}, {"name": "_UnsignedIntOp", "kind": "LocalType"}, {"name": "_UnsignedIntBitOp", "kind": "LocalType"}, {"name": "_UnsignedIntMod", "kind": "LocalType"}, {"name": "_UnsignedIntDivMod", "kind": "LocalType"}, {"name": "_SignedIntOp", "kind": "LocalType"}, {"name": "_SignedIntBitOp", "kind": "LocalType"}, {"name": "_SignedIntMod", "kind": "LocalType"}, {"name": "_SignedIntDivMod", "kind": "LocalType"}, {"name": "_FloatOp", "kind": "LocalType"}, {"name": "_FloatMod", "kind": "LocalType"}, {"name": "_FloatDivMod", "kind": "LocalType"}, {"name": "_ComplexOp", "kind": "LocalType"}, {"name": "_NumberOp", "kind": "LocalType"}, {"name": "_SupportsLT", "kind": "LocalType"}, {"name": "_SupportsGT", "kind": "LocalType"}, {"name": "_ComparisonOp", "kind": "LocalType"}], "numpy._typing._extended_precision": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "np", "kind": "Module", "fullname": "numpy"}, {"name": "_80Bit", "kind": "ImportedType", "fullname": "numpy._typing._80Bit"}, {"name": "_96Bit", "kind": "ImportedType", "fullname": "numpy._typing._96Bit"}, {"name": "_128Bit", "kind": "ImportedType", "fullname": "numpy._typing._128Bit"}, {"name": "_256Bit", "kind": "ImportedType", "fullname": "numpy._typing._256Bit"}, {"name": "uint128", "kind": "Other"}, {"name": "uint256", "kind": "Other"}, {"name": "int128", "kind": "Other"}, {"name": "int256", "kind": "Other"}, {"name": "float80", "kind": "Other"}, {"name": "float96", "kind": "Other"}, {"name": "float128", "kind": "Other"}, {"name": "float256", "kind": "Other"}, {"name": "complex160", "kind": "Other"}, {"name": "complex192", "kind": "Other"}, {"name": "complex256", "kind": "Other"}, {"name": "complex512", "kind": "Other"}], "numpy.core.defchararray": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Any", "kind": "Other"}, {"name": "chararray", "kind": "ImportedType", "fullname": "numpy.chararray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "int_", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "U_co", "kind": "Other"}, {"name": "S_co", "kind": "Other"}, {"name": "i_co", "kind": "Other"}, {"name": "b_co", "kind": "Other"}, {"name": "compare_chararrays", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_CharArray", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "equal", "kind": "Other"}, {"name": "not_equal", "kind": "Other"}, {"name": "greater_equal", "kind": "Other"}, {"name": "less_equal", "kind": "Other"}, {"name": "greater", "kind": "Other"}, {"name": "less", "kind": "Other"}, {"name": "add", "kind": "Other"}, {"name": "multiply", "kind": "Other"}, {"name": "mod", "kind": "Other"}, {"name": "capitalize", "kind": "Other"}, {"name": "center", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "expandtabs", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "ljust", "kind": "Other"}, {"name": "lower", "kind": "Other"}, {"name": "lstrip", "kind": "Other"}, {"name": "partition", "kind": "Other"}, {"name": "replace", "kind": "Other"}, {"name": "rjust", "kind": "Other"}, {"name": "rpartition", "kind": "Other"}, {"name": "rsplit", "kind": "Other"}, {"name": "rstrip", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitlines", "kind": "Other"}, {"name": "strip", "kind": "Other"}, {"name": "swapcase", "kind": "Other"}, {"name": "title", "kind": "Other"}, {"name": "translate", "kind": "Other"}, {"name": "upper", "kind": "Other"}, {"name": "zfill", "kind": "Other"}, {"name": "count", "kind": "Other"}, {"name": "endswith", "kind": "Other"}, {"name": "find", "kind": "Other"}, {"name": "index", "kind": "Other"}, {"name": "isalpha", "kind": "Other"}, {"name": "isalnum", "kind": "Other"}, {"name": "isdecimal", "kind": "Other"}, {"name": "isdigit", "kind": "Other"}, {"name": "islower", "kind": "Other"}, {"name": "isnumeric", "kind": "Other"}, {"name": "isspace", "kind": "Other"}, {"name": "istitle", "kind": "Other"}, {"name": "isupper", "kind": "Other"}, {"name": "rfind", "kind": "Other"}, {"name": "rindex", "kind": "Other"}, {"name": "startswith", "kind": "Other"}, {"name": "str_len", "kind": "Other"}, {"name": "array", "kind": "Other"}, {"name": "asarray", "kind": "Other"}], "numpy.core.records": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "format_parser", "kind": "ImportedType", "fullname": "numpy.format_parser"}, {"name": "record", "kind": "ImportedType", "fullname": "numpy.record"}, {"name": "recarray", "kind": "ImportedType", "fullname": "numpy.recarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "_ByteOrder", "kind": "Other"}, {"name": "_SupportsBuffer", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_ArrayLikeVoid_co", "kind": "Other"}, {"name": "_NestedSequence", "kind": "ImportedType", "fullname": "numpy._typing._nested_sequence._NestedSequence"}, {"name": "_SCT", "kind": "Other"}, {"name": "_RecArray", "kind": "Other"}, {"name": "_SupportsReadInto", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "fromarrays", "kind": "Other"}, {"name": "fromrecords", "kind": "Other"}, {"name": "fromstring", "kind": "Other"}, {"name": "fromfile", "kind": "Other"}, {"name": "array", "kind": "Other"}], "numpy.core.function_base": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "NDArray", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "linspace", "kind": "Other"}, {"name": "logspace", "kind": "Other"}, {"name": "geomspace", "kind": "Other"}, {"name": "add_newdoc", "kind": "Other"}], "numpy.core.fromnumeric": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "dt", "kind": "Module", "fullname": "datetime"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Union", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "uint64", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "int64", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "float16", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "_OrderACF", "kind": "Other"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "_PartitionKind", "kind": "Other"}, {"name": "_SortKind", "kind": "Other"}, {"name": "_SortSide", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_Shape", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_BoolLike_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "_NumberLike_co", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_SCT_uifcO", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "take", "kind": "Other"}, {"name": "reshape", "kind": "Other"}, {"name": "choose", "kind": "Other"}, {"name": "repeat", "kind": "Other"}, {"name": "put", "kind": "Other"}, {"name": "swapaxes", "kind": "Other"}, {"name": "transpose", "kind": "Other"}, {"name": "partition", "kind": "Other"}, {"name": "argpartition", "kind": "Other"}, {"name": "sort", "kind": "Other"}, {"name": "argsort", "kind": "Other"}, {"name": "argmax", "kind": "Other"}, {"name": "argmin", "kind": "Other"}, {"name": "searchsorted", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "squeeze", "kind": "Other"}, {"name": "diagonal", "kind": "Other"}, {"name": "trace", "kind": "Other"}, {"name": "ravel", "kind": "Other"}, {"name": "nonzero", "kind": "Other"}, {"name": "shape", "kind": "Other"}, {"name": "compress", "kind": "Other"}, {"name": "clip", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "cumsum", "kind": "Other"}, {"name": "ptp", "kind": "Other"}, {"name": "amax", "kind": "Other"}, {"name": "amin", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "cumprod", "kind": "Other"}, {"name": "ndim", "kind": "Other"}, {"name": "size", "kind": "Other"}, {"name": "around", "kind": "Other"}, {"name": "mean", "kind": "Other"}, {"name": "std", "kind": "Other"}, {"name": "var", "kind": "Other"}], "numpy.core._asarray": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_SupportsArrayFunc", "kind": "ImportedType", "fullname": "numpy._typing._array_like._SupportsArrayFunc"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_Requirements", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_RequirementsWithE", "kind": "Other"}, {"name": "require", "kind": "Other"}], "numpy.core._type_aliases": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "_SCTypes", "kind": "LocalType"}, {"name": "sctypeDict", "kind": "Other"}, {"name": "sctypes", "kind": "Other"}], "numpy.core._ufunc_config": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "_SupportsWrite", "kind": "ImportedType", "fullname": "numpy._SupportsWrite"}, {"name": "_ErrKind", "kind": "Other"}, {"name": "_ErrFunc", "kind": "Other"}, {"name": "_ErrDict", "kind": "LocalType"}, {"name": "_ErrDictOptional", "kind": "LocalType"}, {"name": "seterr", "kind": "Other"}, {"name": "geterr", "kind": "Other"}, {"name": "setbufsize", "kind": "Other"}, {"name": "getbufsize", "kind": "Other"}, {"name": "seterrcall", "kind": "Other"}, {"name": "geterrcall", "kind": "Other"}], "numpy.core.arrayprint": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "_GeneratorContextManager", "kind": "ImportedType", "fullname": "contextlib._GeneratorContextManager"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "longdouble", "kind": "Other"}, {"name": "clongdouble", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_CharLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_FloatMode", "kind": "Other"}, {"name": "_FormatDict", "kind": "LocalType"}, {"name": "_FormatOptions", "kind": "LocalType"}, {"name": "set_printoptions", "kind": "Other"}, {"name": "get_printoptions", "kind": "Other"}, {"name": "array2string", "kind": "Other"}, {"name": "format_float_scientific", "kind": "Other"}, {"name": "format_float_positional", "kind": "Other"}, {"name": "array_repr", "kind": "Other"}, {"name": "array_str", "kind": "Other"}, {"name": "set_string_function", "kind": "Other"}, {"name": "printoptions", "kind": "Other"}], "numpy.core.einsumfunc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_DTypeLikeBool", "kind": "Other"}, {"name": "_DTypeLikeUInt", "kind": "Other"}, {"name": "_DTypeLikeInt", "kind": "Other"}, {"name": "_DTypeLikeFloat", "kind": "Other"}, {"name": "_DTypeLikeComplex", "kind": "Other"}, {"name": "_DTypeLikeComplex_co", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_OptimizeKind", "kind": "Other"}, {"name": "_CastingSafe", "kind": "Other"}, {"name": "_CastingUnsafe", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "einsum", "kind": "Other"}, {"name": "einsum_path", "kind": "Other"}], "numpy.core.multiarray": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "dt", "kind": "Module", "fullname": "datetime"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "final", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "busdaycalendar", "kind": "ImportedType", "fullname": "numpy.busdaycalendar"}, {"name": "broadcast", "kind": "ImportedType", "fullname": "numpy.broadcast"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "nditer", "kind": "ImportedType", "fullname": "numpy.nditer"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "uint8", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "_OrderCF", "kind": "Other"}, {"name": "_CastingKind", "kind": "Other"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "_SupportsBuffer", "kind": "Other"}, {"name": "_IOProtocol", "kind": "ImportedType", "fullname": "numpy._IOProtocol"}, {"name": "_CopyMode", "kind": "ImportedType", "fullname": "numpy._CopyMode"}, {"name": "_NDIterFlagsKind", "kind": "Other"}, {"name": "_NDIterOpFlagsKind", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_SupportsArrayFunc", "kind": "ImportedType", "fullname": "numpy._typing._array_like._SupportsArrayFunc"}, {"name": "_NestedSequence", "kind": "ImportedType", "fullname": "numpy._typing._nested_sequence._NestedSequence"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeStr_co", "kind": "Other"}, {"name": "_ArrayLikeBytes_co", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_TD64Like_co", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_UnitKind", "kind": "Other"}, {"name": "_RollKind", "kind": "Other"}, {"name": "_SupportsLenAndGetItem", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "ALLOW_THREADS", "kind": "Other"}, {"name": "BUFSIZE", "kind": "Other"}, {"name": "CLIP", "kind": "Other"}, {"name": "WRAP", "kind": "Other"}, {"name": "RAISE", "kind": "Other"}, {"name": "MAXDIMS", "kind": "Other"}, {"name": "MAY_SHARE_BOUNDS", "kind": "Other"}, {"name": "MAY_SHARE_EXACT", "kind": "Other"}, {"name": "tracemalloc_domain", "kind": "Other"}, {"name": "empty_like", "kind": "Other"}, {"name": "array", "kind": "Other"}, {"name": "zeros", "kind": "Other"}, {"name": "empty", "kind": "Other"}, {"name": "unravel_index", "kind": "Other"}, {"name": "ravel_multi_index", "kind": "Other"}, {"name": "concatenate", "kind": "Other"}, {"name": "inner", "kind": "Other"}, {"name": "where", "kind": "Other"}, {"name": "lexsort", "kind": "Other"}, {"name": "can_cast", "kind": "Other"}, {"name": "min_scalar_type", "kind": "Other"}, {"name": "result_type", "kind": "Other"}, {"name": "dot", "kind": "Other"}, {"name": "vdot", "kind": "Other"}, {"name": "bincount", "kind": "Other"}, {"name": "copyto", "kind": "Other"}, {"name": "putmask", "kind": "Other"}, {"name": "packbits", "kind": "Other"}, {"name": "unpackbits", "kind": "Other"}, {"name": "shares_memory", "kind": "Other"}, {"name": "may_share_memory", "kind": "Other"}, {"name": "asarray", "kind": "Other"}, {"name": "asanyarray", "kind": "Other"}, {"name": "ascontiguousarray", "kind": "Other"}, {"name": "asfortranarray", "kind": "Other"}, {"name": "geterrobj", "kind": "Other"}, {"name": "seterrobj", "kind": "Other"}, {"name": "promote_types", "kind": "Other"}, {"name": "fromstring", "kind": "Other"}, {"name": "frompyfunc", "kind": "Other"}, {"name": "fromfile", "kind": "Other"}, {"name": "fromiter", "kind": "Other"}, {"name": "frombuffer", "kind": "Other"}, {"name": "arange", "kind": "Other"}, {"name": "datetime_data", "kind": "Other"}, {"name": "busday_count", "kind": "Other"}, {"name": "busday_offset", "kind": "Other"}, {"name": "is_busday", "kind": "Other"}, {"name": "datetime_as_string", "kind": "Other"}, {"name": "compare_chararrays", "kind": "Other"}, {"name": "add_docstring", "kind": "Other"}, {"name": "_GetItemKeys", "kind": "Other"}, {"name": "_SetItemKeys", "kind": "Other"}, {"name": "flagsobj", "kind": "LocalType"}, {"name": "nested_iters", "kind": "Other"}], "numpy.core.numeric": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "ComplexWarning", "kind": "ImportedType", "fullname": "numpy.ComplexWarning"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "int_", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "_OrderCF", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_SupportsArrayFunc", "kind": "ImportedType", "fullname": "numpy._typing._array_like._SupportsArrayFunc"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeUnknown", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_CorrelateMode", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "zeros_like", "kind": "Other"}, {"name": "ones", "kind": "Other"}, {"name": "ones_like", "kind": "Other"}, {"name": "full", "kind": "Other"}, {"name": "full_like", "kind": "Other"}, {"name": "count_nonzero", "kind": "Other"}, {"name": "isfortran", "kind": "Other"}, {"name": "argwhere", "kind": "Other"}, {"name": "flatnonzero", "kind": "Other"}, {"name": "correlate", "kind": "Other"}, {"name": "convolve", "kind": "Other"}, {"name": "outer", "kind": "Other"}, {"name": "tensordot", "kind": "Other"}, {"name": "roll", "kind": "Other"}, {"name": "rollaxis", "kind": "Other"}, {"name": "moveaxis", "kind": "Other"}, {"name": "cross", "kind": "Other"}, {"name": "indices", "kind": "Other"}, {"name": "fromfunction", "kind": "Other"}, {"name": "isscalar", "kind": "Other"}, {"name": "binary_repr", "kind": "Other"}, {"name": "base_repr", "kind": "Other"}, {"name": "identity", "kind": "Other"}, {"name": "allclose", "kind": "Other"}, {"name": "isclose", "kind": "Other"}, {"name": "array_equal", "kind": "Other"}, {"name": "array_equiv", "kind": "Other"}], "numpy.core.numerictypes": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "ubyte", "kind": "Other"}, {"name": "ushort", "kind": "Other"}, {"name": "uintc", "kind": "Other"}, {"name": "uint", "kind": "Other"}, {"name": "ulonglong", "kind": "Other"}, {"name": "byte", "kind": "Other"}, {"name": "short", "kind": "Other"}, {"name": "intc", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "longlong", "kind": "Other"}, {"name": "half", "kind": "Other"}, {"name": "single", "kind": "Other"}, {"name": "double", "kind": "Other"}, {"name": "longdouble", "kind": "Other"}, {"name": "csingle", "kind": "Other"}, {"name": "cdouble", "kind": "Other"}, {"name": "clongdouble", "kind": "Other"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "sctypeDict", "kind": "Other"}, {"name": "sctypes", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_CastFunc", "kind": "LocalType"}, {"name": "_TypeCodes", "kind": "LocalType"}, {"name": "_typedict", "kind": "LocalType"}, {"name": "_TypeTuple", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "maximum_sctype", "kind": "Other"}, {"name": "issctype", "kind": "Other"}, {"name": "obj2sctype", "kind": "Other"}, {"name": "issubclass_", "kind": "Other"}, {"name": "issubsctype", "kind": "Other"}, {"name": "issubdtype", "kind": "Other"}, {"name": "sctype2char", "kind": "Other"}, {"name": "find_common_type", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "nbytes", "kind": "Other"}, {"name": "typecodes", "kind": "Other"}, {"name": "ScalarType", "kind": "Other"}], "numpy.core.shape_base": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "_CastingKind", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "atleast_1d", "kind": "Other"}, {"name": "atleast_2d", "kind": "Other"}, {"name": "atleast_3d", "kind": "Other"}, {"name": "vstack", "kind": "Other"}, {"name": "hstack", "kind": "Other"}, {"name": "stack", "kind": "Other"}, {"name": "block", "kind": "Other"}], "numpy.lib.arraypad": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLikeInt", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ModeFunc", "kind": "LocalType"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "pad", "kind": "Other"}], "numpy.lib.arraysetops": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "ushort", "kind": "Other"}, {"name": "ubyte", "kind": "Other"}, {"name": "uintc", "kind": "Other"}, {"name": "uint", "kind": "Other"}, {"name": "ulonglong", "kind": "Other"}, {"name": "short", "kind": "Other"}, {"name": "int8", "kind": "Other"}, {"name": "byte", "kind": "Other"}, {"name": "intc", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "longlong", "kind": "Other"}, {"name": "half", "kind": "Other"}, {"name": "single", "kind": "Other"}, {"name": "double", "kind": "Other"}, {"name": "longdouble", "kind": "Other"}, {"name": "csingle", "kind": "Other"}, {"name": "cdouble", "kind": "Other"}, {"name": "clongdouble", "kind": "Other"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_NumberType", "kind": "Other"}, {"name": "_SCTNoCast", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "ediff1d", "kind": "Other"}, {"name": "unique", "kind": "Other"}, {"name": "intersect1d", "kind": "Other"}, {"name": "setxor1d", "kind": "Other"}, {"name": "in1d", "kind": "Other"}, {"name": "isin", "kind": "Other"}, {"name": "union1d", "kind": "Other"}, {"name": "setdiff1d", "kind": "Other"}], "numpy.lib.arrayterator": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_Shape", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "_ScalarType", "kind": "Other"}, {"name": "_Index", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Arrayterator", "kind": "LocalType"}], "numpy.lib.function_base": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "vectorize", "kind": "ImportedType", "fullname": "numpy.vectorize"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "intp", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "complex128", "kind": "Other"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "add_newdoc", "kind": "Other"}, {"name": "add_docstring", "kind": "Other"}, {"name": "bincount", "kind": "Other"}, {"name": "_add_newdoc_ufunc", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_2Tuple", "kind": "Other"}, {"name": "_TrimZerosSequence", "kind": "LocalType"}, {"name": "_SupportsWriteFlush", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "add_newdoc_ufunc", "kind": "Other"}, {"name": "rot90", "kind": "Other"}, {"name": "flip", "kind": "Other"}, {"name": "iterable", "kind": "Other"}, {"name": "average", "kind": "Other"}, {"name": "asarray_chkfinite", "kind": "Other"}, {"name": "piecewise", "kind": "Other"}, {"name": "select", "kind": "Other"}, {"name": "copy", "kind": "Other"}, {"name": "gradient", "kind": "Other"}, {"name": "diff", "kind": "Other"}, {"name": "interp", "kind": "Other"}, {"name": "angle", "kind": "Other"}, {"name": "unwrap", "kind": "Other"}, {"name": "sort_complex", "kind": "Other"}, {"name": "trim_zeros", "kind": "Other"}, {"name": "extract", "kind": "Other"}, {"name": "place", "kind": "Other"}, {"name": "disp", "kind": "Other"}, {"name": "cov", "kind": "Other"}, {"name": "corrcoef", "kind": "Other"}, {"name": "blackman", "kind": "Other"}, {"name": "bartlett", "kind": "Other"}, {"name": "hanning", "kind": "Other"}, {"name": "hamming", "kind": "Other"}, {"name": "i0", "kind": "Other"}, {"name": "kaiser", "kind": "Other"}, {"name": "sinc", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "_MethodKind", "kind": "Other"}, {"name": "percentile", "kind": "Other"}, {"name": "quantile", "kind": "Other"}, {"name": "trapz", "kind": "Other"}, {"name": "meshgrid", "kind": "Other"}, {"name": "delete", "kind": "Other"}, {"name": "insert", "kind": "Other"}, {"name": "append", "kind": "Other"}, {"name": "digitize", "kind": "Other"}], "numpy.lib.histograms": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_BinKind", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "histogram_bin_edges", "kind": "Other"}, {"name": "histogram", "kind": "Other"}, {"name": "histogramdd", "kind": "Other"}], "numpy.lib.index_tricks": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Generic", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "_Matrix", "kind": "ImportedType", "fullname": "numpy.matrix"}, {"name": "ndenumerate", "kind": "ImportedType", "fullname": "numpy.ndenumerate"}, {"name": "ndindex", "kind": "ImportedType", "fullname": "numpy.ndindex"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "int_", "kind": "Other"}, {"name": "float_", "kind": "Other"}, {"name": "complex_", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "_OrderCF", "kind": "Other"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_NestedSequence", "kind": "ImportedType", "fullname": "numpy._typing._nested_sequence._NestedSequence"}, {"name": "_FiniteNestedSequence", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLikeInt", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_SupportsDType", "kind": "ImportedType", "fullname": "numpy._typing._dtype_like._SupportsDType"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "unravel_index", "kind": "Other"}, {"name": "ravel_multi_index", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "_BoolType", "kind": "Other"}, {"name": "_TupType", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "ix_", "kind": "Other"}, {"name": "nd_grid", "kind": "LocalType"}, {"name": "MGridClass", "kind": "LocalType"}, {"name": "mgrid", "kind": "Other"}, {"name": "OGridClass", "kind": "LocalType"}, {"name": "ogrid", "kind": "Other"}, {"name": "AxisConcatenator", "kind": "LocalType"}, {"name": "RClass", "kind": "LocalType"}, {"name": "r_", "kind": "Other"}, {"name": "CClass", "kind": "LocalType"}, {"name": "c_", "kind": "Other"}, {"name": "IndexExpression", "kind": "LocalType"}, {"name": "index_exp", "kind": "Other"}, {"name": "s_", "kind": "Other"}, {"name": "fill_diagonal", "kind": "Other"}, {"name": "diag_indices", "kind": "Other"}, {"name": "diag_indices_from", "kind": "Other"}], "numpy.lib.nanfunctions": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "amin", "kind": "Other"}, {"name": "amax", "kind": "Other"}, {"name": "argmin", "kind": "Other"}, {"name": "argmax", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "cumsum", "kind": "Other"}, {"name": "cumprod", "kind": "Other"}, {"name": "mean", "kind": "Other"}, {"name": "var", "kind": "Other"}, {"name": "std", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "percentile", "kind": "Other"}, {"name": "quantile", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "nanmin", "kind": "Other"}, {"name": "nanmax", "kind": "Other"}, {"name": "nanargmin", "kind": "Other"}, {"name": "nanargmax", "kind": "Other"}, {"name": "nansum", "kind": "Other"}, {"name": "nanprod", "kind": "Other"}, {"name": "nancumsum", "kind": "Other"}, {"name": "nancumprod", "kind": "Other"}, {"name": "nanmean", "kind": "Other"}, {"name": "nanvar", "kind": "Other"}, {"name": "nanstd", "kind": "Other"}, {"name": "nanmedian", "kind": "Other"}, {"name": "nanpercentile", "kind": "Other"}, {"name": "nanquantile", "kind": "Other"}], "numpy.lib.npyio": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "zipfile", "kind": "Module", "fullname": "zipfile"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Generic", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "overload", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "DataSource", "kind": "ImportedType", "fullname": "numpy.DataSource"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "recarray", "kind": "ImportedType", "fullname": "numpy.recarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "float64", "kind": "Other"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "record", "kind": "ImportedType", "fullname": "numpy.record"}, {"name": "MaskedRecords", "kind": "ImportedType", "fullname": "numpy.ma.mrecords.MaskedRecords"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_SupportsArrayFunc", "kind": "ImportedType", "fullname": "numpy._typing._array_like._SupportsArrayFunc"}, {"name": "packbits", "kind": "Other"}, {"name": "unpackbits", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_CharType_co", "kind": "Other"}, {"name": "_CharType_contra", "kind": "Other"}, {"name": "_SupportsGetItem", "kind": "LocalType"}, {"name": "_SupportsRead", "kind": "LocalType"}, {"name": "_SupportsReadSeek", "kind": "LocalType"}, {"name": "_SupportsWrite", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "BagObj", "kind": "LocalType"}, {"name": "NpzFile", "kind": "LocalType"}, {"name": "load", "kind": "Other"}, {"name": "save", "kind": "Other"}, {"name": "savez", "kind": "Other"}, {"name": "savez_compressed", "kind": "Other"}, {"name": "loadtxt", "kind": "Other"}, {"name": "savetxt", "kind": "Other"}, {"name": "fromregex", "kind": "Other"}, {"name": "genfromtxt", "kind": "Other"}, {"name": "recfromtxt", "kind": "Other"}, {"name": "recfromcsv", "kind": "Other"}], "numpy.lib.polynomial": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "NoReturn", "kind": "Other"}, {"name": "RankWarning", "kind": "ImportedType", "fullname": "numpy.RankWarning"}, {"name": "poly1d", "kind": "ImportedType", "fullname": "numpy.poly1d"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "int32", "kind": "Other"}, {"name": "int64", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "complex128", "kind": "Other"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_2Tup", "kind": "Other"}, {"name": "_5Tup", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "poly", "kind": "Other"}, {"name": "roots", "kind": "Other"}, {"name": "polyint", "kind": "Other"}, {"name": "polyder", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}, {"name": "polyval", "kind": "Other"}, {"name": "polyadd", "kind": "Other"}, {"name": "polysub", "kind": "Other"}, {"name": "polymul", "kind": "Other"}, {"name": "polydiv", "kind": "Other"}], "numpy.lib.shape_base": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "Protocol", "kind": "Other"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "vstack", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ArrayWrap", "kind": "LocalType"}, {"name": "_ArrayPrepare", "kind": "LocalType"}, {"name": "_SupportsArrayWrap", "kind": "LocalType"}, {"name": "_SupportsArrayPrepare", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "row_stack", "kind": "Other"}, {"name": "take_along_axis", "kind": "Other"}, {"name": "put_along_axis", "kind": "Other"}, {"name": "apply_along_axis", "kind": "Other"}, {"name": "apply_over_axes", "kind": "Other"}, {"name": "expand_dims", "kind": "Other"}, {"name": "column_stack", "kind": "Other"}, {"name": "dstack", "kind": "Other"}, {"name": "array_split", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "hsplit", "kind": "Other"}, {"name": "vsplit", "kind": "Other"}, {"name": "dsplit", "kind": "Other"}, {"name": "get_array_prepare", "kind": "Other"}, {"name": "get_array_wrap", "kind": "Other"}, {"name": "kron", "kind": "Other"}, {"name": "tile", "kind": "Other"}], "numpy.lib.stride_tricks": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_Shape", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "DummyArray", "kind": "LocalType"}, {"name": "as_strided", "kind": "Other"}, {"name": "sliding_window_view", "kind": "Other"}, {"name": "broadcast_to", "kind": "Other"}, {"name": "broadcast_shapes", "kind": "Other"}, {"name": "broadcast_arrays", "kind": "Other"}], "numpy.lib.twodim_base": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "int_", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "_OrderCF", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_SupportsArrayFunc", "kind": "ImportedType", "fullname": "numpy._typing._array_like._SupportsArrayFunc"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_MaskFunc", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "fliplr", "kind": "Other"}, {"name": "flipud", "kind": "Other"}, {"name": "eye", "kind": "Other"}, {"name": "diag", "kind": "Other"}, {"name": "diagflat", "kind": "Other"}, {"name": "tri", "kind": "Other"}, {"name": "tril", "kind": "Other"}, {"name": "triu", "kind": "Other"}, {"name": "vander", "kind": "Other"}, {"name": "histogram2d", "kind": "Other"}, {"name": "mask_indices", "kind": "Other"}, {"name": "tril_indices", "kind": "Other"}, {"name": "tril_indices_from", "kind": "Other"}, {"name": "triu_indices", "kind": "Other"}, {"name": "triu_indices_from", "kind": "Other"}], "numpy.lib.type_check": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "float64", "kind": "Other"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "NBitBase", "kind": "ImportedType", "fullname": "numpy._typing.NBitBase"}, {"name": "NDArray", "kind": "Other"}, {"name": "_64Bit", "kind": "ImportedType", "fullname": "numpy._typing._64Bit"}, {"name": "_SupportsDType", "kind": "ImportedType", "fullname": "numpy._typing._dtype_like._SupportsDType"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_DTypeLikeComplex", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_NBit1", "kind": "Other"}, {"name": "_NBit2", "kind": "Other"}, {"name": "_SupportsReal", "kind": "LocalType"}, {"name": "_SupportsImag", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "mintypecode", "kind": "Other"}, {"name": "asfarray", "kind": "Other"}, {"name": "real", "kind": "Other"}, {"name": "imag", "kind": "Other"}, {"name": "iscomplex", "kind": "Other"}, {"name": "isreal", "kind": "Other"}, {"name": "iscomplexobj", "kind": "Other"}, {"name": "isrealobj", "kind": "Other"}, {"name": "nan_to_num", "kind": "Other"}, {"name": "real_if_close", "kind": "Other"}, {"name": "typename", "kind": "Other"}, {"name": "common_type", "kind": "Other"}], "numpy.lib.ufunclike": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "NDArray", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "fix", "kind": "Other"}, {"name": "isposinf", "kind": "Other"}, {"name": "isneginf", "kind": "Other"}], "numpy.lib.utils": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "AST", "kind": "ImportedType", "fullname": "_ast.AST"}, {"name": "Callable", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "issubclass_", "kind": "Other"}, {"name": "issubdtype", "kind": "Other"}, {"name": "issubsctype", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_FuncType", "kind": "Other"}, {"name": "_SupportsWrite", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "_Deprecate", "kind": "LocalType"}, {"name": "get_include", "kind": "Other"}, {"name": "deprecate", "kind": "Other"}, {"name": "deprecate_with_doc", "kind": "Other"}, {"name": "byte_bounds", "kind": "Other"}, {"name": "who", "kind": "Other"}, {"name": "info", "kind": "Other"}, {"name": "source", "kind": "Other"}, {"name": "lookfor", "kind": "Other"}, {"name": "safe_eval", "kind": "Other"}, {"name": "show_runtime", "kind": "Other"}], "numpy._pytesttester": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "PytestTester", "kind": "LocalType"}], "numpy._typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "set_module", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "NBitBase", "kind": "LocalType"}, {"name": "_256Bit", "kind": "LocalType"}, {"name": "_128Bit", "kind": "LocalType"}, {"name": "_96Bit", "kind": "LocalType"}, {"name": "_80Bit", "kind": "LocalType"}, {"name": "_64Bit", "kind": "LocalType"}, {"name": "_32Bit", "kind": "LocalType"}, {"name": "_16Bit", "kind": "LocalType"}, {"name": "_8Bit", "kind": "LocalType"}, {"name": "_NestedSequence", "kind": "LocalType"}, {"name": "_NBitByte", "kind": "Other"}, {"name": "_NBitShort", "kind": "Other"}, {"name": "_NBitIntC", "kind": "Other"}, {"name": "_NBitIntP", "kind": "Other"}, {"name": "_NBitInt", "kind": "Other"}, {"name": "_NBitLongLong", "kind": "Other"}, {"name": "_NBitHalf", "kind": "Other"}, {"name": "_NBitSingle", "kind": "Other"}, {"name": "_NBitDouble", "kind": "Other"}, {"name": "_NBitLongDouble", "kind": "Other"}, {"name": "_BoolCodes", "kind": "Other"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_Float16Codes", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Complex64Codes", "kind": "Other"}, {"name": "_Complex128Codes", "kind": "Other"}, {"name": "_ByteCodes", "kind": "Other"}, {"name": "_ShortCodes", "kind": "Other"}, {"name": "_IntCCodes", "kind": "Other"}, {"name": "_IntPCodes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_LongLongCodes", "kind": "Other"}, {"name": "_UByteCodes", "kind": "Other"}, {"name": "_UShortCodes", "kind": "Other"}, {"name": "_UIntCCodes", "kind": "Other"}, {"name": "_UIntPCodes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ULongLongCodes", "kind": "Other"}, {"name": "_HalfCodes", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_LongDoubleCodes", "kind": "Other"}, {"name": "_CSingleCodes", "kind": "Other"}, {"name": "_CDoubleCodes", "kind": "Other"}, {"name": "_CLongDoubleCodes", "kind": "Other"}, {"name": "_DT64Codes", "kind": "Other"}, {"name": "_TD64Codes", "kind": "Other"}, {"name": "_StrCodes", "kind": "Other"}, {"name": "_BytesCodes", "kind": "Other"}, {"name": "_VoidCodes", "kind": "Other"}, {"name": "_ObjectCodes", "kind": "Other"}, {"name": "_CharLike_co", "kind": "Other"}, {"name": "_BoolLike_co", "kind": "Other"}, {"name": "_UIntLike_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "_TD64Like_co", "kind": "Other"}, {"name": "_NumberLike_co", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_VoidLike_co", "kind": "Other"}, {"name": "_Shape", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_SupportsDType", "kind": "LocalType"}, {"name": "_VoidDTypeLike", "kind": "Other"}, {"name": "_DTypeLikeBool", "kind": "Other"}, {"name": "_DTypeLikeUInt", "kind": "Other"}, {"name": "_DTypeLikeInt", "kind": "Other"}, {"name": "_DTypeLikeFloat", "kind": "Other"}, {"name": "_DTypeLikeComplex", "kind": "Other"}, {"name": "_DTypeLikeTD64", "kind": "Other"}, {"name": "_DTypeLikeDT64", "kind": "Other"}, {"name": "_DTypeLikeObject", "kind": "Other"}, {"name": "_DTypeLikeVoid", "kind": "Other"}, {"name": "_DTypeLikeStr", "kind": "Other"}, {"name": "_DTypeLikeBytes", "kind": "Other"}, {"name": "_DTypeLikeComplex_co", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_FiniteNestedSequence", "kind": "Other"}, {"name": "_SupportsArray", "kind": "LocalType"}, {"name": "_SupportsArrayFunc", "kind": "LocalType"}, {"name": "_ArrayLikeInt", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeVoid_co", "kind": "Other"}, {"name": "_ArrayLikeStr_co", "kind": "Other"}, {"name": "_ArrayLikeBytes_co", "kind": "Other"}, {"name": "_ArrayLikeUnknown", "kind": "Other"}, {"name": "_UnknownType", "kind": "LocalType"}, {"name": "NDArray", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "_GenericAlias", "kind": "LocalType"}, {"name": "_UFunc_Nin1_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin1_Nout2", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout2", "kind": "LocalType"}, {"name": "_GUFunc_Nin2_Nout1", "kind": "LocalType"}], "numpy.ctypeslib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_c_intp", "kind": "ImportedType", "fullname": "ctypes.c_int64"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ctypes", "kind": "Module", "fullname": "ctypes"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Generic", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "byte", "kind": "Other"}, {"name": "short", "kind": "Other"}, {"name": "intc", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "longlong", "kind": "Other"}, {"name": "ubyte", "kind": "Other"}, {"name": "ushort", "kind": "Other"}, {"name": "uintc", "kind": "Other"}, {"name": "uint", "kind": "Other"}, {"name": "ulonglong", "kind": "Other"}, {"name": "single", "kind": "Other"}, {"name": "double", "kind": "Other"}, {"name": "longdouble", "kind": "Other"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "_ctypes", "kind": "ImportedType", "fullname": "numpy.core._internal._ctypes"}, {"name": "flagsobj", "kind": "ImportedType", "fullname": "numpy.core.multiarray.flagsobj"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_VoidDTypeLike", "kind": "Other"}, {"name": "_BoolCodes", "kind": "Other"}, {"name": "_UByteCodes", "kind": "Other"}, {"name": "_UShortCodes", "kind": "Other"}, {"name": "_UIntCCodes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ULongLongCodes", "kind": "Other"}, {"name": "_ByteCodes", "kind": "Other"}, {"name": "_ShortCodes", "kind": "Other"}, {"name": "_IntCCodes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_LongLongCodes", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_LongDoubleCodes", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "_DTypeOptional", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_FlagsKind", "kind": "Other"}, {"name": "_ndptr", "kind": "LocalType"}, {"name": "_concrete_ndptr", "kind": "LocalType"}, {"name": "load_library", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "c_intp", "kind": "Other"}, {"name": "ndpointer", "kind": "Other"}, {"name": "as_ctypes_type", "kind": "Other"}, {"name": "as_array", "kind": "Other"}, {"name": "as_ctypes", "kind": "Other"}], "numpy.fft": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "fft", "kind": "Other"}, {"name": "ifft", "kind": "Other"}, {"name": "rfft", "kind": "Other"}, {"name": "irfft", "kind": "Other"}, {"name": "hfft", "kind": "Other"}, {"name": "ihfft", "kind": "Other"}, {"name": "rfftn", "kind": "Other"}, {"name": "irfftn", "kind": "Other"}, {"name": "rfft2", "kind": "Other"}, {"name": "irfft2", "kind": "Other"}, {"name": "fft2", "kind": "Other"}, {"name": "ifft2", "kind": "Other"}, {"name": "fftn", "kind": "Other"}, {"name": "ifftn", "kind": "Other"}, {"name": "fftshift", "kind": "Other"}, {"name": "ifftshift", "kind": "Other"}, {"name": "fftfreq", "kind": "Other"}, {"name": "rfftfreq", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}], "numpy.lib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "math", "kind": "Module", "fullname": "math"}, {"name": "Any", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "ndenumerate", "kind": "ImportedType", "fullname": "numpy.ndenumerate"}, {"name": "ndindex", "kind": "ImportedType", "fullname": "numpy.ndindex"}, {"name": "version", "kind": "Other"}, {"name": "format", "kind": "Module", "fullname": "numpy.lib.format"}, {"name": "mixins", "kind": "Module", "fullname": "numpy.lib.mixins"}, {"name": "scimath", "kind": "Module", "fullname": "numpy.lib.scimath"}, {"name": "stride_tricks", "kind": "Module", "fullname": "numpy.lib.stride_tricks"}, {"name": "NumpyVersion", "kind": "LocalType"}, {"name": "pad", "kind": "Other"}, {"name": "ediff1d", "kind": "Other"}, {"name": "intersect1d", "kind": "Other"}, {"name": "setxor1d", "kind": "Other"}, {"name": "union1d", "kind": "Other"}, {"name": "setdiff1d", "kind": "Other"}, {"name": "unique", "kind": "Other"}, {"name": "in1d", "kind": "Other"}, {"name": "isin", "kind": "Other"}, {"name": "Arrayterator", "kind": "LocalType"}, {"name": "select", "kind": "Other"}, {"name": "piecewise", "kind": "Other"}, {"name": "trim_zeros", "kind": "Other"}, {"name": "copy", "kind": "Other"}, {"name": "iterable", "kind": "Other"}, {"name": "percentile", "kind": "Other"}, {"name": "diff", "kind": "Other"}, {"name": "gradient", "kind": "Other"}, {"name": "angle", "kind": "Other"}, {"name": "unwrap", "kind": "Other"}, {"name": "sort_complex", "kind": "Other"}, {"name": "disp", "kind": "Other"}, {"name": "flip", "kind": "Other"}, {"name": "rot90", "kind": "Other"}, {"name": "extract", "kind": "Other"}, {"name": "place", "kind": "Other"}, {"name": "vectorize", "kind": "ImportedType", "fullname": "numpy.vectorize"}, {"name": "asarray_chkfinite", "kind": "Other"}, {"name": "average", "kind": "Other"}, {"name": "bincount", "kind": "Other"}, {"name": "digitize", "kind": "Other"}, {"name": "cov", "kind": "Other"}, {"name": "corrcoef", "kind": "Other"}, {"name": "msort", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "sinc", "kind": "Other"}, {"name": "hamming", "kind": "Other"}, {"name": "hanning", "kind": "Other"}, {"name": "bartlett", "kind": "Other"}, {"name": "blackman", "kind": "Other"}, {"name": "kaiser", "kind": "Other"}, {"name": "trapz", "kind": "Other"}, {"name": "i0", "kind": "Other"}, {"name": "add_newdoc", "kind": "Other"}, {"name": "add_docstring", "kind": "Other"}, {"name": "meshgrid", "kind": "Other"}, {"name": "delete", "kind": "Other"}, {"name": "insert", "kind": "Other"}, {"name": "append", "kind": "Other"}, {"name": "interp", "kind": "Other"}, {"name": "add_newdoc_ufunc", "kind": "Other"}, {"name": "quantile", "kind": "Other"}, {"name": "histogram_bin_edges", "kind": "Other"}, {"name": "histogram", "kind": "Other"}, {"name": "histogramdd", "kind": "Other"}, {"name": "ravel_multi_index", "kind": "Other"}, {"name": "unravel_index", "kind": "Other"}, {"name": "mgrid", "kind": "Other"}, {"name": "ogrid", "kind": "Other"}, {"name": "r_", "kind": "Other"}, {"name": "c_", "kind": "Other"}, {"name": "s_", "kind": "Other"}, {"name": "index_exp", "kind": "Other"}, {"name": "ix_", "kind": "Other"}, {"name": "fill_diagonal", "kind": "Other"}, {"name": "diag_indices", "kind": "Other"}, {"name": "diag_indices_from", "kind": "Other"}, {"name": "nansum", "kind": "Other"}, {"name": "nanmax", "kind": "Other"}, {"name": "nanmin", "kind": "Other"}, {"name": "nanargmax", "kind": "Other"}, {"name": "nanargmin", "kind": "Other"}, {"name": "nanmean", "kind": "Other"}, {"name": "nanmedian", "kind": "Other"}, {"name": "nanpercentile", "kind": "Other"}, {"name": "nanvar", "kind": "Other"}, {"name": "nanstd", "kind": "Other"}, {"name": "nanprod", "kind": "Other"}, {"name": "nancumsum", "kind": "Other"}, {"name": "nancumprod", "kind": "Other"}, {"name": "nanquantile", "kind": "Other"}, {"name": "savetxt", "kind": "Other"}, {"name": "loadtxt", "kind": "Other"}, {"name": "genfromtxt", "kind": "Other"}, {"name": "recfromtxt", "kind": "Other"}, {"name": "recfromcsv", "kind": "Other"}, {"name": "load", "kind": "Other"}, {"name": "save", "kind": "Other"}, {"name": "savez", "kind": "Other"}, {"name": "savez_compressed", "kind": "Other"}, {"name": "packbits", "kind": "Other"}, {"name": "unpackbits", "kind": "Other"}, {"name": "fromregex", "kind": "Other"}, {"name": "DataSource", "kind": "ImportedType", "fullname": "numpy.DataSource"}, {"name": "poly", "kind": "Other"}, {"name": "roots", "kind": "Other"}, {"name": "polyint", "kind": "Other"}, {"name": "polyder", "kind": "Other"}, {"name": "polyadd", "kind": "Other"}, {"name": "polysub", "kind": "Other"}, {"name": "polymul", "kind": "Other"}, {"name": "polydiv", "kind": "Other"}, {"name": "polyval", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}, {"name": "RankWarning", "kind": "ImportedType", "fullname": "numpy.RankWarning"}, {"name": "poly1d", "kind": "ImportedType", "fullname": "numpy.poly1d"}, {"name": "column_stack", "kind": "Other"}, {"name": "row_stack", "kind": "Other"}, {"name": "dstack", "kind": "Other"}, {"name": "array_split", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "hsplit", "kind": "Other"}, {"name": "vsplit", "kind": "Other"}, {"name": "dsplit", "kind": "Other"}, {"name": "apply_over_axes", "kind": "Other"}, {"name": "expand_dims", "kind": "Other"}, {"name": "apply_along_axis", "kind": "Other"}, {"name": "kron", "kind": "Other"}, {"name": "tile", "kind": "Other"}, {"name": "get_array_wrap", "kind": "Other"}, {"name": "take_along_axis", "kind": "Other"}, {"name": "put_along_axis", "kind": "Other"}, {"name": "broadcast_to", "kind": "Other"}, {"name": "broadcast_arrays", "kind": "Other"}, {"name": "broadcast_shapes", "kind": "Other"}, {"name": "diag", "kind": "Other"}, {"name": "diagflat", "kind": "Other"}, {"name": "eye", "kind": "Other"}, {"name": "fliplr", "kind": "Other"}, {"name": "flipud", "kind": "Other"}, {"name": "tri", "kind": "Other"}, {"name": "triu", "kind": "Other"}, {"name": "tril", "kind": "Other"}, {"name": "vander", "kind": "Other"}, {"name": "histogram2d", "kind": "Other"}, {"name": "mask_indices", "kind": "Other"}, {"name": "tril_indices", "kind": "Other"}, {"name": "tril_indices_from", "kind": "Other"}, {"name": "triu_indices", "kind": "Other"}, {"name": "triu_indices_from", "kind": "Other"}, {"name": "mintypecode", "kind": "Other"}, {"name": "asfarray", "kind": "Other"}, {"name": "real", "kind": "Other"}, {"name": "imag", "kind": "Other"}, {"name": "iscomplex", "kind": "Other"}, {"name": "isreal", "kind": "Other"}, {"name": "iscomplexobj", "kind": "Other"}, {"name": "isrealobj", "kind": "Other"}, {"name": "nan_to_num", "kind": "Other"}, {"name": "real_if_close", "kind": "Other"}, {"name": "typename", "kind": "Other"}, {"name": "common_type", "kind": "Other"}, {"name": "fix", "kind": "Other"}, {"name": "isposinf", "kind": "Other"}, {"name": "isneginf", "kind": "Other"}, {"name": "issubclass_", "kind": "Other"}, {"name": "issubsctype", "kind": "Other"}, {"name": "issubdtype", "kind": "Other"}, {"name": "deprecate", "kind": "Other"}, {"name": "deprecate_with_doc", "kind": "Other"}, {"name": "get_include", "kind": "Other"}, {"name": "info", "kind": "Other"}, {"name": "source", "kind": "Other"}, {"name": "who", "kind": "Other"}, {"name": "lookfor", "kind": "Other"}, {"name": "byte_bounds", "kind": "Other"}, {"name": "safe_eval", "kind": "Other"}, {"name": "show_runtime", "kind": "Other"}, {"name": "tracemalloc_domain", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}, {"name": "__version__", "kind": "Other"}, {"name": "emath", "kind": "Module", "fullname": "numpy.lib.scimath"}], "numpy.linalg": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "matrix_power", "kind": "Other"}, {"name": "solve", "kind": "Other"}, {"name": "tensorsolve", "kind": "Other"}, {"name": "tensorinv", "kind": "Other"}, {"name": "inv", "kind": "Other"}, {"name": "cholesky", "kind": "Other"}, {"name": "eigvals", "kind": "Other"}, {"name": "eigvalsh", "kind": "Other"}, {"name": "pinv", "kind": "Other"}, {"name": "slogdet", "kind": "Other"}, {"name": "det", "kind": "Other"}, {"name": "svd", "kind": "Other"}, {"name": "eig", "kind": "Other"}, {"name": "eigh", "kind": "Other"}, {"name": "lstsq", "kind": "Other"}, {"name": "norm", "kind": "Other"}, {"name": "qr", "kind": "Other"}, {"name": "cond", "kind": "Other"}, {"name": "matrix_rank", "kind": "Other"}, {"name": "multi_dot", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}, {"name": "LinAlgError", "kind": "LocalType"}], "numpy.ma": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "extras", "kind": "Module", "fullname": "numpy.ma.extras"}, {"name": "MAError", "kind": "LocalType"}, {"name": "MaskError", "kind": "LocalType"}, {"name": "MaskType", "kind": "Other"}, {"name": "MaskedArray", "kind": "LocalType"}, {"name": "abs", "kind": "Other"}, {"name": "absolute", "kind": "Other"}, {"name": "add", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "allclose", "kind": "Other"}, {"name": "allequal", "kind": "Other"}, {"name": "alltrue", "kind": "Other"}, {"name": "amax", "kind": "Other"}, {"name": "amin", "kind": "Other"}, {"name": "angle", "kind": "Other"}, {"name": "anom", "kind": "Other"}, {"name": "anomalies", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "append", "kind": "Other"}, {"name": "arange", "kind": "Other"}, {"name": "arccos", "kind": "Other"}, {"name": "arccosh", "kind": "Other"}, {"name": "arcsin", "kind": "Other"}, {"name": "arcsinh", "kind": "Other"}, {"name": "arctan", "kind": "Other"}, {"name": "arctan2", "kind": "Other"}, {"name": "arctanh", "kind": "Other"}, {"name": "argmax", "kind": "Other"}, {"name": "argmin", "kind": "Other"}, {"name": "argsort", "kind": "Other"}, {"name": "around", "kind": "Other"}, {"name": "array", "kind": "Other"}, {"name": "asanyarray", "kind": "Other"}, {"name": "asarray", "kind": "Other"}, {"name": "bitwise_and", "kind": "Other"}, {"name": "bitwise_or", "kind": "Other"}, {"name": "bitwise_xor", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "ceil", "kind": "Other"}, {"name": "choose", "kind": "Other"}, {"name": "clip", "kind": "Other"}, {"name": "common_fill_value", "kind": "Other"}, {"name": "compress", "kind": "Other"}, {"name": "compressed", "kind": "Other"}, {"name": "concatenate", "kind": "Other"}, {"name": "conjugate", "kind": "Other"}, {"name": "convolve", "kind": "Other"}, {"name": "copy", "kind": "Other"}, {"name": "correlate", "kind": "Other"}, {"name": "cos", "kind": "Other"}, {"name": "cosh", "kind": "Other"}, {"name": "count", "kind": "Other"}, {"name": "cumprod", "kind": "Other"}, {"name": "cumsum", "kind": "Other"}, {"name": "default_fill_value", "kind": "Other"}, {"name": "diag", "kind": "Other"}, {"name": "diagonal", "kind": "Other"}, {"name": "diff", "kind": "Other"}, {"name": "divide", "kind": "Other"}, {"name": "empty", "kind": "Other"}, {"name": "empty_like", "kind": "Other"}, {"name": "equal", "kind": "Other"}, {"name": "exp", "kind": "Other"}, {"name": "expand_dims", "kind": "Other"}, {"name": "fabs", "kind": "Other"}, {"name": "filled", "kind": "Other"}, {"name": "fix_invalid", "kind": "Other"}, {"name": "flatten_mask", "kind": "Other"}, {"name": "flatten_structured_array", "kind": "Other"}, {"name": "floor", "kind": "Other"}, {"name": "floor_divide", "kind": "Other"}, {"name": "fmod", "kind": "Other"}, {"name": "frombuffer", "kind": "Other"}, {"name": "fromflex", "kind": "Other"}, {"name": "fromfunction", "kind": "Other"}, {"name": "getdata", "kind": "Other"}, {"name": "getmask", "kind": "Other"}, {"name": "getmaskarray", "kind": "Other"}, {"name": "greater", "kind": "Other"}, {"name": "greater_equal", "kind": "Other"}, {"name": "harden_mask", "kind": "Other"}, {"name": "hypot", "kind": "Other"}, {"name": "identity", "kind": "Other"}, {"name": "ids", "kind": "Other"}, {"name": "indices", "kind": "Other"}, {"name": "inner", "kind": "Other"}, {"name": "innerproduct", "kind": "Other"}, {"name": "isMA", "kind": "Other"}, {"name": "isMaskedArray", "kind": "Other"}, {"name": "is_mask", "kind": "Other"}, {"name": "is_masked", "kind": "Other"}, {"name": "isarray", "kind": "Other"}, {"name": "left_shift", "kind": "Other"}, {"name": "less", "kind": "Other"}, {"name": "less_equal", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "log10", "kind": "Other"}, {"name": "log2", "kind": "Other"}, {"name": "logical_and", "kind": "Other"}, {"name": "logical_not", "kind": "Other"}, {"name": "logical_or", "kind": "Other"}, {"name": "logical_xor", "kind": "Other"}, {"name": "make_mask", "kind": "Other"}, {"name": "make_mask_descr", "kind": "Other"}, {"name": "make_mask_none", "kind": "Other"}, {"name": "mask_or", "kind": "Other"}, {"name": "masked", "kind": "Other"}, {"name": "masked_array", "kind": "Other"}, {"name": "masked_equal", "kind": "Other"}, {"name": "masked_greater", "kind": "Other"}, {"name": "masked_greater_equal", "kind": "Other"}, {"name": "masked_inside", "kind": "Other"}, {"name": "masked_invalid", "kind": "Other"}, {"name": "masked_less", "kind": "Other"}, {"name": "masked_less_equal", "kind": "Other"}, {"name": "masked_not_equal", "kind": "Other"}, {"name": "masked_object", "kind": "Other"}, {"name": "masked_outside", "kind": "Other"}, {"name": "masked_print_option", "kind": "Other"}, {"name": "masked_singleton", "kind": "Other"}, {"name": "masked_values", "kind": "Other"}, {"name": "masked_where", "kind": "Other"}, {"name": "max", "kind": "Other"}, {"name": "maximum", "kind": "Other"}, {"name": "maximum_fill_value", "kind": "Other"}, {"name": "mean", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "minimum", "kind": "Other"}, {"name": "minimum_fill_value", "kind": "Other"}, {"name": "mod", "kind": "Other"}, {"name": "multiply", "kind": "Other"}, {"name": "mvoid", "kind": "LocalType"}, {"name": "ndim", "kind": "Other"}, {"name": "negative", "kind": "Other"}, {"name": "nomask", "kind": "Other"}, {"name": "nonzero", "kind": "Other"}, {"name": "not_equal", "kind": "Other"}, {"name": "ones", "kind": "Other"}, {"name": "outer", "kind": "Other"}, {"name": "outerproduct", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "product", "kind": "Other"}, {"name": "ptp", "kind": "Other"}, {"name": "put", "kind": "Other"}, {"name": "putmask", "kind": "Other"}, {"name": "ravel", "kind": "Other"}, {"name": "remainder", "kind": "Other"}, {"name": "repeat", "kind": "Other"}, {"name": "reshape", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "right_shift", "kind": "Other"}, {"name": "round", "kind": "Other"}, {"name": "round_", "kind": "Other"}, {"name": "set_fill_value", "kind": "Other"}, {"name": "shape", "kind": "Other"}, {"name": "sin", "kind": "Other"}, {"name": "sinh", "kind": "Other"}, {"name": "size", "kind": "Other"}, {"name": "soften_mask", "kind": "Other"}, {"name": "sometrue", "kind": "Other"}, {"name": "sort", "kind": "Other"}, {"name": "sqrt", "kind": "Other"}, {"name": "squeeze", "kind": "Other"}, {"name": "std", "kind": "Other"}, {"name": "subtract", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "swapaxes", "kind": "Other"}, {"name": "take", "kind": "Other"}, {"name": "tan", "kind": "Other"}, {"name": "tanh", "kind": "Other"}, {"name": "trace", "kind": "Other"}, {"name": "transpose", "kind": "Other"}, {"name": "true_divide", "kind": "Other"}, {"name": "var", "kind": "Other"}, {"name": "where", "kind": "Other"}, {"name": "zeros", "kind": "Other"}, {"name": "apply_along_axis", "kind": "Other"}, {"name": "apply_over_axes", "kind": "Other"}, {"name": "atleast_1d", "kind": "Other"}, {"name": "atleast_2d", "kind": "Other"}, {"name": "atleast_3d", "kind": "Other"}, {"name": "average", "kind": "Other"}, {"name": "clump_masked", "kind": "Other"}, {"name": "clump_unmasked", "kind": "Other"}, {"name": "column_stack", "kind": "Other"}, {"name": "compress_cols", "kind": "Other"}, {"name": "compress_nd", "kind": "Other"}, {"name": "compress_rowcols", "kind": "Other"}, {"name": "compress_rows", "kind": "Other"}, {"name": "count_masked", "kind": "Other"}, {"name": "corrcoef", "kind": "Other"}, {"name": "cov", "kind": "Other"}, {"name": "diagflat", "kind": "Other"}, {"name": "dot", "kind": "Other"}, {"name": "dstack", "kind": "Other"}, {"name": "ediff1d", "kind": "Other"}, {"name": "flatnotmasked_contiguous", "kind": "Other"}, {"name": "flatnotmasked_edges", "kind": "Other"}, {"name": "hsplit", "kind": "Other"}, {"name": "hstack", "kind": "Other"}, {"name": "isin", "kind": "Other"}, {"name": "in1d", "kind": "Other"}, {"name": "intersect1d", "kind": "Other"}, {"name": "mask_cols", "kind": "Other"}, {"name": "mask_rowcols", "kind": "Other"}, {"name": "mask_rows", "kind": "Other"}, {"name": "masked_all", "kind": "Other"}, {"name": "masked_all_like", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "mr_", "kind": "Other"}, {"name": "ndenumerate", "kind": "Other"}, {"name": "notmasked_contiguous", "kind": "Other"}, {"name": "notmasked_edges", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}, {"name": "row_stack", "kind": "Other"}, {"name": "setdiff1d", "kind": "Other"}, {"name": "setxor1d", "kind": "Other"}, {"name": "stack", "kind": "Other"}, {"name": "unique", "kind": "Other"}, {"name": "union1d", "kind": "Other"}, {"name": "vander", "kind": "Other"}, {"name": "vstack", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}], "numpy.polynomial": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "chebyshev", "kind": "Module", "fullname": "numpy.polynomial.chebyshev"}, {"name": "hermite", "kind": "Module", "fullname": "numpy.polynomial.hermite"}, {"name": "hermite_e", "kind": "Module", "fullname": "numpy.polynomial.hermite_e"}, {"name": "laguerre", "kind": "Module", "fullname": "numpy.polynomial.laguerre"}, {"name": "legendre", "kind": "Module", "fullname": "numpy.polynomial.legendre"}, {"name": "polynomial", "kind": "Module", "fullname": "numpy.polynomial.polynomial"}, {"name": "Chebyshev", "kind": "LocalType"}, {"name": "Hermite", "kind": "LocalType"}, {"name": "HermiteE", "kind": "LocalType"}, {"name": "Laguerre", "kind": "LocalType"}, {"name": "Legendre", "kind": "LocalType"}, {"name": "Polynomial", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}, {"name": "set_default_printstyle", "kind": "Other"}], "numpy.random": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "Generator", "kind": "LocalType"}, {"name": "default_rng", "kind": "Other"}, {"name": "MT19937", "kind": "LocalType"}, {"name": "PCG64", "kind": "LocalType"}, {"name": "PCG64DXSM", "kind": "LocalType"}, {"name": "Philox", "kind": "LocalType"}, {"name": "SFC64", "kind": "LocalType"}, {"name": "BitGenerator", "kind": "LocalType"}, {"name": "SeedSequence", "kind": "LocalType"}, {"name": "RandomState", "kind": "LocalType"}, {"name": "beta", "kind": "Other"}, {"name": "binomial", "kind": "Other"}, {"name": "bytes", "kind": "Other"}, {"name": "chisquare", "kind": "Other"}, {"name": "choice", "kind": "Other"}, {"name": "dirichlet", "kind": "Other"}, {"name": "exponential", "kind": "Other"}, {"name": "f", "kind": "Other"}, {"name": "gamma", "kind": "Other"}, {"name": "geometric", "kind": "Other"}, {"name": "get_bit_generator", "kind": "Other"}, {"name": "get_state", "kind": "Other"}, {"name": "gumbel", "kind": "Other"}, {"name": "hypergeometric", "kind": "Other"}, {"name": "laplace", "kind": "Other"}, {"name": "logistic", "kind": "Other"}, {"name": "lognormal", "kind": "Other"}, {"name": "logseries", "kind": "Other"}, {"name": "multinomial", "kind": "Other"}, {"name": "multivariate_normal", "kind": "Other"}, {"name": "negative_binomial", "kind": "Other"}, {"name": "noncentral_chisquare", "kind": "Other"}, {"name": "noncentral_f", "kind": "Other"}, {"name": "normal", "kind": "Other"}, {"name": "pareto", "kind": "Other"}, {"name": "permutation", "kind": "Other"}, {"name": "poisson", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "rand", "kind": "Other"}, {"name": "randint", "kind": "Other"}, {"name": "randn", "kind": "Other"}, {"name": "random", "kind": "Other"}, {"name": "random_integers", "kind": "Other"}, {"name": "random_sample", "kind": "Other"}, {"name": "ranf", "kind": "Other"}, {"name": "rayleigh", "kind": "Other"}, {"name": "sample", "kind": "Other"}, {"name": "seed", "kind": "Other"}, {"name": "set_bit_generator", "kind": "Other"}, {"name": "set_state", "kind": "Other"}, {"name": "shuffle", "kind": "Other"}, {"name": "standard_cauchy", "kind": "Other"}, {"name": "standard_exponential", "kind": "Other"}, {"name": "standard_gamma", "kind": "Other"}, {"name": "standard_normal", "kind": "Other"}, {"name": "standard_t", "kind": "Other"}, {"name": "triangular", "kind": "Other"}, {"name": "uniform", "kind": "Other"}, {"name": "vonmises", "kind": "Other"}, {"name": "wald", "kind": "Other"}, {"name": "weibull", "kind": "Other"}, {"name": "zipf", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}], "numpy.testing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "TestCase", "kind": "ImportedType", "fullname": "unittest.case.TestCase"}, {"name": "assert_equal", "kind": "Other"}, {"name": "assert_almost_equal", "kind": "Other"}, {"name": "assert_approx_equal", "kind": "Other"}, {"name": "assert_array_equal", "kind": "Other"}, {"name": "assert_array_less", "kind": "Other"}, {"name": "assert_string_equal", "kind": "Other"}, {"name": "assert_array_almost_equal", "kind": "Other"}, {"name": "assert_raises", "kind": "Other"}, {"name": "build_err_msg", "kind": "Other"}, {"name": "decorate_methods", "kind": "Other"}, {"name": "jiffies", "kind": "Other"}, {"name": "memusage", "kind": "Other"}, {"name": "print_assert_equal", "kind": "Other"}, {"name": "raises", "kind": "Other"}, {"name": "rundocs", "kind": "Other"}, {"name": "runstring", "kind": "Other"}, {"name": "verbose", "kind": "Other"}, {"name": "measure", "kind": "Other"}, {"name": "assert_", "kind": "Other"}, {"name": "assert_array_almost_equal_nulp", "kind": "Other"}, {"name": "assert_raises_regex", "kind": "Other"}, {"name": "assert_array_max_ulp", "kind": "Other"}, {"name": "assert_warns", "kind": "Other"}, {"name": "assert_no_warnings", "kind": "Other"}, {"name": "assert_allclose", "kind": "Other"}, {"name": "IgnoreException", "kind": "LocalType"}, {"name": "clear_and_catch_warnings", "kind": "LocalType"}, {"name": "SkipTest", "kind": "ImportedType", "fullname": "unittest.case.SkipTest"}, {"name": "KnownFailureException", "kind": "LocalType"}, {"name": "temppath", "kind": "Other"}, {"name": "tempdir", "kind": "Other"}, {"name": "IS_PYPY", "kind": "Other"}, {"name": "IS_PYSTON", "kind": "Other"}, {"name": "HAS_REFCOUNT", "kind": "Other"}, {"name": "suppress_warnings", "kind": "LocalType"}, {"name": "assert_array_compare", "kind": "Other"}, {"name": "assert_no_gc_cycles", "kind": "Other"}, {"name": "break_cycles", "kind": "Other"}, {"name": "HAS_LAPACK64", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}, {"name": "run_module_suite", "kind": "Other"}], "numpy.version": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "get_versions", "kind": "Other"}, {"name": "__ALL__", "kind": "Other"}, {"name": "vinfo", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "__version__", "kind": "Other"}, {"name": "full_version", "kind": "Other"}, {"name": "git_revision", "kind": "Other"}, {"name": "release", "kind": "Other"}, {"name": "short_version", "kind": "Other"}], "numpy.core": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "numpy.matrixlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "matrix", "kind": "ImportedType", "fullname": "numpy.matrix"}, {"name": "bmat", "kind": "Other"}, {"name": "mat", "kind": "Other"}, {"name": "asmatrix", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}], "os": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "OSError", "kind": "ImportedType", "fullname": "builtins.OSError"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "_TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "Popen", "kind": "ImportedType", "fullname": "subprocess.Popen"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_path", "kind": "Module", "fullname": "os.path"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "path", "kind": "Module", "fullname": "os.path"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "supports_bytes_environ", "kind": "Other"}, {"name": "supports_dir_fd", "kind": "Other"}, {"name": "supports_fd", "kind": "Other"}, {"name": "supports_effective_ids", "kind": "Other"}, {"name": "supports_follow_symlinks", "kind": "Other"}, {"name": "PRIO_PROCESS", "kind": "Other"}, {"name": "PRIO_PGRP", "kind": "Other"}, {"name": "PRIO_USER", "kind": "Other"}, {"name": "F_LOCK", "kind": "Other"}, {"name": "F_TLOCK", "kind": "Other"}, {"name": "F_ULOCK", "kind": "Other"}, {"name": "F_TEST", "kind": "Other"}, {"name": "POSIX_FADV_NORMAL", "kind": "Other"}, {"name": "POSIX_FADV_SEQUENTIAL", "kind": "Other"}, {"name": "POSIX_FADV_RANDOM", "kind": "Other"}, {"name": "POSIX_FADV_NOREUSE", "kind": "Other"}, {"name": "POSIX_FADV_WILLNEED", "kind": "Other"}, {"name": "POSIX_FADV_DONTNEED", "kind": "Other"}, {"name": "SF_NODISKIO", "kind": "Other"}, {"name": "SF_MNOWAIT", "kind": "Other"}, {"name": "SF_SYNC", "kind": "Other"}, {"name": "XATTR_SIZE_MAX", "kind": "Other"}, {"name": "XATTR_CREATE", "kind": "Other"}, {"name": "XATTR_REPLACE", "kind": "Other"}, {"name": "P_PID", "kind": "Other"}, {"name": "P_PGID", "kind": "Other"}, {"name": "P_ALL", "kind": "Other"}, {"name": "P_PIDFD", "kind": "Other"}, {"name": "WEXITED", "kind": "Other"}, {"name": "WSTOPPED", "kind": "Other"}, {"name": "WNOWAIT", "kind": "Other"}, {"name": "CLD_EXITED", "kind": "Other"}, {"name": "CLD_DUMPED", "kind": "Other"}, {"name": "CLD_TRAPPED", "kind": "Other"}, {"name": "CLD_CONTINUED", "kind": "Other"}, {"name": "CLD_KILLED", "kind": "Other"}, {"name": "CLD_STOPPED", "kind": "Other"}, {"name": "SCHED_OTHER", "kind": "Other"}, {"name": "SCHED_BATCH", "kind": "Other"}, {"name": "SCHED_IDLE", "kind": "Other"}, {"name": "SCHED_SPORADIC", "kind": "Other"}, {"name": "SCHED_FIFO", "kind": "Other"}, {"name": "SCHED_RR", "kind": "Other"}, {"name": "SCHED_RESET_ON_FORK", "kind": "Other"}, {"name": "RTLD_LAZY", "kind": "Other"}, {"name": "RTLD_NOW", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "RTLD_NODELETE", "kind": "Other"}, {"name": "RTLD_NOLOAD", "kind": "Other"}, {"name": "RTLD_DEEPBIND", "kind": "Other"}, {"name": "GRND_NONBLOCK", "kind": "Other"}, {"name": "GRND_RANDOM", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "SEEK_DATA", "kind": "Other"}, {"name": "SEEK_HOLE", "kind": "Other"}, {"name": "O_RDONLY", "kind": "Other"}, {"name": "O_WRONLY", "kind": "Other"}, {"name": "O_RDWR", "kind": "Other"}, {"name": "O_APPEND", "kind": "Other"}, {"name": "O_CREAT", "kind": "Other"}, {"name": "O_EXCL", "kind": "Other"}, {"name": "O_TRUNC", "kind": "Other"}, {"name": "O_DSYNC", "kind": "Other"}, {"name": "O_RSYNC", "kind": "Other"}, {"name": "O_SYNC", "kind": "Other"}, {"name": "O_NDELAY", "kind": "Other"}, {"name": "O_NONBLOCK", "kind": "Other"}, {"name": "O_NOCTTY", "kind": "Other"}, {"name": "O_CLOEXEC", "kind": "Other"}, {"name": "O_SHLOCK", "kind": "Other"}, {"name": "O_EXLOCK", "kind": "Other"}, {"name": "O_BINARY", "kind": "Other"}, {"name": "O_NOINHERIT", "kind": "Other"}, {"name": "O_SHORT_LIVED", "kind": "Other"}, {"name": "O_TEMPORARY", "kind": "Other"}, {"name": "O_RANDOM", "kind": "Other"}, {"name": "O_SEQUENTIAL", "kind": "Other"}, {"name": "O_TEXT", "kind": "Other"}, {"name": "O_ASYNC", "kind": "Other"}, {"name": "O_DIRECT", "kind": "Other"}, {"name": "O_DIRECTORY", "kind": "Other"}, {"name": "O_NOFOLLOW", "kind": "Other"}, {"name": "O_NOATIME", "kind": "Other"}, {"name": "O_PATH", "kind": "Other"}, {"name": "O_TMPFILE", "kind": "Other"}, {"name": "O_LARGEFILE", "kind": "Other"}, {"name": "O_ACCMODE", "kind": "Other"}, {"name": "ST_APPEND", "kind": "Other"}, {"name": "ST_MANDLOCK", "kind": "Other"}, {"name": "ST_NOATIME", "kind": "Other"}, {"name": "ST_NODEV", "kind": "Other"}, {"name": "ST_NODIRATIME", "kind": "Other"}, {"name": "ST_NOEXEC", "kind": "Other"}, {"name": "ST_RELATIME", "kind": "Other"}, {"name": "ST_SYNCHRONOUS", "kind": "Other"}, {"name": "ST_WRITE", "kind": "Other"}, {"name": "NGROUPS_MAX", "kind": "Other"}, {"name": "ST_NOSUID", "kind": "Other"}, {"name": "ST_RDONLY", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "linesep", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "name", "kind": "Other"}, {"name": "F_OK", "kind": "Other"}, {"name": "R_OK", "kind": "Other"}, {"name": "W_OK", "kind": "Other"}, {"name": "X_OK", "kind": "Other"}, {"name": "_EnvironCodeFunc", "kind": "Other"}, {"name": "_Environ", "kind": "LocalType"}, {"name": "environ", "kind": "Other"}, {"name": "environb", "kind": "Other"}, {"name": "confstr_names", "kind": "Other"}, {"name": "pathconf_names", "kind": "Other"}, {"name": "sysconf_names", "kind": "Other"}, {"name": "EX_OK", "kind": "Other"}, {"name": "EX_USAGE", "kind": "Other"}, {"name": "EX_DATAERR", "kind": "Other"}, {"name": "EX_NOINPUT", "kind": "Other"}, {"name": "EX_NOUSER", "kind": "Other"}, {"name": "EX_NOHOST", "kind": "Other"}, {"name": "EX_UNAVAILABLE", "kind": "Other"}, {"name": "EX_SOFTWARE", "kind": "Other"}, {"name": "EX_OSERR", "kind": "Other"}, {"name": "EX_OSFILE", "kind": "Other"}, {"name": "EX_CANTCREAT", "kind": "Other"}, {"name": "EX_IOERR", "kind": "Other"}, {"name": "EX_TEMPFAIL", "kind": "Other"}, {"name": "EX_PROTOCOL", "kind": "Other"}, {"name": "EX_NOPERM", "kind": "Other"}, {"name": "EX_CONFIG", "kind": "Other"}, {"name": "EX_NOTFOUND", "kind": "Other"}, {"name": "P_NOWAIT", "kind": "Other"}, {"name": "P_NOWAITO", "kind": "Other"}, {"name": "P_WAIT", "kind": "Other"}, {"name": "WNOHANG", "kind": "Other"}, {"name": "WCONTINUED", "kind": "Other"}, {"name": "WUNTRACED", "kind": "Other"}, {"name": "TMP_MAX", "kind": "Other"}, {"name": "stat_result", "kind": "LocalType"}, {"name": "PathLike", "kind": "LocalType"}, {"name": "listdir", "kind": "Other"}, {"name": "DirEntry", "kind": "LocalType"}, {"name": "statvfs_result", "kind": "LocalType"}, {"name": "fsencode", "kind": "Other"}, {"name": "fsdecode", "kind": "Other"}, {"name": "fspath", "kind": "Other"}, {"name": "get_exec_path", "kind": "Other"}, {"name": "getlogin", "kind": "Other"}, {"name": "getpid", "kind": "Other"}, {"name": "getppid", "kind": "Other"}, {"name": "strerror", "kind": "Other"}, {"name": "umask", "kind": "Other"}, {"name": "uname_result", "kind": "LocalType"}, {"name": "ctermid", "kind": "Other"}, {"name": "getegid", "kind": "Other"}, {"name": "geteuid", "kind": "Other"}, {"name": "getgid", "kind": "Other"}, {"name": "getgrouplist", "kind": "Other"}, {"name": "getgroups", "kind": "Other"}, {"name": "initgroups", "kind": "Other"}, {"name": "getpgid", "kind": "Other"}, {"name": "getpgrp", "kind": "Other"}, {"name": "getpriority", "kind": "Other"}, {"name": "setpriority", "kind": "Other"}, {"name": "getresuid", "kind": "Other"}, {"name": "getresgid", "kind": "Other"}, {"name": "getuid", "kind": "Other"}, {"name": "setegid", "kind": "Other"}, {"name": "seteuid", "kind": "Other"}, {"name": "setgid", "kind": "Other"}, {"name": "setgroups", "kind": "Other"}, {"name": "setpgrp", "kind": "Other"}, {"name": "setpgid", "kind": "Other"}, {"name": "setregid", "kind": "Other"}, {"name": "setresgid", "kind": "Other"}, {"name": "setresuid", "kind": "Other"}, {"name": "setreuid", "kind": "Other"}, {"name": "getsid", "kind": "Other"}, {"name": "setsid", "kind": "Other"}, {"name": "setuid", "kind": "Other"}, {"name": "uname", "kind": "Other"}, {"name": "getenv", "kind": "Other"}, {"name": "getenvb", "kind": "Other"}, {"name": "putenv", "kind": "Other"}, {"name": "unsetenv", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "fdopen", "kind": "Other"}, {"name": "close", "kind": "Other"}, {"name": "closerange", "kind": "Other"}, {"name": "device_encoding", "kind": "Other"}, {"name": "dup", "kind": "Other"}, {"name": "dup2", "kind": "Other"}, {"name": "fstat", "kind": "Other"}, {"name": "ftruncate", "kind": "Other"}, {"name": "fsync", "kind": "Other"}, {"name": "isatty", "kind": "Other"}, {"name": "lseek", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "pipe", "kind": "Other"}, {"name": "read", "kind": "Other"}, {"name": "fchmod", "kind": "Other"}, {"name": "fchown", "kind": "Other"}, {"name": "fpathconf", "kind": "Other"}, {"name": "fstatvfs", "kind": "Other"}, {"name": "get_blocking", "kind": "Other"}, {"name": "set_blocking", "kind": "Other"}, {"name": "lockf", "kind": "Other"}, {"name": "openpty", "kind": "Other"}, {"name": "fdatasync", "kind": "Other"}, {"name": "pipe2", "kind": "Other"}, {"name": "posix_fallocate", "kind": "Other"}, {"name": "posix_fadvise", "kind": "Other"}, {"name": "pread", "kind": "Other"}, {"name": "pwrite", "kind": "Other"}, {"name": "preadv", "kind": "Other"}, {"name": "pwritev", "kind": "Other"}, {"name": "RWF_APPEND", "kind": "Other"}, {"name": "RWF_DSYNC", "kind": "Other"}, {"name": "RWF_SYNC", "kind": "Other"}, {"name": "RWF_HIPRI", "kind": "Other"}, {"name": "RWF_NOWAIT", "kind": "Other"}, {"name": "sendfile", "kind": "Other"}, {"name": "readv", "kind": "Other"}, {"name": "writev", "kind": "Other"}, {"name": "terminal_size", "kind": "LocalType"}, {"name": "get_terminal_size", "kind": "Other"}, {"name": "get_inheritable", "kind": "Other"}, {"name": "set_inheritable", "kind": "Other"}, {"name": "tcgetpgrp", "kind": "Other"}, {"name": "tcsetpgrp", "kind": "Other"}, {"name": "ttyname", "kind": "Other"}, {"name": "write", "kind": "Other"}, {"name": "access", "kind": "Other"}, {"name": "chdir", "kind": "Other"}, {"name": "fchdir", "kind": "Other"}, {"name": "getcwd", "kind": "Other"}, {"name": "getcwdb", "kind": "Other"}, {"name": "chmod", "kind": "Other"}, {"name": "chroot", "kind": "Other"}, {"name": "chown", "kind": "Other"}, {"name": "lchown", "kind": "Other"}, {"name": "link", "kind": "Other"}, {"name": "lstat", "kind": "Other"}, {"name": "mkdir", "kind": "Other"}, {"name": "mkfifo", "kind": "Other"}, {"name": "makedirs", "kind": "Other"}, {"name": "mknod", "kind": "Other"}, {"name": "major", "kind": "Other"}, {"name": "minor", "kind": "Other"}, {"name": "makedev", "kind": "Other"}, {"name": "pathconf", "kind": "Other"}, {"name": "readlink", "kind": "Other"}, {"name": "remove", "kind": "Other"}, {"name": "removedirs", "kind": "Other"}, {"name": "rename", "kind": "Other"}, {"name": "renames", "kind": "Other"}, {"name": "replace", "kind": "Other"}, {"name": "rmdir", "kind": "Other"}, {"name": "_ScandirIterator", "kind": "LocalType"}, {"name": "scandir", "kind": "Other"}, {"name": "stat", "kind": "Other"}, {"name": "statvfs", "kind": "Other"}, {"name": "symlink", "kind": "Other"}, {"name": "sync", "kind": "Other"}, {"name": "truncate", "kind": "Other"}, {"name": "unlink", "kind": "Other"}, {"name": "utime", "kind": "Other"}, {"name": "_OnError", "kind": "Other"}, {"name": "walk", "kind": "Other"}, {"name": "fwalk", "kind": "Other"}, {"name": "getxattr", "kind": "Other"}, {"name": "listxattr", "kind": "Other"}, {"name": "removexattr", "kind": "Other"}, {"name": "setxattr", "kind": "Other"}, {"name": "abort", "kind": "Other"}, {"name": "execl", "kind": "Other"}, {"name": "execlp", "kind": "Other"}, {"name": "execle", "kind": "Other"}, {"name": "execlpe", "kind": "Other"}, {"name": "_ExecVArgs", "kind": "Other"}, {"name": "_ExecEnv", "kind": "Other"}, {"name": "execv", "kind": "Other"}, {"name": "execve", "kind": "Other"}, {"name": "execvp", "kind": "Other"}, {"name": "execvpe", "kind": "Other"}, {"name": "_exit", "kind": "Other"}, {"name": "kill", "kind": "Other"}, {"name": "fork", "kind": "Other"}, {"name": "forkpty", "kind": "Other"}, {"name": "killpg", "kind": "Other"}, {"name": "nice", "kind": "Other"}, {"name": "plock", "kind": "Other"}, {"name": "_wrap_close", "kind": "LocalType"}, {"name": "popen", "kind": "Other"}, {"name": "spawnl", "kind": "Other"}, {"name": "spawnle", "kind": "Other"}, {"name": "spawnv", "kind": "Other"}, {"name": "spawnve", "kind": "Other"}, {"name": "system", "kind": "Other"}, {"name": "times_result", "kind": "LocalType"}, {"name": "times", "kind": "Other"}, {"name": "waitpid", "kind": "Other"}, {"name": "spawnlp", "kind": "Other"}, {"name": "spawnlpe", "kind": "Other"}, {"name": "spawnvp", "kind": "Other"}, {"name": "spawnvpe", "kind": "Other"}, {"name": "wait", "kind": "Other"}, {"name": "waitid_result", "kind": "LocalType"}, {"name": "waitid", "kind": "Other"}, {"name": "wait3", "kind": "Other"}, {"name": "wait4", "kind": "Other"}, {"name": "WCOREDUMP", "kind": "Other"}, {"name": "WIFCONTINUED", "kind": "Other"}, {"name": "WIFSTOPPED", "kind": "Other"}, {"name": "WIFSIGNALED", "kind": "Other"}, {"name": "WIFEXITED", "kind": "Other"}, {"name": "WEXITSTATUS", "kind": "Other"}, {"name": "WSTOPSIG", "kind": "Other"}, {"name": "WTERMSIG", "kind": "Other"}, {"name": "posix_spawn", "kind": "Other"}, {"name": "posix_spawnp", "kind": "Other"}, {"name": "POSIX_SPAWN_OPEN", "kind": "Other"}, {"name": "POSIX_SPAWN_CLOSE", "kind": "Other"}, {"name": "POSIX_SPAWN_DUP2", "kind": "Other"}, {"name": "sched_param", "kind": "LocalType"}, {"name": "sched_get_priority_min", "kind": "Other"}, {"name": "sched_get_priority_max", "kind": "Other"}, {"name": "sched_yield", "kind": "Other"}, {"name": "sched_setscheduler", "kind": "Other"}, {"name": "sched_getscheduler", "kind": "Other"}, {"name": "sched_rr_get_interval", "kind": "Other"}, {"name": "sched_setparam", "kind": "Other"}, {"name": "sched_getparam", "kind": "Other"}, {"name": "sched_setaffinity", "kind": "Other"}, {"name": "sched_getaffinity", "kind": "Other"}, {"name": "cpu_count", "kind": "Other"}, {"name": "confstr", "kind": "Other"}, {"name": "getloadavg", "kind": "Other"}, {"name": "sysconf", "kind": "Other"}, {"name": "getrandom", "kind": "Other"}, {"name": "urandom", "kind": "Other"}, {"name": "register_at_fork", "kind": "Other"}, {"name": "MFD_CLOEXEC", "kind": "Other"}, {"name": "MFD_ALLOW_SEALING", "kind": "Other"}, {"name": "MFD_HUGETLB", "kind": "Other"}, {"name": "MFD_HUGE_SHIFT", "kind": "Other"}, {"name": "MFD_HUGE_MASK", "kind": "Other"}, {"name": "MFD_HUGE_64KB", "kind": "Other"}, {"name": "MFD_HUGE_512KB", "kind": "Other"}, {"name": "MFD_HUGE_1MB", "kind": "Other"}, {"name": "MFD_HUGE_2MB", "kind": "Other"}, {"name": "MFD_HUGE_8MB", "kind": "Other"}, {"name": "MFD_HUGE_16MB", "kind": "Other"}, {"name": "MFD_HUGE_32MB", "kind": "Other"}, {"name": "MFD_HUGE_256MB", "kind": "Other"}, {"name": "MFD_HUGE_512MB", "kind": "Other"}, {"name": "MFD_HUGE_1GB", "kind": "Other"}, {"name": "MFD_HUGE_2GB", "kind": "Other"}, {"name": "MFD_HUGE_16GB", "kind": "Other"}, {"name": "memfd_create", "kind": "Other"}, {"name": "copy_file_range", "kind": "Other"}, {"name": "waitstatus_to_exitcode", "kind": "Other"}, {"name": "pidfd_open", "kind": "Other"}], "mmap": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "NoReturn", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "ACCESS_DEFAULT", "kind": "Other"}, {"name": "ACCESS_READ", "kind": "Other"}, {"name": "ACCESS_WRITE", "kind": "Other"}, {"name": "ACCESS_COPY", "kind": "Other"}, {"name": "ALLOCATIONGRANULARITY", "kind": "Other"}, {"name": "MAP_DENYWRITE", "kind": "Other"}, {"name": "MAP_EXECUTABLE", "kind": "Other"}, {"name": "MAP_POPULATE", "kind": "Other"}, {"name": "MAP_ANON", "kind": "Other"}, {"name": "MAP_ANONYMOUS", "kind": "Other"}, {"name": "MAP_PRIVATE", "kind": "Other"}, {"name": "MAP_SHARED", "kind": "Other"}, {"name": "PROT_EXEC", "kind": "Other"}, {"name": "PROT_READ", "kind": "Other"}, {"name": "PROT_WRITE", "kind": "Other"}, {"name": "PAGESIZE", "kind": "Other"}, {"name": "mmap", "kind": "LocalType"}, {"name": "MADV_NORMAL", "kind": "Other"}, {"name": "MADV_RANDOM", "kind": "Other"}, {"name": "MADV_SEQUENTIAL", "kind": "Other"}, {"name": "MADV_WILLNEED", "kind": "Other"}, {"name": "MADV_DONTNEED", "kind": "Other"}, {"name": "MADV_FREE", "kind": "Other"}, {"name": "MADV_REMOVE", "kind": "Other"}, {"name": "MADV_DONTFORK", "kind": "Other"}, {"name": "MADV_DOFORK", "kind": "Other"}, {"name": "MADV_HWPOISON", "kind": "Other"}, {"name": "MADV_MERGEABLE", "kind": "Other"}, {"name": "MADV_UNMERGEABLE", "kind": "Other"}, {"name": "MADV_HUGEPAGE", "kind": "Other"}, {"name": "MADV_NOHUGEPAGE", "kind": "Other"}, {"name": "MADV_DONTDUMP", "kind": "Other"}, {"name": "MADV_DODUMP", "kind": "Other"}], "ctypes": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "POINTER", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "ArgumentError", "kind": "ImportedType", "fullname": "_ctypes.ArgumentError"}, {"name": "Array", "kind": "ImportedType", "fullname": "_ctypes.Array"}, {"name": "_CFuncPtr", "kind": "ImportedType", "fullname": "_ctypes.CFuncPtr"}, {"name": "Structure", "kind": "ImportedType", "fullname": "_ctypes.Structure"}, {"name": "Union", "kind": "ImportedType", "fullname": "_ctypes.Union"}, {"name": "_CanCastTo", "kind": "ImportedType", "fullname": "_ctypes._CanCastTo"}, {"name": "_CArgObject", "kind": "ImportedType", "fullname": "_ctypes._CArgObject"}, {"name": "_CData", "kind": "ImportedType", "fullname": "_ctypes._CData"}, {"name": "_CDataMeta", "kind": "ImportedType", "fullname": "_ctypes._CDataMeta"}, {"name": "_CField", "kind": "ImportedType", "fullname": "_ctypes._CField"}, {"name": "_Pointer", "kind": "ImportedType", "fullname": "_ctypes._Pointer"}, {"name": "_PointerLike", "kind": "ImportedType", "fullname": "_ctypes._PointerLike"}, {"name": "_SimpleCData", "kind": "ImportedType", "fullname": "_ctypes._SimpleCData"}, {"name": "_StructUnionBase", "kind": "ImportedType", "fullname": "_ctypes._StructUnionBase"}, {"name": "_StructUnionMeta", "kind": "ImportedType", "fullname": "_ctypes._StructUnionMeta"}, {"name": "addressof", "kind": "Other"}, {"name": "alignment", "kind": "Other"}, {"name": "byref", "kind": "Other"}, {"name": "get_errno", "kind": "Other"}, {"name": "pointer", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "set_errno", "kind": "Other"}, {"name": "sizeof", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_DLLT", "kind": "Other"}, {"name": "DEFAULT_MODE", "kind": "Other"}, {"name": "CDLL", "kind": "LocalType"}, {"name": "PyDLL", "kind": "LocalType"}, {"name": "LibraryLoader", "kind": "LocalType"}, {"name": "cdll", "kind": "Other"}, {"name": "pydll", "kind": "Other"}, {"name": "pythonapi", "kind": "Other"}, {"name": "_FuncPointer", "kind": "LocalType"}, {"name": "_NamedFuncPointer", "kind": "LocalType"}, {"name": "CFUNCTYPE", "kind": "Other"}, {"name": "PYFUNCTYPE", "kind": "Other"}, {"name": "_CVoidPLike", "kind": "Other"}, {"name": "_CVoidConstPLike", "kind": "Other"}, {"name": "_CastT", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "create_string_buffer", "kind": "Other"}, {"name": "c_buffer", "kind": "Other"}, {"name": "create_unicode_buffer", "kind": "Other"}, {"name": "memmove", "kind": "Other"}, {"name": "memset", "kind": "Other"}, {"name": "string_at", "kind": "Other"}, {"name": "wstring_at", "kind": "Other"}, {"name": "c_byte", "kind": "LocalType"}, {"name": "c_char", "kind": "LocalType"}, {"name": "c_char_p", "kind": "LocalType"}, {"name": "c_double", "kind": "LocalType"}, {"name": "c_longdouble", "kind": "LocalType"}, {"name": "c_float", "kind": "LocalType"}, {"name": "c_int", "kind": "LocalType"}, {"name": "c_int8", "kind": "LocalType"}, {"name": "c_int16", "kind": "LocalType"}, {"name": "c_int32", "kind": "LocalType"}, {"name": "c_int64", "kind": "LocalType"}, {"name": "c_long", "kind": "LocalType"}, {"name": "c_longlong", "kind": "LocalType"}, {"name": "c_short", "kind": "LocalType"}, {"name": "c_size_t", "kind": "LocalType"}, {"name": "c_ssize_t", "kind": "LocalType"}, {"name": "c_ubyte", "kind": "LocalType"}, {"name": "c_uint", "kind": "LocalType"}, {"name": "c_uint8", "kind": "LocalType"}, {"name": "c_uint16", "kind": "LocalType"}, {"name": "c_uint32", "kind": "LocalType"}, {"name": "c_uint64", "kind": "LocalType"}, {"name": "c_ulong", "kind": "LocalType"}, {"name": "c_ulonglong", "kind": "LocalType"}, {"name": "c_ushort", "kind": "LocalType"}, {"name": "c_void_p", "kind": "LocalType"}, {"name": "c_wchar", "kind": "LocalType"}, {"name": "c_wchar_p", "kind": "LocalType"}, {"name": "c_bool", "kind": "LocalType"}, {"name": "py_object", "kind": "LocalType"}, {"name": "BigEndianStructure", "kind": "LocalType"}, {"name": "LittleEndianStructure", "kind": "LocalType"}], "array": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsRead", "kind": "ImportedType", "fullname": "_typeshed.SupportsRead"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_IntTypeCode", "kind": "Other"}, {"name": "_FloatTypeCode", "kind": "Other"}, {"name": "_UnicodeTypeCode", "kind": "Other"}, {"name": "_TypeCode", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "typecodes", "kind": "Other"}, {"name": "array", "kind": "LocalType"}, {"name": "ArrayType", "kind": "Other"}], "datetime": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "struct_time", "kind": "ImportedType", "fullname": "time.struct_time"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_D", "kind": "Other"}, {"name": "MINYEAR", "kind": "Other"}, {"name": "MAXYEAR", "kind": "Other"}, {"name": "tzinfo", "kind": "LocalType"}, {"name": "_TzInfo", "kind": "Other"}, {"name": "timezone", "kind": "LocalType"}, {"name": "_IsoCalendarDate", "kind": "LocalType"}, {"name": "date", "kind": "LocalType"}, {"name": "time", "kind": "LocalType"}, {"name": "_Date", "kind": "Other"}, {"name": "_Time", "kind": "Other"}, {"name": "timedelta", "kind": "LocalType"}, {"name": "datetime", "kind": "LocalType"}], "enum": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_EnumMemberT", "kind": "Other"}, {"name": "_EnumerationT", "kind": "Other"}, {"name": "_EnumNames", "kind": "Other"}, {"name": "_EnumDict", "kind": "LocalType"}, {"name": "EnumMeta", "kind": "LocalType"}, {"name": "_magic_enum_attr", "kind": "Other"}, {"name": "Enum", "kind": "LocalType"}, {"name": "_IntEnumBase", "kind": "Other"}, {"name": "IntEnum", "kind": "LocalType"}, {"name": "unique", "kind": "Other"}, {"name": "_auto_null", "kind": "Other"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "kind": "LocalType"}, {"name": "auto", "kind": "LocalType"}], "abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Concatenate", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "ABCMeta", "kind": "LocalType"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "abstractclassmethod", "kind": "LocalType"}, {"name": "abstractstaticmethod", "kind": "LocalType"}, {"name": "abstractproperty", "kind": "LocalType"}, {"name": "ABC", "kind": "LocalType"}, {"name": "get_cache_token", "kind": "Other"}, {"name": "update_abstractmethods", "kind": "Other"}], "contextlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_io", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_ExitFunc", "kind": "Other"}, {"name": "_CM_EF", "kind": "Other"}, {"name": "AbstractContextManager", "kind": "LocalType"}, {"name": "AbstractAsyncContextManager", "kind": "LocalType"}, {"name": "ContextDecorator", "kind": "LocalType"}, {"name": "_GeneratorContextManager", "kind": "LocalType"}, {"name": "contextmanager", "kind": "Other"}, {"name": "_AF", "kind": "Other"}, {"name": "AsyncContextDecorator", "kind": "LocalType"}, {"name": "_AsyncGeneratorContextManager", "kind": "LocalType"}, {"name": "asynccontextmanager", "kind": "Other"}, {"name": "_SupportsClose", "kind": "LocalType"}, {"name": "_SupportsCloseT", "kind": "Other"}, {"name": "closing", "kind": "LocalType"}, {"name": "_SupportsAclose", "kind": "LocalType"}, {"name": "_SupportsAcloseT", "kind": "Other"}, {"name": "aclosing", "kind": "LocalType"}, {"name": "suppress", "kind": "LocalType"}, {"name": "_RedirectStream", "kind": "LocalType"}, {"name": "redirect_stdout", "kind": "LocalType"}, {"name": "redirect_stderr", "kind": "LocalType"}, {"name": "ExitStack", "kind": "LocalType"}, {"name": "_ExitCoroFunc", "kind": "Other"}, {"name": "_ACM_EF", "kind": "Other"}, {"name": "AsyncExitStack", "kind": "LocalType"}, {"name": "nullcontext", "kind": "LocalType"}], "re": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sre_compile", "kind": "Module", "fullname": "sre_compile"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "Match", "kind": "LocalType"}, {"name": "Pattern", "kind": "LocalType"}, {"name": "RegexFlag", "kind": "LocalType"}, {"name": "A", "kind": "Other"}, {"name": "ASCII", "kind": "Other"}, {"name": "DEBUG", "kind": "Other"}, {"name": "I", "kind": "Other"}, {"name": "IGNORECASE", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "LOCALE", "kind": "Other"}, {"name": "M", "kind": "Other"}, {"name": "MULTILINE", "kind": "Other"}, {"name": "S", "kind": "Other"}, {"name": "DOTALL", "kind": "Other"}, {"name": "X", "kind": "Other"}, {"name": "VERBOSE", "kind": "Other"}, {"name": "U", "kind": "Other"}, {"name": "UNICODE", "kind": "Other"}, {"name": "T", "kind": "Other"}, {"name": "TEMPLATE", "kind": "Other"}, {"name": "_FlagsType", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "search", "kind": "Other"}, {"name": "match", "kind": "Other"}, {"name": "fullmatch", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "findall", "kind": "Other"}, {"name": "finditer", "kind": "Other"}, {"name": "sub", "kind": "Other"}, {"name": "subn", "kind": "Other"}, {"name": "escape", "kind": "Other"}, {"name": "purge", "kind": "Other"}, {"name": "template", "kind": "Other"}], "_ast": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "PyCF_ONLY_AST", "kind": "Other"}, {"name": "PyCF_TYPE_COMMENTS", "kind": "Other"}, {"name": "PyCF_ALLOW_TOP_LEVEL_AWAIT", "kind": "Other"}, {"name": "_Identifier", "kind": "Other"}, {"name": "AST", "kind": "LocalType"}, {"name": "mod", "kind": "LocalType"}, {"name": "type_ignore", "kind": "LocalType"}, {"name": "TypeIgnore", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "Module", "kind": "LocalType"}, {"name": "Interactive", "kind": "LocalType"}, {"name": "Expression", "kind": "LocalType"}, {"name": "stmt", "kind": "LocalType"}, {"name": "FunctionDef", "kind": "LocalType"}, {"name": "AsyncFunctionDef", "kind": "LocalType"}, {"name": "ClassDef", "kind": "LocalType"}, {"name": "Return", "kind": "LocalType"}, {"name": "Delete", "kind": "LocalType"}, {"name": "Assign", "kind": "LocalType"}, {"name": "AugAssign", "kind": "LocalType"}, {"name": "AnnAssign", "kind": "LocalType"}, {"name": "For", "kind": "LocalType"}, {"name": "AsyncFor", "kind": "LocalType"}, {"name": "While", "kind": "LocalType"}, {"name": "If", "kind": "LocalType"}, {"name": "With", "kind": "LocalType"}, {"name": "AsyncWith", "kind": "LocalType"}, {"name": "Raise", "kind": "LocalType"}, {"name": "Try", "kind": "LocalType"}, {"name": "Assert", "kind": "LocalType"}, {"name": "Import", "kind": "LocalType"}, {"name": "ImportFrom", "kind": "LocalType"}, {"name": "Global", "kind": "LocalType"}, {"name": "Nonlocal", "kind": "LocalType"}, {"name": "Expr", "kind": "LocalType"}, {"name": "Pass", "kind": "LocalType"}, {"name": "Break", "kind": "LocalType"}, {"name": "Continue", "kind": "LocalType"}, {"name": "expr", "kind": "LocalType"}, {"name": "BoolOp", "kind": "LocalType"}, {"name": "BinOp", "kind": "LocalType"}, {"name": "UnaryOp", "kind": "LocalType"}, {"name": "Lambda", "kind": "LocalType"}, {"name": "IfExp", "kind": "LocalType"}, {"name": "Dict", "kind": "LocalType"}, {"name": "Set", "kind": "LocalType"}, {"name": "ListComp", "kind": "LocalType"}, {"name": "SetComp", "kind": "LocalType"}, {"name": "DictComp", "kind": "LocalType"}, {"name": "GeneratorExp", "kind": "LocalType"}, {"name": "Await", "kind": "LocalType"}, {"name": "Yield", "kind": "LocalType"}, {"name": "YieldFrom", "kind": "LocalType"}, {"name": "Compare", "kind": "LocalType"}, {"name": "Call", "kind": "LocalType"}, {"name": "FormattedValue", "kind": "LocalType"}, {"name": "JoinedStr", "kind": "LocalType"}, {"name": "Constant", "kind": "LocalType"}, {"name": "NamedExpr", "kind": "LocalType"}, {"name": "Attribute", "kind": "LocalType"}, {"name": "_Slice", "kind": "Other"}, {"name": "Slice", "kind": "LocalType"}, {"name": "Subscript", "kind": "LocalType"}, {"name": "Starred", "kind": "LocalType"}, {"name": "Name", "kind": "LocalType"}, {"name": "List", "kind": "LocalType"}, {"name": "Tuple", "kind": "LocalType"}, {"name": "expr_context", "kind": "LocalType"}, {"name": "Del", "kind": "LocalType"}, {"name": "Load", "kind": "LocalType"}, {"name": "Store", "kind": "LocalType"}, {"name": "boolop", "kind": "LocalType"}, {"name": "And", "kind": "LocalType"}, {"name": "Or", "kind": "LocalType"}, {"name": "operator", "kind": "LocalType"}, {"name": "Add", "kind": "LocalType"}, {"name": "BitAnd", "kind": "LocalType"}, {"name": "BitOr", "kind": "LocalType"}, {"name": "BitXor", "kind": "LocalType"}, {"name": "Div", "kind": "LocalType"}, {"name": "FloorDiv", "kind": "LocalType"}, {"name": "LShift", "kind": "LocalType"}, {"name": "Mod", "kind": "LocalType"}, {"name": "Mult", "kind": "LocalType"}, {"name": "MatMult", "kind": "LocalType"}, {"name": "Pow", "kind": "LocalType"}, {"name": "RShift", "kind": "LocalType"}, {"name": "Sub", "kind": "LocalType"}, {"name": "unaryop", "kind": "LocalType"}, {"name": "Invert", "kind": "LocalType"}, {"name": "Not", "kind": "LocalType"}, {"name": "UAdd", "kind": "LocalType"}, {"name": "USub", "kind": "LocalType"}, {"name": "cmpop", "kind": "LocalType"}, {"name": "Eq", "kind": "LocalType"}, {"name": "Gt", "kind": "LocalType"}, {"name": "GtE", "kind": "LocalType"}, {"name": "In", "kind": "LocalType"}, {"name": "Is", "kind": "LocalType"}, {"name": "IsNot", "kind": "LocalType"}, {"name": "Lt", "kind": "LocalType"}, {"name": "LtE", "kind": "LocalType"}, {"name": "NotEq", "kind": "LocalType"}, {"name": "NotIn", "kind": "LocalType"}, {"name": "comprehension", "kind": "LocalType"}, {"name": "excepthandler", "kind": "LocalType"}, {"name": "ExceptHandler", "kind": "LocalType"}, {"name": "arguments", "kind": "LocalType"}, {"name": "arg", "kind": "LocalType"}, {"name": "keyword", "kind": "LocalType"}, {"name": "alias", "kind": "LocalType"}, {"name": "withitem", "kind": "LocalType"}, {"name": "Match", "kind": "LocalType"}, {"name": "pattern", "kind": "LocalType"}, {"name": "_Pattern", "kind": "Other"}, {"name": "match_case", "kind": "LocalType"}, {"name": "MatchValue", "kind": "LocalType"}, {"name": "MatchSingleton", "kind": "LocalType"}, {"name": "MatchSequence", "kind": "LocalType"}, {"name": "MatchStar", "kind": "LocalType"}, {"name": "MatchMapping", "kind": "LocalType"}, {"name": "MatchClass", "kind": "LocalType"}, {"name": "MatchAs", "kind": "LocalType"}, {"name": "MatchOr", "kind": "LocalType"}], "io": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "builtins", "kind": "Module", "fullname": "builtins"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "_Opener", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "DEFAULT_BUFFER_SIZE", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "open_code", "kind": "Other"}, {"name": "BlockingIOError", "kind": "Other"}, {"name": "UnsupportedOperation", "kind": "LocalType"}, {"name": "IOBase", "kind": "LocalType"}, {"name": "RawIOBase", "kind": "LocalType"}, {"name": "BufferedIOBase", "kind": "LocalType"}, {"name": "FileIO", "kind": "LocalType"}, {"name": "BytesIO", "kind": "LocalType"}, {"name": "BufferedReader", "kind": "LocalType"}, {"name": "BufferedWriter", "kind": "LocalType"}, {"name": "BufferedRandom", "kind": "LocalType"}, {"name": "BufferedRWPair", "kind": "LocalType"}, {"name": "TextIOBase", "kind": "LocalType"}, {"name": "TextIOWrapper", "kind": "LocalType"}, {"name": "StringIO", "kind": "LocalType"}, {"name": "IncrementalNewlineDecoder", "kind": "LocalType"}], "importlib.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_ast", "kind": "Module", "fullname": "_ast"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Finder", "kind": "LocalType"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ResourceLoader", "kind": "LocalType"}, {"name": "InspectLoader", "kind": "LocalType"}, {"name": "ExecutionLoader", "kind": "LocalType"}, {"name": "SourceLoader", "kind": "LocalType"}, {"name": "MetaPathFinder", "kind": "LocalType"}, {"name": "PathEntryFinder", "kind": "LocalType"}, {"name": "FileLoader", "kind": "LocalType"}, {"name": "ResourceReader", "kind": "LocalType"}, {"name": "Traversable", "kind": "LocalType"}, {"name": "TraversableResources", "kind": "LocalType"}], "importlib.machinery": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "importlib", "kind": "Module", "fullname": "importlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "DistributionFinder", "kind": "ImportedType", "fullname": "importlib.metadata.DistributionFinder"}, {"name": "PathDistribution", "kind": "ImportedType", "fullname": "importlib.metadata.PathDistribution"}, {"name": "ModuleSpec", "kind": "LocalType"}, {"name": "BuiltinImporter", "kind": "LocalType"}, {"name": "FrozenImporter", "kind": "LocalType"}, {"name": "WindowsRegistryFinder", "kind": "LocalType"}, {"name": "PathFinder", "kind": "LocalType"}, {"name": "SOURCE_SUFFIXES", "kind": "Other"}, {"name": "DEBUG_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "OPTIMIZED_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "EXTENSION_SUFFIXES", "kind": "Other"}, {"name": "all_suffixes", "kind": "Other"}, {"name": "FileFinder", "kind": "LocalType"}, {"name": "SourceFileLoader", "kind": "LocalType"}, {"name": "SourcelessFileLoader", "kind": "LocalType"}, {"name": "ExtensionFileLoader", "kind": "LocalType"}], "dataclasses": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "DataclassInstance", "kind": "ImportedType", "fullname": "_typeshed.DataclassInstance"}, {"name": "Type", "kind": "ImportedType", "fullname": "builtins.type"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_DataclassT", "kind": "Other"}, {"name": "_MISSING_TYPE", "kind": "LocalType"}, {"name": "MISSING", "kind": "Other"}, {"name": "KW_ONLY", "kind": "LocalType"}, {"name": "asdict", "kind": "Other"}, {"name": "astuple", "kind": "Other"}, {"name": "dataclass", "kind": "Other"}, {"name": "_DefaultFactory", "kind": "LocalType"}, {"name": "Field", "kind": "LocalType"}, {"name": "field", "kind": "Other"}, {"name": "fields", "kind": "Other"}, {"name": "is_dataclass", "kind": "Other"}, {"name": "FrozenInstanceError", "kind": "LocalType"}, {"name": "_InitVarMeta", "kind": "Other"}, {"name": "InitVar", "kind": "LocalType"}, {"name": "make_dataclass", "kind": "Other"}, {"name": "replace", "kind": "Other"}], "numpy._typing._nbit": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "_NBitByte", "kind": "Other"}, {"name": "_NBitShort", "kind": "Other"}, {"name": "_NBitIntC", "kind": "Other"}, {"name": "_NBitIntP", "kind": "Other"}, {"name": "_NBitInt", "kind": "Other"}, {"name": "_NBitLongLong", "kind": "Other"}, {"name": "_NBitHalf", "kind": "Other"}, {"name": "_NBitSingle", "kind": "Other"}, {"name": "_NBitDouble", "kind": "Other"}, {"name": "_NBitLongDouble", "kind": "Other"}], "numpy._typing._scalars": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "np", "kind": "Module", "fullname": "numpy"}, {"name": "_CharLike_co", "kind": "Other"}, {"name": "_BoolLike_co", "kind": "Other"}, {"name": "_UIntLike_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "_TD64Like_co", "kind": "Other"}, {"name": "_NumberLike_co", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_VoidLike_co", "kind": "Other"}], "numpy._typing._generic_alias": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "np", "kind": "Module", "fullname": "numpy"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_to_str", "kind": "Other"}, {"name": "_parse_parameters", "kind": "Other"}, {"name": "_reconstruct_alias", "kind": "Other"}, {"name": "_GenericAlias", "kind": "LocalType"}, {"name": "_GENERIC_ALIAS_TYPE", "kind": "Other"}, {"name": "ScalarType", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}], "numpy._typing._nested_sequence": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_NestedSequence", "kind": "LocalType"}], "__future__": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_VersionInfo", "kind": "Other"}, {"name": "_Feature", "kind": "LocalType"}, {"name": "absolute_import", "kind": "Other"}, {"name": "division", "kind": "Other"}, {"name": "generators", "kind": "Other"}, {"name": "nested_scopes", "kind": "Other"}, {"name": "print_function", "kind": "Other"}, {"name": "unicode_literals", "kind": "Other"}, {"name": "with_statement", "kind": "Other"}, {"name": "barry_as_FLUFL", "kind": "Other"}, {"name": "generator_stop", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "all_feature_names", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "numpy.core.umath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_multiarray_umath", "kind": "Other"}, {"name": "_UFUNC_API", "kind": "Other"}, {"name": "_add_newdoc_ufunc", "kind": "Other"}, {"name": "_ones_like", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "numpy.ma.mrecords": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "MaskedArray", "kind": "ImportedType", "fullname": "numpy.ma.core.MaskedArray"}, {"name": "__all__", "kind": "Other"}, {"name": "_ShapeType", "kind": "Other"}, {"name": "_DType_co", "kind": "Other"}, {"name": "MaskedRecords", "kind": "LocalType"}, {"name": "mrecarray", "kind": "Other"}, {"name": "fromarrays", "kind": "Other"}, {"name": "fromrecords", "kind": "Other"}, {"name": "fromtextfile", "kind": "Other"}, {"name": "addfield", "kind": "Other"}], "zipfile": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "io", "kind": "Module", "fullname": "io"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SizedBuffer", "kind": "ImportedType", "fullname": "_typeshed.SizedBuffer"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_DateTuple", "kind": "Other"}, {"name": "_ReadWriteMode", "kind": "Other"}, {"name": "_ReadWriteBinaryMode", "kind": "Other"}, {"name": "_ZipFileMode", "kind": "Other"}, {"name": "BadZipFile", "kind": "LocalType"}, {"name": "BadZipfile", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "LargeZipFile", "kind": "LocalType"}, {"name": "_ZipStream", "kind": "LocalType"}, {"name": "_SupportsReadSeekTell", "kind": "LocalType"}, {"name": "_ClosableZipStream", "kind": "LocalType"}, {"name": "ZipExtFile", "kind": "LocalType"}, {"name": "_Writer", "kind": "LocalType"}, {"name": "ZipFile", "kind": "LocalType"}, {"name": "PyZipFile", "kind": "LocalType"}, {"name": "ZipInfo", "kind": "LocalType"}, {"name": "Path", "kind": "LocalType"}, {"name": "is_zipfile", "kind": "Other"}, {"name": "ZIP_STORED", "kind": "Other"}, {"name": "ZIP_DEFLATED", "kind": "Other"}, {"name": "ZIP64_LIMIT", "kind": "Other"}, {"name": "ZIP_FILECOUNT_LIMIT", "kind": "Other"}, {"name": "ZIP_MAX_COMMENT", "kind": "Other"}, {"name": "ZIP_BZIP2", "kind": "Other"}, {"name": "ZIP_LZMA", "kind": "Other"}], "ast": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "PyCF_ONLY_AST", "kind": "Other"}, {"name": "PyCF_TYPE_COMMENTS", "kind": "Other"}, {"name": "PyCF_ALLOW_TOP_LEVEL_AWAIT", "kind": "Other"}, {"name": "AST", "kind": "ImportedType", "fullname": "_ast.AST"}, {"name": "mod", "kind": "ImportedType", "fullname": "_ast.mod"}, {"name": "type_ignore", "kind": "ImportedType", "fullname": "_ast.type_ignore"}, {"name": "TypeIgnore", "kind": "ImportedType", "fullname": "_ast.TypeIgnore"}, {"name": "FunctionType", "kind": "ImportedType", "fullname": "_ast.FunctionType"}, {"name": "Module", "kind": "ImportedType", "fullname": "_ast.Module"}, {"name": "Interactive", "kind": "ImportedType", "fullname": "_ast.Interactive"}, {"name": "Expression", "kind": "ImportedType", "fullname": "_ast.Expression"}, {"name": "stmt", "kind": "ImportedType", "fullname": "_ast.stmt"}, {"name": "FunctionDef", "kind": "ImportedType", "fullname": "_ast.FunctionDef"}, {"name": "AsyncFunctionDef", "kind": "ImportedType", "fullname": "_ast.AsyncFunctionDef"}, {"name": "ClassDef", "kind": "ImportedType", "fullname": "_ast.ClassDef"}, {"name": "Return", "kind": "ImportedType", "fullname": "_ast.Return"}, {"name": "Delete", "kind": "ImportedType", "fullname": "_ast.Delete"}, {"name": "Assign", "kind": "ImportedType", "fullname": "_ast.Assign"}, {"name": "AugAssign", "kind": "ImportedType", "fullname": "_ast.AugAssign"}, {"name": "AnnAssign", "kind": "ImportedType", "fullname": "_ast.AnnAssign"}, {"name": "For", "kind": "ImportedType", "fullname": "_ast.For"}, {"name": "AsyncFor", "kind": "ImportedType", "fullname": "_ast.AsyncFor"}, {"name": "While", "kind": "ImportedType", "fullname": "_ast.While"}, {"name": "If", "kind": "ImportedType", "fullname": "_ast.If"}, {"name": "With", "kind": "ImportedType", "fullname": "_ast.With"}, {"name": "AsyncWith", "kind": "ImportedType", "fullname": "_ast.AsyncWith"}, {"name": "Raise", "kind": "ImportedType", "fullname": "_ast.Raise"}, {"name": "Try", "kind": "ImportedType", "fullname": "_ast.Try"}, {"name": "Assert", "kind": "ImportedType", "fullname": "_ast.Assert"}, {"name": "Import", "kind": "ImportedType", "fullname": "_ast.Import"}, {"name": "ImportFrom", "kind": "ImportedType", "fullname": "_ast.ImportFrom"}, {"name": "Global", "kind": "ImportedType", "fullname": "_ast.Global"}, {"name": "Nonlocal", "kind": "ImportedType", "fullname": "_ast.Nonlocal"}, {"name": "Expr", "kind": "ImportedType", "fullname": "_ast.Expr"}, {"name": "Pass", "kind": "ImportedType", "fullname": "_ast.Pass"}, {"name": "Break", "kind": "ImportedType", "fullname": "_ast.Break"}, {"name": "Continue", "kind": "ImportedType", "fullname": "_ast.Continue"}, {"name": "expr", "kind": "ImportedType", "fullname": "_ast.expr"}, {"name": "BoolOp", "kind": "ImportedType", "fullname": "_ast.BoolOp"}, {"name": "BinOp", "kind": "ImportedType", "fullname": "_ast.BinOp"}, {"name": "UnaryOp", "kind": "ImportedType", "fullname": "_ast.UnaryOp"}, {"name": "Lambda", "kind": "ImportedType", "fullname": "_ast.Lambda"}, {"name": "IfExp", "kind": "ImportedType", "fullname": "_ast.IfExp"}, {"name": "Dict", "kind": "ImportedType", "fullname": "_ast.Dict"}, {"name": "Set", "kind": "ImportedType", "fullname": "_ast.Set"}, {"name": "ListComp", "kind": "ImportedType", "fullname": "_ast.ListComp"}, {"name": "SetComp", "kind": "ImportedType", "fullname": "_ast.SetComp"}, {"name": "DictComp", "kind": "ImportedType", "fullname": "_ast.DictComp"}, {"name": "GeneratorExp", "kind": "ImportedType", "fullname": "_ast.GeneratorExp"}, {"name": "Await", "kind": "ImportedType", "fullname": "_ast.Await"}, {"name": "Yield", "kind": "ImportedType", "fullname": "_ast.Yield"}, {"name": "YieldFrom", "kind": "ImportedType", "fullname": "_ast.YieldFrom"}, {"name": "Compare", "kind": "ImportedType", "fullname": "_ast.Compare"}, {"name": "Call", "kind": "ImportedType", "fullname": "_ast.Call"}, {"name": "FormattedValue", "kind": "ImportedType", "fullname": "_ast.FormattedValue"}, {"name": "JoinedStr", "kind": "ImportedType", "fullname": "_ast.JoinedStr"}, {"name": "Constant", "kind": "ImportedType", "fullname": "_ast.Constant"}, {"name": "NamedExpr", "kind": "ImportedType", "fullname": "_ast.NamedExpr"}, {"name": "Attribute", "kind": "ImportedType", "fullname": "_ast.Attribute"}, {"name": "Slice", "kind": "ImportedType", "fullname": "_ast.Slice"}, {"name": "Subscript", "kind": "ImportedType", "fullname": "_ast.Subscript"}, {"name": "Starred", "kind": "ImportedType", "fullname": "_ast.Starred"}, {"name": "Name", "kind": "ImportedType", "fullname": "_ast.Name"}, {"name": "List", "kind": "ImportedType", "fullname": "_ast.List"}, {"name": "Tuple", "kind": "ImportedType", "fullname": "_ast.Tuple"}, {"name": "expr_context", "kind": "ImportedType", "fullname": "_ast.expr_context"}, {"name": "Del", "kind": "ImportedType", "fullname": "_ast.Del"}, {"name": "Load", "kind": "ImportedType", "fullname": "_ast.Load"}, {"name": "Store", "kind": "ImportedType", "fullname": "_ast.Store"}, {"name": "boolop", "kind": "ImportedType", "fullname": "_ast.boolop"}, {"name": "And", "kind": "ImportedType", "fullname": "_ast.And"}, {"name": "Or", "kind": "ImportedType", "fullname": "_ast.Or"}, {"name": "operator", "kind": "ImportedType", "fullname": "_ast.operator"}, {"name": "Add", "kind": "ImportedType", "fullname": "_ast.Add"}, {"name": "BitAnd", "kind": "ImportedType", "fullname": "_ast.BitAnd"}, {"name": "BitOr", "kind": "ImportedType", "fullname": "_ast.BitOr"}, {"name": "BitXor", "kind": "ImportedType", "fullname": "_ast.BitXor"}, {"name": "Div", "kind": "ImportedType", "fullname": "_ast.Div"}, {"name": "FloorDiv", "kind": "ImportedType", "fullname": "_ast.FloorDiv"}, {"name": "LShift", "kind": "ImportedType", "fullname": "_ast.LShift"}, {"name": "Mod", "kind": "ImportedType", "fullname": "_ast.Mod"}, {"name": "Mult", "kind": "ImportedType", "fullname": "_ast.Mult"}, {"name": "MatMult", "kind": "ImportedType", "fullname": "_ast.MatMult"}, {"name": "Pow", "kind": "ImportedType", "fullname": "_ast.Pow"}, {"name": "RShift", "kind": "ImportedType", "fullname": "_ast.RShift"}, {"name": "Sub", "kind": "ImportedType", "fullname": "_ast.Sub"}, {"name": "unaryop", "kind": "ImportedType", "fullname": "_ast.unaryop"}, {"name": "Invert", "kind": "ImportedType", "fullname": "_ast.Invert"}, {"name": "Not", "kind": "ImportedType", "fullname": "_ast.Not"}, {"name": "UAdd", "kind": "ImportedType", "fullname": "_ast.UAdd"}, {"name": "USub", "kind": "ImportedType", "fullname": "_ast.USub"}, {"name": "cmpop", "kind": "ImportedType", "fullname": "_ast.cmpop"}, {"name": "Eq", "kind": "ImportedType", "fullname": "_ast.Eq"}, {"name": "Gt", "kind": "ImportedType", "fullname": "_ast.Gt"}, {"name": "GtE", "kind": "ImportedType", "fullname": "_ast.GtE"}, {"name": "In", "kind": "ImportedType", "fullname": "_ast.In"}, {"name": "Is", "kind": "ImportedType", "fullname": "_ast.Is"}, {"name": "IsNot", "kind": "ImportedType", "fullname": "_ast.IsNot"}, {"name": "Lt", "kind": "ImportedType", "fullname": "_ast.Lt"}, {"name": "LtE", "kind": "ImportedType", "fullname": "_ast.LtE"}, {"name": "NotEq", "kind": "ImportedType", "fullname": "_ast.NotEq"}, {"name": "NotIn", "kind": "ImportedType", "fullname": "_ast.NotIn"}, {"name": "comprehension", "kind": "ImportedType", "fullname": "_ast.comprehension"}, {"name": "excepthandler", "kind": "ImportedType", "fullname": "_ast.excepthandler"}, {"name": "ExceptHandler", "kind": "ImportedType", "fullname": "_ast.ExceptHandler"}, {"name": "arguments", "kind": "ImportedType", "fullname": "_ast.arguments"}, {"name": "arg", "kind": "ImportedType", "fullname": "_ast.arg"}, {"name": "keyword", "kind": "ImportedType", "fullname": "_ast.keyword"}, {"name": "alias", "kind": "ImportedType", "fullname": "_ast.alias"}, {"name": "withitem", "kind": "ImportedType", "fullname": "_ast.withitem"}, {"name": "Match", "kind": "ImportedType", "fullname": "_ast.Match"}, {"name": "pattern", "kind": "ImportedType", "fullname": "_ast.pattern"}, {"name": "match_case", "kind": "ImportedType", "fullname": "_ast.match_case"}, {"name": "MatchValue", "kind": "ImportedType", "fullname": "_ast.MatchValue"}, {"name": "MatchSingleton", "kind": "ImportedType", "fullname": "_ast.MatchSingleton"}, {"name": "MatchSequence", "kind": "ImportedType", "fullname": "_ast.MatchSequence"}, {"name": "MatchStar", "kind": "ImportedType", "fullname": "_ast.MatchStar"}, {"name": "MatchMapping", "kind": "ImportedType", "fullname": "_ast.MatchMapping"}, {"name": "MatchClass", "kind": "ImportedType", "fullname": "_ast.MatchClass"}, {"name": "MatchAs", "kind": "ImportedType", "fullname": "_ast.MatchAs"}, {"name": "MatchOr", "kind": "ImportedType", "fullname": "_ast.MatchOr"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "_TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "_ABC", "kind": "LocalType"}, {"name": "Num", "kind": "LocalType"}, {"name": "Str", "kind": "LocalType"}, {"name": "Bytes", "kind": "LocalType"}, {"name": "NameConstant", "kind": "LocalType"}, {"name": "Ellipsis", "kind": "LocalType"}, {"name": "slice", "kind": "LocalType"}, {"name": "ExtSlice", "kind": "LocalType"}, {"name": "Index", "kind": "LocalType"}, {"name": "Suite", "kind": "LocalType"}, {"name": "AugLoad", "kind": "LocalType"}, {"name": "AugStore", "kind": "LocalType"}, {"name": "Param", "kind": "LocalType"}, {"name": "NodeVisitor", "kind": "LocalType"}, {"name": "NodeTransformer", "kind": "LocalType"}, {"name": "_T", "kind": "Other"}, {"name": "parse", "kind": "Other"}, {"name": "unparse", "kind": "Other"}, {"name": "copy_location", "kind": "Other"}, {"name": "dump", "kind": "Other"}, {"name": "fix_missing_locations", "kind": "Other"}, {"name": "get_docstring", "kind": "Other"}, {"name": "increment_lineno", "kind": "Other"}, {"name": "iter_child_nodes", "kind": "Other"}, {"name": "iter_fields", "kind": "Other"}, {"name": "literal_eval", "kind": "Other"}, {"name": "get_source_segment", "kind": "Other"}, {"name": "walk", "kind": "Other"}, {"name": "main", "kind": "Other"}], "numpy.core.overrides": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "functools", "kind": "Module", "fullname": "functools"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "add_docstring", "kind": "Other"}, {"name": "implement_array_function", "kind": "Other"}, {"name": "_get_implementing_args", "kind": "Other"}, {"name": "getargspec", "kind": "Other"}, {"name": "ARRAY_FUNCTION_ENABLED", "kind": "Other"}, {"name": "array_function_like_doc", "kind": "Other"}, {"name": "set_array_function_like_doc", "kind": "Other"}, {"name": "ArgSpec", "kind": "LocalType"}, {"name": "verify_matching_signatures", "kind": "Other"}, {"name": "set_module", "kind": "Other"}, {"name": "array_function_dispatch", "kind": "Other"}, {"name": "array_function_from_dispatcher", "kind": "Other"}], "numpy._typing._char_codes": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "_BoolCodes", "kind": "Other"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_Float16Codes", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Complex64Codes", "kind": "Other"}, {"name": "_Complex128Codes", "kind": "Other"}, {"name": "_ByteCodes", "kind": "Other"}, {"name": "_ShortCodes", "kind": "Other"}, {"name": "_IntCCodes", "kind": "Other"}, {"name": "_IntPCodes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_LongLongCodes", "kind": "Other"}, {"name": "_UByteCodes", "kind": "Other"}, {"name": "_UShortCodes", "kind": "Other"}, {"name": "_UIntCCodes", "kind": "Other"}, {"name": "_UIntPCodes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ULongLongCodes", "kind": "Other"}, {"name": "_HalfCodes", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_LongDoubleCodes", "kind": "Other"}, {"name": "_CSingleCodes", "kind": "Other"}, {"name": "_CDoubleCodes", "kind": "Other"}, {"name": "_CLongDoubleCodes", "kind": "Other"}, {"name": "_StrCodes", "kind": "Other"}, {"name": "_BytesCodes", "kind": "Other"}, {"name": "_VoidCodes", "kind": "Other"}, {"name": "_ObjectCodes", "kind": "Other"}, {"name": "_DT64Codes", "kind": "Other"}, {"name": "_TD64Codes", "kind": "Other"}], "numpy._typing._shape": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Tuple", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "_Shape", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}], "numpy._typing._dtype_like": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Tuple", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "np", "kind": "Module", "fullname": "numpy"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "DType", "kind": "Other"}, {"name": "_BoolCodes", "kind": "Other"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_Float16Codes", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Complex64Codes", "kind": "Other"}, {"name": "_Complex128Codes", "kind": "Other"}, {"name": "_ByteCodes", "kind": "Other"}, {"name": "_ShortCodes", "kind": "Other"}, {"name": "_IntCCodes", "kind": "Other"}, {"name": "_IntPCodes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_LongLongCodes", "kind": "Other"}, {"name": "_UByteCodes", "kind": "Other"}, {"name": "_UShortCodes", "kind": "Other"}, {"name": "_UIntCCodes", "kind": "Other"}, {"name": "_UIntPCodes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ULongLongCodes", "kind": "Other"}, {"name": "_HalfCodes", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_LongDoubleCodes", "kind": "Other"}, {"name": "_CSingleCodes", "kind": "Other"}, {"name": "_CDoubleCodes", "kind": "Other"}, {"name": "_CLongDoubleCodes", "kind": "Other"}, {"name": "_DT64Codes", "kind": "Other"}, {"name": "_TD64Codes", "kind": "Other"}, {"name": "_StrCodes", "kind": "Other"}, {"name": "_BytesCodes", "kind": "Other"}, {"name": "_VoidCodes", "kind": "Other"}, {"name": "_ObjectCodes", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_DType_co", "kind": "Other"}, {"name": "_DTypeLikeNested", "kind": "Other"}, {"name": "_DTypeDictBase", "kind": "LocalType"}, {"name": "_DTypeDict", "kind": "LocalType"}, {"name": "_SupportsDType", "kind": "LocalType"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_VoidDTypeLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLikeBool", "kind": "Other"}, {"name": "_DTypeLikeUInt", "kind": "Other"}, {"name": "_DTypeLikeInt", "kind": "Other"}, {"name": "_DTypeLikeFloat", "kind": "Other"}, {"name": "_DTypeLikeComplex", "kind": "Other"}, {"name": "_DTypeLikeDT64", "kind": "Other"}, {"name": "_DTypeLikeTD64", "kind": "Other"}, {"name": "_DTypeLikeStr", "kind": "Other"}, {"name": "_DTypeLikeBytes", "kind": "Other"}, {"name": "_DTypeLikeVoid", "kind": "Other"}, {"name": "_DTypeLikeObject", "kind": "Other"}, {"name": "_DTypeLikeComplex_co", "kind": "Other"}], "numpy._typing._array_like": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Protocol", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "_NestedSequence", "kind": "ImportedType", "fullname": "numpy._typing._nested_sequence._NestedSequence"}, {"name": "_T", "kind": "Other"}, {"name": "_ScalarType", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "_DType_co", "kind": "Other"}, {"name": "_SupportsArray", "kind": "LocalType"}, {"name": "_SupportsArrayFunc", "kind": "LocalType"}, {"name": "_FiniteNestedSequence", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_DualArrayLike", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeVoid_co", "kind": "Other"}, {"name": "_ArrayLikeStr_co", "kind": "Other"}, {"name": "_ArrayLikeBytes_co", "kind": "Other"}, {"name": "_ArrayLikeInt", "kind": "Other"}, {"name": "_UnknownType", "kind": "LocalType"}, {"name": "_ArrayLikeUnknown", "kind": "Other"}], "numpy._typing._ufunc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "Protocol", "kind": "Other"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "_CastingKind", "kind": "Other"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_2Tuple", "kind": "Other"}, {"name": "_3Tuple", "kind": "Other"}, {"name": "_4Tuple", "kind": "Other"}, {"name": "_NTypes", "kind": "Other"}, {"name": "_IDType", "kind": "Other"}, {"name": "_NameType", "kind": "Other"}, {"name": "_SupportsArrayUFunc", "kind": "LocalType"}, {"name": "_UFunc_Nin1_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin1_Nout2", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout2", "kind": "LocalType"}, {"name": "_GUFunc_Nin2_Nout1", "kind": "LocalType"}], "numpy.fft._pocketfft": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "L", "kind": "Other"}, {"name": "complex128", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_NormKind", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "fft", "kind": "Other"}, {"name": "ifft", "kind": "Other"}, {"name": "rfft", "kind": "Other"}, {"name": "irfft", "kind": "Other"}, {"name": "hfft", "kind": "Other"}, {"name": "ihfft", "kind": "Other"}, {"name": "fftn", "kind": "Other"}, {"name": "ifftn", "kind": "Other"}, {"name": "rfftn", "kind": "Other"}, {"name": "irfftn", "kind": "Other"}, {"name": "fft2", "kind": "Other"}, {"name": "ifft2", "kind": "Other"}, {"name": "rfft2", "kind": "Other"}, {"name": "irfft2", "kind": "Other"}], "numpy.fft.helper": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "fftshift", "kind": "Other"}, {"name": "ifftshift", "kind": "Other"}, {"name": "fftfreq", "kind": "Other"}, {"name": "rfftfreq", "kind": "Other"}], "numpy.lib.format": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "EXPECTED_KEYS", "kind": "Other"}, {"name": "MAGIC_PREFIX", "kind": "Other"}, {"name": "MAGIC_LEN", "kind": "Other"}, {"name": "ARRAY_ALIGN", "kind": "Other"}, {"name": "BUFFER_SIZE", "kind": "Other"}, {"name": "magic", "kind": "Other"}, {"name": "read_magic", "kind": "Other"}, {"name": "dtype_to_descr", "kind": "Other"}, {"name": "descr_to_dtype", "kind": "Other"}, {"name": "header_data_from_array_1_0", "kind": "Other"}, {"name": "write_array_header_1_0", "kind": "Other"}, {"name": "write_array_header_2_0", "kind": "Other"}, {"name": "read_array_header_1_0", "kind": "Other"}, {"name": "read_array_header_2_0", "kind": "Other"}, {"name": "write_array", "kind": "Other"}, {"name": "read_array", "kind": "Other"}, {"name": "open_memmap", "kind": "Other"}], "numpy.lib.mixins": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "__all__", "kind": "Other"}, {"name": "NDArrayOperatorsMixin", "kind": "LocalType"}], "numpy.lib.scimath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "sqrt", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "log10", "kind": "Other"}, {"name": "log2", "kind": "Other"}, {"name": "logn", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "arccos", "kind": "Other"}, {"name": "arcsin", "kind": "Other"}, {"name": "arctanh", "kind": "Other"}], "numpy.lib._version": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "NumpyVersion", "kind": "LocalType"}], "math": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Protocol", "kind": "Other"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_SupportsFloatOrIndex", "kind": "Other"}, {"name": "e", "kind": "Other"}, {"name": "pi", "kind": "Other"}, {"name": "inf", "kind": "Other"}, {"name": "nan", "kind": "Other"}, {"name": "tau", "kind": "Other"}, {"name": "acos", "kind": "Other"}, {"name": "acosh", "kind": "Other"}, {"name": "asin", "kind": "Other"}, {"name": "asinh", "kind": "Other"}, {"name": "atan", "kind": "Other"}, {"name": "atan2", "kind": "Other"}, {"name": "atanh", "kind": "Other"}, {"name": "_SupportsCeil", "kind": "LocalType"}, {"name": "ceil", "kind": "Other"}, {"name": "comb", "kind": "Other"}, {"name": "copysign", "kind": "Other"}, {"name": "cos", "kind": "Other"}, {"name": "cosh", "kind": "Other"}, {"name": "degrees", "kind": "Other"}, {"name": "dist", "kind": "Other"}, {"name": "erf", "kind": "Other"}, {"name": "erfc", "kind": "Other"}, {"name": "exp", "kind": "Other"}, {"name": "expm1", "kind": "Other"}, {"name": "fabs", "kind": "Other"}, {"name": "factorial", "kind": "Other"}, {"name": "_SupportsFloor", "kind": "LocalType"}, {"name": "floor", "kind": "Other"}, {"name": "fmod", "kind": "Other"}, {"name": "frexp", "kind": "Other"}, {"name": "fsum", "kind": "Other"}, {"name": "gamma", "kind": "Other"}, {"name": "gcd", "kind": "Other"}, {"name": "hypot", "kind": "Other"}, {"name": "isclose", "kind": "Other"}, {"name": "isinf", "kind": "Other"}, {"name": "isfinite", "kind": "Other"}, {"name": "isnan", "kind": "Other"}, {"name": "isqrt", "kind": "Other"}, {"name": "lcm", "kind": "Other"}, {"name": "ldexp", "kind": "Other"}, {"name": "lgamma", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "log10", "kind": "Other"}, {"name": "log1p", "kind": "Other"}, {"name": "log2", "kind": "Other"}, {"name": "modf", "kind": "Other"}, {"name": "nextafter", "kind": "Other"}, {"name": "perm", "kind": "Other"}, {"name": "pow", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "radians", "kind": "Other"}, {"name": "remainder", "kind": "Other"}, {"name": "sin", "kind": "Other"}, {"name": "sinh", "kind": "Other"}, {"name": "sqrt", "kind": "Other"}, {"name": "tan", "kind": "Other"}, {"name": "tanh", "kind": "Other"}, {"name": "_SupportsTrunc", "kind": "LocalType"}, {"name": "trunc", "kind": "Other"}, {"name": "ulp", "kind": "Other"}], "numpy.linalg.linalg": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Any", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "int32", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "complex128", "kind": "Other"}, {"name": "LinAlgError", "kind": "ImportedType", "fullname": "numpy.linalg.LinAlgError"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_2Tuple", "kind": "Other"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "tensorsolve", "kind": "Other"}, {"name": "solve", "kind": "Other"}, {"name": "tensorinv", "kind": "Other"}, {"name": "inv", "kind": "Other"}, {"name": "matrix_power", "kind": "Other"}, {"name": "cholesky", "kind": "Other"}, {"name": "qr", "kind": "Other"}, {"name": "eigvals", "kind": "Other"}, {"name": "eigvalsh", "kind": "Other"}, {"name": "eig", "kind": "Other"}, {"name": "eigh", "kind": "Other"}, {"name": "svd", "kind": "Other"}, {"name": "cond", "kind": "Other"}, {"name": "matrix_rank", "kind": "Other"}, {"name": "pinv", "kind": "Other"}, {"name": "slogdet", "kind": "Other"}, {"name": "det", "kind": "Other"}, {"name": "lstsq", "kind": "Other"}, {"name": "norm", "kind": "Other"}, {"name": "multi_dot", "kind": "Other"}], "numpy.ma.extras": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "AxisConcatenator", "kind": "ImportedType", "fullname": "numpy.lib.index_tricks.AxisConcatenator"}, {"name": "dot", "kind": "Other"}, {"name": "mask_rowcols", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "count_masked", "kind": "Other"}, {"name": "masked_all", "kind": "Other"}, {"name": "masked_all_like", "kind": "Other"}, {"name": "_fromnxfunction", "kind": "LocalType"}, {"name": "_fromnxfunction_single", "kind": "LocalType"}, {"name": "_fromnxfunction_seq", "kind": "LocalType"}, {"name": "_fromnxfunction_allargs", "kind": "LocalType"}, {"name": "atleast_1d", "kind": "Other"}, {"name": "atleast_2d", "kind": "Other"}, {"name": "atleast_3d", "kind": "Other"}, {"name": "vstack", "kind": "Other"}, {"name": "row_stack", "kind": "Other"}, {"name": "hstack", "kind": "Other"}, {"name": "column_stack", "kind": "Other"}, {"name": "dstack", "kind": "Other"}, {"name": "stack", "kind": "Other"}, {"name": "hsplit", "kind": "Other"}, {"name": "diagflat", "kind": "Other"}, {"name": "apply_along_axis", "kind": "Other"}, {"name": "apply_over_axes", "kind": "Other"}, {"name": "average", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "compress_nd", "kind": "Other"}, {"name": "compress_rowcols", "kind": "Other"}, {"name": "compress_rows", "kind": "Other"}, {"name": "compress_cols", "kind": "Other"}, {"name": "mask_rows", "kind": "Other"}, {"name": "mask_cols", "kind": "Other"}, {"name": "ediff1d", "kind": "Other"}, {"name": "unique", "kind": "Other"}, {"name": "intersect1d", "kind": "Other"}, {"name": "setxor1d", "kind": "Other"}, {"name": "in1d", "kind": "Other"}, {"name": "isin", "kind": "Other"}, {"name": "union1d", "kind": "Other"}, {"name": "setdiff1d", "kind": "Other"}, {"name": "cov", "kind": "Other"}, {"name": "corrcoef", "kind": "Other"}, {"name": "MAxisConcatenator", "kind": "LocalType"}, {"name": "mr_class", "kind": "LocalType"}, {"name": "mr_", "kind": "Other"}, {"name": "ndenumerate", "kind": "Other"}, {"name": "flatnotmasked_edges", "kind": "Other"}, {"name": "notmasked_edges", "kind": "Other"}, {"name": "flatnotmasked_contiguous", "kind": "Other"}, {"name": "notmasked_contiguous", "kind": "Other"}, {"name": "clump_unmasked", "kind": "Other"}, {"name": "clump_masked", "kind": "Other"}, {"name": "vander", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}], "numpy.ma.core": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "float64", "kind": "Other"}, {"name": "amax", "kind": "Other"}, {"name": "amin", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "expand_dims", "kind": "Other"}, {"name": "diff", "kind": "Other"}, {"name": "clip", "kind": "Other"}, {"name": "indices", "kind": "Other"}, {"name": "ones_like", "kind": "Other"}, {"name": "squeeze", "kind": "Other"}, {"name": "zeros_like", "kind": "Other"}, {"name": "angle", "kind": "Other"}, {"name": "_ShapeType", "kind": "Other"}, {"name": "_DType_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "MaskType", "kind": "Other"}, {"name": "nomask", "kind": "Other"}, {"name": "MaskedArrayFutureWarning", "kind": "LocalType"}, {"name": "MAError", "kind": "LocalType"}, {"name": "MaskError", "kind": "LocalType"}, {"name": "default_fill_value", "kind": "Other"}, {"name": "minimum_fill_value", "kind": "Other"}, {"name": "maximum_fill_value", "kind": "Other"}, {"name": "set_fill_value", "kind": "Other"}, {"name": "common_fill_value", "kind": "Other"}, {"name": "filled", "kind": "Other"}, {"name": "getdata", "kind": "Other"}, {"name": "get_data", "kind": "Other"}, {"name": "fix_invalid", "kind": "Other"}, {"name": "_MaskedUFunc", "kind": "LocalType"}, {"name": "_MaskedUnaryOperation", "kind": "LocalType"}, {"name": "_MaskedBinaryOperation", "kind": "LocalType"}, {"name": "_DomainedBinaryOperation", "kind": "LocalType"}, {"name": "exp", "kind": "Other"}, {"name": "conjugate", "kind": "Other"}, {"name": "sin", "kind": "Other"}, {"name": "cos", "kind": "Other"}, {"name": "arctan", "kind": "Other"}, {"name": "arcsinh", "kind": "Other"}, {"name": "sinh", "kind": "Other"}, {"name": "cosh", "kind": "Other"}, {"name": "tanh", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "absolute", "kind": "Other"}, {"name": "fabs", "kind": "Other"}, {"name": "negative", "kind": "Other"}, {"name": "floor", "kind": "Other"}, {"name": "ceil", "kind": "Other"}, {"name": "around", "kind": "Other"}, {"name": "logical_not", "kind": "Other"}, {"name": "sqrt", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "log2", "kind": "Other"}, {"name": "log10", "kind": "Other"}, {"name": "tan", "kind": "Other"}, {"name": "arcsin", "kind": "Other"}, {"name": "arccos", "kind": "Other"}, {"name": "arccosh", "kind": "Other"}, {"name": "arctanh", "kind": "Other"}, {"name": "add", "kind": "Other"}, {"name": "subtract", "kind": "Other"}, {"name": "multiply", "kind": "Other"}, {"name": "arctan2", "kind": "Other"}, {"name": "equal", "kind": "Other"}, {"name": "not_equal", "kind": "Other"}, {"name": "less_equal", "kind": "Other"}, {"name": "greater_equal", "kind": "Other"}, {"name": "less", "kind": "Other"}, {"name": "greater", "kind": "Other"}, {"name": "logical_and", "kind": "Other"}, {"name": "alltrue", "kind": "Other"}, {"name": "logical_or", "kind": "Other"}, {"name": "sometrue", "kind": "Other"}, {"name": "logical_xor", "kind": "Other"}, {"name": "bitwise_and", "kind": "Other"}, {"name": "bitwise_or", "kind": "Other"}, {"name": "bitwise_xor", "kind": "Other"}, {"name": "hypot", "kind": "Other"}, {"name": "divide", "kind": "Other"}, {"name": "true_divide", "kind": "Other"}, {"name": "floor_divide", "kind": "Other"}, {"name": "remainder", "kind": "Other"}, {"name": "fmod", "kind": "Other"}, {"name": "mod", "kind": "Other"}, {"name": "make_mask_descr", "kind": "Other"}, {"name": "getmask", "kind": "Other"}, {"name": "get_mask", "kind": "Other"}, {"name": "getmaskarray", "kind": "Other"}, {"name": "is_mask", "kind": "Other"}, {"name": "make_mask", "kind": "Other"}, {"name": "make_mask_none", "kind": "Other"}, {"name": "mask_or", "kind": "Other"}, {"name": "flatten_mask", "kind": "Other"}, {"name": "masked_where", "kind": "Other"}, {"name": "masked_greater", "kind": "Other"}, {"name": "masked_greater_equal", "kind": "Other"}, {"name": "masked_less", "kind": "Other"}, {"name": "masked_less_equal", "kind": "Other"}, {"name": "masked_not_equal", "kind": "Other"}, {"name": "masked_equal", "kind": "Other"}, {"name": "masked_inside", "kind": "Other"}, {"name": "masked_outside", "kind": "Other"}, {"name": "masked_object", "kind": "Other"}, {"name": "masked_values", "kind": "Other"}, {"name": "masked_invalid", "kind": "Other"}, {"name": "_MaskedPrintOption", "kind": "LocalType"}, {"name": "masked_print_option", "kind": "Other"}, {"name": "flatten_structured_array", "kind": "Other"}, {"name": "MaskedIterator", "kind": "LocalType"}, {"name": "MaskedArray", "kind": "LocalType"}, {"name": "mvoid", "kind": "LocalType"}, {"name": "isMaskedArray", "kind": "Other"}, {"name": "isarray", "kind": "Other"}, {"name": "isMA", "kind": "Other"}, {"name": "MaskedConstant", "kind": "LocalType"}, {"name": "masked", "kind": "Other"}, {"name": "masked_singleton", "kind": "Other"}, {"name": "masked_array", "kind": "Other"}, {"name": "array", "kind": "Other"}, {"name": "is_masked", "kind": "Other"}, {"name": "_extrema_operation", "kind": "LocalType"}, {"name": "min", "kind": "Other"}, {"name": "max", "kind": "Other"}, {"name": "ptp", "kind": "Other"}, {"name": "_frommethod", "kind": "LocalType"}, {"name": "all", "kind": "Other"}, {"name": "anomalies", "kind": "Other"}, {"name": "anom", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "compress", "kind": "Other"}, {"name": "cumprod", "kind": "Other"}, {"name": "cumsum", "kind": "Other"}, {"name": "copy", "kind": "Other"}, {"name": "diagonal", "kind": "Other"}, {"name": "harden_mask", "kind": "Other"}, {"name": "ids", "kind": "Other"}, {"name": "mean", "kind": "Other"}, {"name": "nonzero", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "product", "kind": "Other"}, {"name": "ravel", "kind": "Other"}, {"name": "repeat", "kind": "Other"}, {"name": "soften_mask", "kind": "Other"}, {"name": "std", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "swapaxes", "kind": "Other"}, {"name": "trace", "kind": "Other"}, {"name": "var", "kind": "Other"}, {"name": "count", "kind": "Other"}, {"name": "argmin", "kind": "Other"}, {"name": "argmax", "kind": "Other"}, {"name": "minimum", "kind": "Other"}, {"name": "maximum", "kind": "Other"}, {"name": "take", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "argsort", "kind": "Other"}, {"name": "sort", "kind": "Other"}, {"name": "compressed", "kind": "Other"}, {"name": "concatenate", "kind": "Other"}, {"name": "diag", "kind": "Other"}, {"name": "left_shift", "kind": "Other"}, {"name": "right_shift", "kind": "Other"}, {"name": "put", "kind": "Other"}, {"name": "putmask", "kind": "Other"}, {"name": "transpose", "kind": "Other"}, {"name": "reshape", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "ndim", "kind": "Other"}, {"name": "shape", "kind": "Other"}, {"name": "size", "kind": "Other"}, {"name": "where", "kind": "Other"}, {"name": "choose", "kind": "Other"}, {"name": "round_", "kind": "Other"}, {"name": "round", "kind": "Other"}, {"name": "inner", "kind": "Other"}, {"name": "innerproduct", "kind": "Other"}, {"name": "outer", "kind": "Other"}, {"name": "outerproduct", "kind": "Other"}, {"name": "correlate", "kind": "Other"}, {"name": "convolve", "kind": "Other"}, {"name": "allequal", "kind": "Other"}, {"name": "allclose", "kind": "Other"}, {"name": "asarray", "kind": "Other"}, {"name": "asanyarray", "kind": "Other"}, {"name": "fromflex", "kind": "Other"}, {"name": "_convert2ma", "kind": "LocalType"}, {"name": "arange", "kind": "Other"}, {"name": "empty", "kind": "Other"}, {"name": "empty_like", "kind": "Other"}, {"name": "frombuffer", "kind": "Other"}, {"name": "fromfunction", "kind": "Other"}, {"name": "identity", "kind": "Other"}, {"name": "ones", "kind": "Other"}, {"name": "zeros", "kind": "Other"}, {"name": "append", "kind": "Other"}, {"name": "dot", "kind": "Other"}, {"name": "mask_rowcols", "kind": "Other"}], "numpy.polynomial.chebyshev": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "chebtrim", "kind": "Other"}, {"name": "poly2cheb", "kind": "Other"}, {"name": "cheb2poly", "kind": "Other"}, {"name": "chebdomain", "kind": "Other"}, {"name": "chebzero", "kind": "Other"}, {"name": "chebone", "kind": "Other"}, {"name": "chebx", "kind": "Other"}, {"name": "chebline", "kind": "Other"}, {"name": "chebfromroots", "kind": "Other"}, {"name": "chebadd", "kind": "Other"}, {"name": "chebsub", "kind": "Other"}, {"name": "chebmulx", "kind": "Other"}, {"name": "chebmul", "kind": "Other"}, {"name": "chebdiv", "kind": "Other"}, {"name": "chebpow", "kind": "Other"}, {"name": "chebder", "kind": "Other"}, {"name": "chebint", "kind": "Other"}, {"name": "chebval", "kind": "Other"}, {"name": "chebval2d", "kind": "Other"}, {"name": "chebgrid2d", "kind": "Other"}, {"name": "chebval3d", "kind": "Other"}, {"name": "chebgrid3d", "kind": "Other"}, {"name": "chebvander", "kind": "Other"}, {"name": "chebvander2d", "kind": "Other"}, {"name": "chebvander3d", "kind": "Other"}, {"name": "chebfit", "kind": "Other"}, {"name": "chebcompanion", "kind": "Other"}, {"name": "chebroots", "kind": "Other"}, {"name": "chebinterpolate", "kind": "Other"}, {"name": "chebgauss", "kind": "Other"}, {"name": "chebweight", "kind": "Other"}, {"name": "chebpts1", "kind": "Other"}, {"name": "chebpts2", "kind": "Other"}, {"name": "Chebyshev", "kind": "LocalType"}], "numpy.polynomial.hermite": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "float_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "hermtrim", "kind": "Other"}, {"name": "poly2herm", "kind": "Other"}, {"name": "herm2poly", "kind": "Other"}, {"name": "hermdomain", "kind": "Other"}, {"name": "hermzero", "kind": "Other"}, {"name": "hermone", "kind": "Other"}, {"name": "hermx", "kind": "Other"}, {"name": "hermline", "kind": "Other"}, {"name": "hermfromroots", "kind": "Other"}, {"name": "hermadd", "kind": "Other"}, {"name": "hermsub", "kind": "Other"}, {"name": "hermmulx", "kind": "Other"}, {"name": "hermmul", "kind": "Other"}, {"name": "hermdiv", "kind": "Other"}, {"name": "hermpow", "kind": "Other"}, {"name": "hermder", "kind": "Other"}, {"name": "hermint", "kind": "Other"}, {"name": "hermval", "kind": "Other"}, {"name": "hermval2d", "kind": "Other"}, {"name": "hermgrid2d", "kind": "Other"}, {"name": "hermval3d", "kind": "Other"}, {"name": "hermgrid3d", "kind": "Other"}, {"name": "hermvander", "kind": "Other"}, {"name": "hermvander2d", "kind": "Other"}, {"name": "hermvander3d", "kind": "Other"}, {"name": "hermfit", "kind": "Other"}, {"name": "hermcompanion", "kind": "Other"}, {"name": "hermroots", "kind": "Other"}, {"name": "hermgauss", "kind": "Other"}, {"name": "hermweight", "kind": "Other"}, {"name": "Hermite", "kind": "LocalType"}], "numpy.polynomial.hermite_e": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "hermetrim", "kind": "Other"}, {"name": "poly2herme", "kind": "Other"}, {"name": "herme2poly", "kind": "Other"}, {"name": "hermedomain", "kind": "Other"}, {"name": "hermezero", "kind": "Other"}, {"name": "hermeone", "kind": "Other"}, {"name": "hermex", "kind": "Other"}, {"name": "hermeline", "kind": "Other"}, {"name": "hermefromroots", "kind": "Other"}, {"name": "hermeadd", "kind": "Other"}, {"name": "hermesub", "kind": "Other"}, {"name": "hermemulx", "kind": "Other"}, {"name": "hermemul", "kind": "Other"}, {"name": "hermediv", "kind": "Other"}, {"name": "hermepow", "kind": "Other"}, {"name": "hermeder", "kind": "Other"}, {"name": "hermeint", "kind": "Other"}, {"name": "hermeval", "kind": "Other"}, {"name": "hermeval2d", "kind": "Other"}, {"name": "hermegrid2d", "kind": "Other"}, {"name": "hermeval3d", "kind": "Other"}, {"name": "hermegrid3d", "kind": "Other"}, {"name": "hermevander", "kind": "Other"}, {"name": "hermevander2d", "kind": "Other"}, {"name": "hermevander3d", "kind": "Other"}, {"name": "hermefit", "kind": "Other"}, {"name": "hermecompanion", "kind": "Other"}, {"name": "hermeroots", "kind": "Other"}, {"name": "hermegauss", "kind": "Other"}, {"name": "hermeweight", "kind": "Other"}, {"name": "HermiteE", "kind": "LocalType"}], "numpy.polynomial.laguerre": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "lagtrim", "kind": "Other"}, {"name": "poly2lag", "kind": "Other"}, {"name": "lag2poly", "kind": "Other"}, {"name": "lagdomain", "kind": "Other"}, {"name": "lagzero", "kind": "Other"}, {"name": "lagone", "kind": "Other"}, {"name": "lagx", "kind": "Other"}, {"name": "lagline", "kind": "Other"}, {"name": "lagfromroots", "kind": "Other"}, {"name": "lagadd", "kind": "Other"}, {"name": "lagsub", "kind": "Other"}, {"name": "lagmulx", "kind": "Other"}, {"name": "lagmul", "kind": "Other"}, {"name": "lagdiv", "kind": "Other"}, {"name": "lagpow", "kind": "Other"}, {"name": "lagder", "kind": "Other"}, {"name": "lagint", "kind": "Other"}, {"name": "lagval", "kind": "Other"}, {"name": "lagval2d", "kind": "Other"}, {"name": "laggrid2d", "kind": "Other"}, {"name": "lagval3d", "kind": "Other"}, {"name": "laggrid3d", "kind": "Other"}, {"name": "lagvander", "kind": "Other"}, {"name": "lagvander2d", "kind": "Other"}, {"name": "lagvander3d", "kind": "Other"}, {"name": "lagfit", "kind": "Other"}, {"name": "lagcompanion", "kind": "Other"}, {"name": "lagroots", "kind": "Other"}, {"name": "laggauss", "kind": "Other"}, {"name": "lagweight", "kind": "Other"}, {"name": "Laguerre", "kind": "LocalType"}], "numpy.polynomial.legendre": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "legtrim", "kind": "Other"}, {"name": "poly2leg", "kind": "Other"}, {"name": "leg2poly", "kind": "Other"}, {"name": "legdomain", "kind": "Other"}, {"name": "legzero", "kind": "Other"}, {"name": "legone", "kind": "Other"}, {"name": "legx", "kind": "Other"}, {"name": "legline", "kind": "Other"}, {"name": "legfromroots", "kind": "Other"}, {"name": "legadd", "kind": "Other"}, {"name": "legsub", "kind": "Other"}, {"name": "legmulx", "kind": "Other"}, {"name": "legmul", "kind": "Other"}, {"name": "legdiv", "kind": "Other"}, {"name": "legpow", "kind": "Other"}, {"name": "legder", "kind": "Other"}, {"name": "legint", "kind": "Other"}, {"name": "legval", "kind": "Other"}, {"name": "legval2d", "kind": "Other"}, {"name": "leggrid2d", "kind": "Other"}, {"name": "legval3d", "kind": "Other"}, {"name": "leggrid3d", "kind": "Other"}, {"name": "legvander", "kind": "Other"}, {"name": "legvander2d", "kind": "Other"}, {"name": "legvander3d", "kind": "Other"}, {"name": "legfit", "kind": "Other"}, {"name": "legcompanion", "kind": "Other"}, {"name": "legroots", "kind": "Other"}, {"name": "leggauss", "kind": "Other"}, {"name": "legweight", "kind": "Other"}, {"name": "Legendre", "kind": "LocalType"}], "numpy.polynomial.polynomial": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "polytrim", "kind": "Other"}, {"name": "polydomain", "kind": "Other"}, {"name": "polyzero", "kind": "Other"}, {"name": "polyone", "kind": "Other"}, {"name": "polyx", "kind": "Other"}, {"name": "polyline", "kind": "Other"}, {"name": "polyfromroots", "kind": "Other"}, {"name": "polyadd", "kind": "Other"}, {"name": "polysub", "kind": "Other"}, {"name": "polymulx", "kind": "Other"}, {"name": "polymul", "kind": "Other"}, {"name": "polydiv", "kind": "Other"}, {"name": "polypow", "kind": "Other"}, {"name": "polyder", "kind": "Other"}, {"name": "polyint", "kind": "Other"}, {"name": "polyval", "kind": "Other"}, {"name": "polyvalfromroots", "kind": "Other"}, {"name": "polyval2d", "kind": "Other"}, {"name": "polygrid2d", "kind": "Other"}, {"name": "polyval3d", "kind": "Other"}, {"name": "polygrid3d", "kind": "Other"}, {"name": "polyvander", "kind": "Other"}, {"name": "polyvander2d", "kind": "Other"}, {"name": "polyvander3d", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}, {"name": "polyroots", "kind": "Other"}, {"name": "Polynomial", "kind": "LocalType"}], "numpy.random._generator": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "float32", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "int8", "kind": "Other"}, {"name": "int16", "kind": "Other"}, {"name": "int32", "kind": "Other"}, {"name": "int64", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint", "kind": "Other"}, {"name": "uint8", "kind": "Other"}, {"name": "uint16", "kind": "Other"}, {"name": "uint32", "kind": "Other"}, {"name": "uint64", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "SeedSequence", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.SeedSequence"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_DTypeLikeBool", "kind": "Other"}, {"name": "_DTypeLikeInt", "kind": "Other"}, {"name": "_DTypeLikeUInt", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_SupportsDType", "kind": "ImportedType", "fullname": "numpy._typing._dtype_like._SupportsDType"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_DTypeLikeFloat32", "kind": "Other"}, {"name": "_DTypeLikeFloat64", "kind": "Other"}, {"name": "Generator", "kind": "LocalType"}, {"name": "default_rng", "kind": "Other"}], "numpy.random._mt19937": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint32", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "SeedSequence", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.SeedSequence"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_MT19937Internal", "kind": "LocalType"}, {"name": "_MT19937State", "kind": "LocalType"}, {"name": "MT19937", "kind": "LocalType"}], "numpy.random._pcg64": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "SeedSequence", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.SeedSequence"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_PCG64Internal", "kind": "LocalType"}, {"name": "_PCG64State", "kind": "LocalType"}, {"name": "PCG64", "kind": "LocalType"}, {"name": "PCG64DXSM", "kind": "LocalType"}], "numpy.random._philox": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint64", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "SeedSequence", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.SeedSequence"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_PhiloxInternal", "kind": "LocalType"}, {"name": "_PhiloxState", "kind": "LocalType"}, {"name": "Philox", "kind": "LocalType"}], "numpy.random._sfc64": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint64", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "SeedSequence", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.SeedSequence"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_SFC64Internal", "kind": "LocalType"}, {"name": "_SFC64State", "kind": "LocalType"}, {"name": "SFC64", "kind": "LocalType"}], "numpy.random.bit_generator": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "Lock", "kind": "ImportedType", "fullname": "threading.Lock"}, {"name": "Callable", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "TypedDict", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint32", "kind": "Other"}, {"name": "uint64", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_SupportsDType", "kind": "ImportedType", "fullname": "numpy._typing._dtype_like._SupportsDType"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_DTypeLikeUint32", "kind": "Other"}, {"name": "_DTypeLikeUint64", "kind": "Other"}, {"name": "_SeedSeqState", "kind": "LocalType"}, {"name": "_Interface", "kind": "LocalType"}, {"name": "ISeedSequence", "kind": "LocalType"}, {"name": "ISpawnableSeedSequence", "kind": "LocalType"}, {"name": "SeedlessSeedSequence", "kind": "LocalType"}, {"name": "SeedSequence", "kind": "LocalType"}, {"name": "BitGenerator", "kind": "LocalType"}], "numpy.random.mtrand": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "float32", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "int8", "kind": "Other"}, {"name": "int16", "kind": "Other"}, {"name": "int32", "kind": "Other"}, {"name": "int64", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint", "kind": "Other"}, {"name": "uint8", "kind": "Other"}, {"name": "uint16", "kind": "Other"}, {"name": "uint32", "kind": "Other"}, {"name": "uint64", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_DTypeLikeBool", "kind": "Other"}, {"name": "_DTypeLikeInt", "kind": "Other"}, {"name": "_DTypeLikeUInt", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_SupportsDType", "kind": "ImportedType", "fullname": "numpy._typing._dtype_like._SupportsDType"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_DTypeLikeFloat32", "kind": "Other"}, {"name": "_DTypeLikeFloat64", "kind": "Other"}, {"name": "RandomState", "kind": "LocalType"}, {"name": "_rand", "kind": "Other"}, {"name": "beta", "kind": "Other"}, {"name": "binomial", "kind": "Other"}, {"name": "bytes", "kind": "Other"}, {"name": "chisquare", "kind": "Other"}, {"name": "choice", "kind": "Other"}, {"name": "dirichlet", "kind": "Other"}, {"name": "exponential", "kind": "Other"}, {"name": "f", "kind": "Other"}, {"name": "gamma", "kind": "Other"}, {"name": "get_state", "kind": "Other"}, {"name": "geometric", "kind": "Other"}, {"name": "gumbel", "kind": "Other"}, {"name": "hypergeometric", "kind": "Other"}, {"name": "laplace", "kind": "Other"}, {"name": "logistic", "kind": "Other"}, {"name": "lognormal", "kind": "Other"}, {"name": "logseries", "kind": "Other"}, {"name": "multinomial", "kind": "Other"}, {"name": "multivariate_normal", "kind": "Other"}, {"name": "negative_binomial", "kind": "Other"}, {"name": "noncentral_chisquare", "kind": "Other"}, {"name": "noncentral_f", "kind": "Other"}, {"name": "normal", "kind": "Other"}, {"name": "pareto", "kind": "Other"}, {"name": "permutation", "kind": "Other"}, {"name": "poisson", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "rand", "kind": "Other"}, {"name": "randint", "kind": "Other"}, {"name": "randn", "kind": "Other"}, {"name": "random", "kind": "Other"}, {"name": "random_integers", "kind": "Other"}, {"name": "random_sample", "kind": "Other"}, {"name": "rayleigh", "kind": "Other"}, {"name": "seed", "kind": "Other"}, {"name": "set_state", "kind": "Other"}, {"name": "shuffle", "kind": "Other"}, {"name": "standard_cauchy", "kind": "Other"}, {"name": "standard_exponential", "kind": "Other"}, {"name": "standard_gamma", "kind": "Other"}, {"name": "standard_normal", "kind": "Other"}, {"name": "standard_t", "kind": "Other"}, {"name": "triangular", "kind": "Other"}, {"name": "uniform", "kind": "Other"}, {"name": "vonmises", "kind": "Other"}, {"name": "wald", "kind": "Other"}, {"name": "weibull", "kind": "Other"}, {"name": "zipf", "kind": "Other"}, {"name": "sample", "kind": "Other"}, {"name": "ranf", "kind": "Other"}, {"name": "set_bit_generator", "kind": "Other"}, {"name": "get_bit_generator", "kind": "Other"}], "numpy.testing._private.utils": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ast", "kind": "Module", "fullname": "ast"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "warnings", "kind": "Module", "fullname": "warnings"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "contextlib", "kind": "Module", "fullname": "contextlib"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "_FloatValue", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "SkipTest", "kind": "ImportedType", "fullname": "unittest.case.SkipTest"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ET", "kind": "Other"}, {"name": "_FT", "kind": "Other"}, {"name": "_ComparisonFunc", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "KnownFailureException", "kind": "LocalType"}, {"name": "IgnoreException", "kind": "LocalType"}, {"name": "clear_and_catch_warnings", "kind": "LocalType"}, {"name": "_clear_and_catch_warnings_with_records", "kind": "LocalType"}, {"name": "_clear_and_catch_warnings_without_records", "kind": "LocalType"}, {"name": "suppress_warnings", "kind": "LocalType"}, {"name": "verbose", "kind": "Other"}, {"name": "IS_PYPY", "kind": "Other"}, {"name": "IS_PYSTON", "kind": "Other"}, {"name": "HAS_REFCOUNT", "kind": "Other"}, {"name": "HAS_LAPACK64", "kind": "Other"}, {"name": "assert_", "kind": "Other"}, {"name": "memusage", "kind": "Other"}, {"name": "jiffies", "kind": "Other"}, {"name": "build_err_msg", "kind": "Other"}, {"name": "assert_equal", "kind": "Other"}, {"name": "print_assert_equal", "kind": "Other"}, {"name": "assert_almost_equal", "kind": "Other"}, {"name": "assert_approx_equal", "kind": "Other"}, {"name": "assert_array_compare", "kind": "Other"}, {"name": "assert_array_equal", "kind": "Other"}, {"name": "assert_array_almost_equal", "kind": "Other"}, {"name": "assert_array_less", "kind": "Other"}, {"name": "runstring", "kind": "Other"}, {"name": "assert_string_equal", "kind": "Other"}, {"name": "rundocs", "kind": "Other"}, {"name": "raises", "kind": "Other"}, {"name": "assert_raises", "kind": "Other"}, {"name": "assert_raises_regex", "kind": "Other"}, {"name": "decorate_methods", "kind": "Other"}, {"name": "measure", "kind": "Other"}, {"name": "assert_allclose", "kind": "Other"}, {"name": "assert_array_almost_equal_nulp", "kind": "Other"}, {"name": "assert_array_max_ulp", "kind": "Other"}, {"name": "assert_warns", "kind": "Other"}, {"name": "assert_no_warnings", "kind": "Other"}, {"name": "tempdir", "kind": "Other"}, {"name": "temppath", "kind": "Other"}, {"name": "assert_no_gc_cycles", "kind": "Other"}, {"name": "break_cycles", "kind": "Other"}], "unittest": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FunctionTestCase", "kind": "LocalType"}, {"name": "SkipTest", "kind": "LocalType"}, {"name": "TestCase", "kind": "LocalType"}, {"name": "expectedFailure", "kind": "Other"}, {"name": "skip", "kind": "Other"}, {"name": "skipIf", "kind": "Other"}, {"name": "skipUnless", "kind": "Other"}, {"name": "TestLoader", "kind": "LocalType"}, {"name": "defaultTestLoader", "kind": "Other"}, {"name": "findTestCases", "kind": "Other"}, {"name": "getTestCaseNames", "kind": "Other"}, {"name": "makeSuite", "kind": "Other"}, {"name": "TestProgram", "kind": "LocalType"}, {"name": "main", "kind": "Other"}, {"name": "TestResult", "kind": "LocalType"}, {"name": "TextTestResult", "kind": "LocalType"}, {"name": "TextTestRunner", "kind": "LocalType"}, {"name": "installHandler", "kind": "Other"}, {"name": "registerResult", "kind": "Other"}, {"name": "removeHandler", "kind": "Other"}, {"name": "removeResult", "kind": "Other"}, {"name": "BaseTestSuite", "kind": "LocalType"}, {"name": "TestSuite", "kind": "LocalType"}, {"name": "IsolatedAsyncioTestCase", "kind": "LocalType"}, {"name": "addModuleCleanup", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "load_tests", "kind": "Other"}, {"name": "__dir__", "kind": "Other"}], "numpy._version": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "json", "kind": "Module", "fullname": "json"}, {"name": "version_json", "kind": "Other"}, {"name": "get_versions", "kind": "Other"}], "numpy.matrixlib.defmatrix": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "matrix", "kind": "ImportedType", "fullname": "numpy.matrix"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "bmat", "kind": "Other"}, {"name": "asmatrix", "kind": "Other"}, {"name": "mat", "kind": "Other"}], "os.path": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "subprocess": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_FILE", "kind": "Other"}, {"name": "_InputString", "kind": "Other"}, {"name": "_CMD", "kind": "Other"}, {"name": "_ENV", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_USE_POSIX_SPAWN", "kind": "Other"}, {"name": "CompletedProcess", "kind": "LocalType"}, {"name": "run", "kind": "Other"}, {"name": "call", "kind": "Other"}, {"name": "check_call", "kind": "Other"}, {"name": "check_output", "kind": "Other"}, {"name": "PIPE", "kind": "Other"}, {"name": "STDOUT", "kind": "Other"}, {"name": "DEVNULL", "kind": "Other"}, {"name": "SubprocessError", "kind": "LocalType"}, {"name": "TimeoutExpired", "kind": "LocalType"}, {"name": "CalledProcessError", "kind": "LocalType"}, {"name": "Popen", "kind": "LocalType"}, {"name": "getstatusoutput", "kind": "Other"}, {"name": "getoutput", "kind": "Other"}, {"name": "list2cmdline", "kind": "Other"}], "_ctypes": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "CDLL", "kind": "ImportedType", "fullname": "ctypes.CDLL"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_CT", "kind": "Other"}, {"name": "FUNCFLAG_CDECL", "kind": "Other"}, {"name": "FUNCFLAG_PYTHONAPI", "kind": "Other"}, {"name": "FUNCFLAG_USE_ERRNO", "kind": "Other"}, {"name": "FUNCFLAG_USE_LASTERROR", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "_CDataMeta", "kind": "LocalType"}, {"name": "_CData", "kind": "LocalType"}, {"name": "_SimpleCData", "kind": "LocalType"}, {"name": "_CanCastTo", "kind": "LocalType"}, {"name": "_PointerLike", "kind": "LocalType"}, {"name": "_Pointer", "kind": "LocalType"}, {"name": "POINTER", "kind": "Other"}, {"name": "pointer", "kind": "Other"}, {"name": "_CArgObject", "kind": "LocalType"}, {"name": "byref", "kind": "Other"}, {"name": "_ECT", "kind": "Other"}, {"name": "_PF", "kind": "Other"}, {"name": "CFuncPtr", "kind": "LocalType"}, {"name": "_CField", "kind": "LocalType"}, {"name": "_StructUnionMeta", "kind": "LocalType"}, {"name": "_StructUnionBase", "kind": "LocalType"}, {"name": "Union", "kind": "LocalType"}, {"name": "Structure", "kind": "LocalType"}, {"name": "Array", "kind": "LocalType"}, {"name": "ArgumentError", "kind": "LocalType"}, {"name": "addressof", "kind": "Other"}, {"name": "alignment", "kind": "Other"}, {"name": "get_errno", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "set_errno", "kind": "Other"}, {"name": "sizeof", "kind": "Other"}], "time": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_TimeTuple", "kind": "Other"}, {"name": "altzone", "kind": "Other"}, {"name": "daylight", "kind": "Other"}, {"name": "timezone", "kind": "Other"}, {"name": "tzname", "kind": "Other"}, {"name": "CLOCK_BOOTTIME", "kind": "Other"}, {"name": "CLOCK_MONOTONIC", "kind": "Other"}, {"name": "CLOCK_MONOTONIC_RAW", "kind": "Other"}, {"name": "CLOCK_PROCESS_CPUTIME_ID", "kind": "Other"}, {"name": "CLOCK_REALTIME", "kind": "Other"}, {"name": "CLOCK_THREAD_CPUTIME_ID", "kind": "Other"}, {"name": "CLOCK_TAI", "kind": "Other"}, {"name": "struct_time", "kind": "LocalType"}, {"name": "asctime", "kind": "Other"}, {"name": "ctime", "kind": "Other"}, {"name": "gmtime", "kind": "Other"}, {"name": "localtime", "kind": "Other"}, {"name": "mktime", "kind": "Other"}, {"name": "sleep", "kind": "Other"}, {"name": "strftime", "kind": "Other"}, {"name": "strptime", "kind": "Other"}, {"name": "time", "kind": "Other"}, {"name": "tzset", "kind": "Other"}, {"name": "_ClockInfo", "kind": "LocalType"}, {"name": "get_clock_info", "kind": "Other"}, {"name": "monotonic", "kind": "Other"}, {"name": "perf_counter", "kind": "Other"}, {"name": "process_time", "kind": "Other"}, {"name": "clock_getres", "kind": "Other"}, {"name": "clock_gettime", "kind": "Other"}, {"name": "clock_settime", "kind": "Other"}, {"name": "clock_gettime_ns", "kind": "Other"}, {"name": "clock_settime_ns", "kind": "Other"}, {"name": "pthread_getcpuclockid", "kind": "Other"}, {"name": "monotonic_ns", "kind": "Other"}, {"name": "perf_counter_ns", "kind": "Other"}, {"name": "process_time_ns", "kind": "Other"}, {"name": "time_ns", "kind": "Other"}, {"name": "thread_time", "kind": "Other"}, {"name": "thread_time_ns", "kind": "Other"}], "sre_compile": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NamedIntConstant", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "SubPattern", "kind": "ImportedType", "fullname": "sre_parse.SubPattern"}, {"name": "Any", "kind": "Other"}, {"name": "MAXCODE", "kind": "Other"}, {"name": "dis", "kind": "Other"}, {"name": "isstring", "kind": "Other"}, {"name": "compile", "kind": "Other"}], "sre_constants": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "LocalType"}, {"name": "_NamedIntConstant", "kind": "LocalType"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}], "codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "BOM32_BE", "kind": "Other"}, {"name": "BOM32_LE", "kind": "Other"}, {"name": "BOM64_BE", "kind": "Other"}, {"name": "BOM64_LE", "kind": "Other"}, {"name": "_WritableStream", "kind": "LocalType"}, {"name": "_ReadableStream", "kind": "LocalType"}, {"name": "_Stream", "kind": "LocalType"}, {"name": "_Encoder", "kind": "LocalType"}, {"name": "_Decoder", "kind": "LocalType"}, {"name": "_StreamReader", "kind": "LocalType"}, {"name": "_StreamWriter", "kind": "LocalType"}, {"name": "_IncrementalEncoder", "kind": "LocalType"}, {"name": "_IncrementalDecoder", "kind": "LocalType"}, {"name": "CodecInfo", "kind": "LocalType"}, {"name": "getencoder", "kind": "Other"}, {"name": "getdecoder", "kind": "Other"}, {"name": "getincrementalencoder", "kind": "Other"}, {"name": "getincrementaldecoder", "kind": "Other"}, {"name": "getreader", "kind": "Other"}, {"name": "getwriter", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "EncodedFile", "kind": "Other"}, {"name": "iterencode", "kind": "Other"}, {"name": "iterdecode", "kind": "Other"}, {"name": "BOM", "kind": "Other"}, {"name": "BOM_BE", "kind": "Other"}, {"name": "BOM_LE", "kind": "Other"}, {"name": "BOM_UTF8", "kind": "Other"}, {"name": "BOM_UTF16", "kind": "Other"}, {"name": "BOM_UTF16_BE", "kind": "Other"}, {"name": "BOM_UTF16_LE", "kind": "Other"}, {"name": "BOM_UTF32", "kind": "Other"}, {"name": "BOM_UTF32_BE", "kind": "Other"}, {"name": "BOM_UTF32_LE", "kind": "Other"}, {"name": "strict_errors", "kind": "Other"}, {"name": "replace_errors", "kind": "Other"}, {"name": "ignore_errors", "kind": "Other"}, {"name": "xmlcharrefreplace_errors", "kind": "Other"}, {"name": "backslashreplace_errors", "kind": "Other"}, {"name": "namereplace_errors", "kind": "Other"}, {"name": "Codec", "kind": "LocalType"}, {"name": "IncrementalEncoder", "kind": "LocalType"}, {"name": "IncrementalDecoder", "kind": "LocalType"}, {"name": "BufferedIncrementalEncoder", "kind": "LocalType"}, {"name": "BufferedIncrementalDecoder", "kind": "LocalType"}, {"name": "StreamWriter", "kind": "LocalType"}, {"name": "StreamReader", "kind": "LocalType"}, {"name": "StreamReaderWriter", "kind": "LocalType"}, {"name": "StreamRecoder", "kind": "LocalType"}], "importlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "__all__", "kind": "Other"}, {"name": "__import__", "kind": "Other"}, {"name": "import_module", "kind": "Other"}, {"name": "find_loader", "kind": "Other"}, {"name": "invalidate_caches", "kind": "Other"}, {"name": "reload", "kind": "Other"}], "importlib.metadata": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "pathlib", "kind": "Module", "fullname": "pathlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "StrPath", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "MetaPathFinder", "kind": "ImportedType", "fullname": "importlib.abc.MetaPathFinder"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "packages_distributions", "kind": "Other"}, {"name": "PackageNotFoundError", "kind": "LocalType"}, {"name": "_EntryPointBase", "kind": "LocalType"}, {"name": "EntryPoint", "kind": "LocalType"}, {"name": "EntryPoints", "kind": "LocalType"}, {"name": "SelectableGroups", "kind": "LocalType"}, {"name": "PackagePath", "kind": "LocalType"}, {"name": "FileHash", "kind": "LocalType"}, {"name": "Distribution", "kind": "LocalType"}, {"name": "DistributionFinder", "kind": "LocalType"}, {"name": "MetadataPathFinder", "kind": "LocalType"}, {"name": "PathDistribution", "kind": "LocalType"}, {"name": "distribution", "kind": "Other"}, {"name": "distributions", "kind": "Other"}, {"name": "metadata", "kind": "Other"}, {"name": "entry_points", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "files", "kind": "Other"}, {"name": "requires", "kind": "Other"}], "numpy.compat._inspect": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "__all__", "kind": "Other"}, {"name": "ismethod", "kind": "Other"}, {"name": "isfunction", "kind": "Other"}, {"name": "iscode", "kind": "Other"}, {"name": "CO_OPTIMIZED", "kind": "Other"}, {"name": "CO_NEWLOCALS", "kind": "Other"}, {"name": "CO_VARARGS", "kind": "Other"}, {"name": "CO_VARKEYWORDS", "kind": "Other"}, {"name": "getargs", "kind": "Other"}, {"name": "getargspec", "kind": "Other"}, {"name": "getargvalues", "kind": "Other"}, {"name": "joinseq", "kind": "Other"}, {"name": "strseq", "kind": "Other"}, {"name": "formatargspec", "kind": "Other"}, {"name": "formatargvalues", "kind": "Other"}], "functools": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "SupportsAllComparisons", "kind": "ImportedType", "fullname": "_typeshed.SupportsAllComparisons"}, {"name": "SupportsItems", "kind": "ImportedType", "fullname": "_typeshed.SupportsItems"}, {"name": "Callable", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_AnyCallable", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "reduce", "kind": "Other"}, {"name": "_CacheInfo", "kind": "LocalType"}, {"name": "_CacheParameters", "kind": "LocalType"}, {"name": "_lru_cache_wrapper", "kind": "LocalType"}, {"name": "lru_cache", "kind": "Other"}, {"name": "WRAPPER_ASSIGNMENTS", "kind": "Other"}, {"name": "WRAPPER_UPDATES", "kind": "Other"}, {"name": "update_wrapper", "kind": "Other"}, {"name": "wraps", "kind": "Other"}, {"name": "total_ordering", "kind": "Other"}, {"name": "cmp_to_key", "kind": "Other"}, {"name": "partial", "kind": "LocalType"}, {"name": "_Descriptor", "kind": "Other"}, {"name": "partialmethod", "kind": "LocalType"}, {"name": "_SingleDispatchCallable", "kind": "LocalType"}, {"name": "singledispatch", "kind": "Other"}, {"name": "singledispatchmethod", "kind": "LocalType"}, {"name": "cached_property", "kind": "LocalType"}, {"name": "cache", "kind": "Other"}, {"name": "_make_key", "kind": "Other"}], "numpy.typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "NBitBase", "kind": "ImportedType", "fullname": "numpy._typing.NBitBase"}, {"name": "NDArray", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_docstrings", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "test", "kind": "Other"}], "numpy.polynomial._polybase": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "LocalType"}], "numpy.polynomial.polyutils": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "RankWarning", "kind": "LocalType"}, {"name": "trimseq", "kind": "Other"}, {"name": "as_series", "kind": "Other"}, {"name": "trimcoef", "kind": "Other"}, {"name": "getdomain", "kind": "Other"}, {"name": "mapparms", "kind": "Other"}, {"name": "mapdomain", "kind": "Other"}, {"name": "format_float", "kind": "Other"}], "threading": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "final", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_profile_hook", "kind": "Other"}, {"name": "active_count", "kind": "Other"}, {"name": "activeCount", "kind": "Other"}, {"name": "current_thread", "kind": "Other"}, {"name": "currentThread", "kind": "Other"}, {"name": "get_ident", "kind": "Other"}, {"name": "enumerate", "kind": "Other"}, {"name": "main_thread", "kind": "Other"}, {"name": "get_native_id", "kind": "Other"}, {"name": "settrace", "kind": "Other"}, {"name": "setprofile", "kind": "Other"}, {"name": "gettrace", "kind": "Other"}, {"name": "getprofile", "kind": "Other"}, {"name": "stack_size", "kind": "Other"}, {"name": "TIMEOUT_MAX", "kind": "Other"}, {"name": "ThreadError", "kind": "LocalType"}, {"name": "local", "kind": "LocalType"}, {"name": "Thread", "kind": "LocalType"}, {"name": "_DummyThread", "kind": "LocalType"}, {"name": "Lock", "kind": "LocalType"}, {"name": "_RLock", "kind": "LocalType"}, {"name": "RLock", "kind": "Other"}, {"name": "Condition", "kind": "LocalType"}, {"name": "Semaphore", "kind": "LocalType"}, {"name": "BoundedSemaphore", "kind": "LocalType"}, {"name": "Event", "kind": "LocalType"}, {"name": "_excepthook", "kind": "Other"}, {"name": "_ExceptHookArgs", "kind": "ImportedType", "fullname": "_thread._ExceptHookArgs"}, {"name": "excepthook", "kind": "Other"}, {"name": "ExceptHookArgs", "kind": "Other"}, {"name": "Timer", "kind": "LocalType"}, {"name": "Barrier", "kind": "LocalType"}, {"name": "BrokenBarrierError", "kind": "LocalType"}], "numpy.testing._private": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "unittest.case": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "logging", "kind": "Module", "fullname": "logging"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "SupportsDunderGE", "kind": "ImportedType", "fullname": "_typeshed.SupportsDunderGE"}, {"name": "SupportsDunderGT", "kind": "ImportedType", "fullname": "_typeshed.SupportsDunderGT"}, {"name": "SupportsDunderLE", "kind": "ImportedType", "fullname": "_typeshed.SupportsDunderLE"}, {"name": "SupportsDunderLT", "kind": "ImportedType", "fullname": "_typeshed.SupportsDunderLT"}, {"name": "SupportsRSub", "kind": "ImportedType", "fullname": "_typeshed.SupportsRSub"}, {"name": "SupportsSub", "kind": "ImportedType", "fullname": "_typeshed.SupportsSub"}, {"name": "Callable", "kind": "Other"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "WarningMessage", "kind": "ImportedType", "fullname": "warnings.WarningMessage"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "_T", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_FT", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "DIFF_OMITTED", "kind": "Other"}, {"name": "_BaseTestCaseContext", "kind": "LocalType"}, {"name": "_AssertLogsContext", "kind": "ImportedType", "fullname": "unittest._log._AssertLogsContext"}, {"name": "_LoggingWatcher", "kind": "ImportedType", "fullname": "unittest._log._LoggingWatcher"}, {"name": "addModuleCleanup", "kind": "Other"}, {"name": "doModuleCleanups", "kind": "Other"}, {"name": "expectedFailure", "kind": "Other"}, {"name": "skip", "kind": "Other"}, {"name": "skipIf", "kind": "Other"}, {"name": "skipUnless", "kind": "Other"}, {"name": "SkipTest", "kind": "LocalType"}, {"name": "_SupportsAbsAndDunderGE", "kind": "LocalType"}, {"name": "_ClassInfo", "kind": "Other"}, {"name": "TestCase", "kind": "LocalType"}, {"name": "FunctionTestCase", "kind": "LocalType"}, {"name": "_AssertRaisesContext", "kind": "LocalType"}, {"name": "_AssertWarnsContext", "kind": "LocalType"}], "warnings": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "warn", "kind": "Other"}, {"name": "warn_explicit", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_W", "kind": "Other"}, {"name": "_ActionKind", "kind": "Other"}, {"name": "filters", "kind": "Other"}, {"name": "showwarning", "kind": "Other"}, {"name": "formatwarning", "kind": "Other"}, {"name": "filterwarnings", "kind": "Other"}, {"name": "simplefilter", "kind": "Other"}, {"name": "resetwarnings", "kind": "Other"}, {"name": "_OptionError", "kind": "LocalType"}, {"name": "WarningMessage", "kind": "LocalType"}, {"name": "catch_warnings", "kind": "LocalType"}], "unittest.loader": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "Callable", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "Any", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_SortComparisonMethod", "kind": "Other"}, {"name": "_SuiteClass", "kind": "Other"}, {"name": "VALID_MODULE_NAME", "kind": "Other"}, {"name": "TestLoader", "kind": "LocalType"}, {"name": "defaultTestLoader", "kind": "Other"}, {"name": "getTestCaseNames", "kind": "Other"}, {"name": "makeSuite", "kind": "Other"}, {"name": "findTestCases", "kind": "Other"}], "unittest.main": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "MAIN_EXAMPLES", "kind": "Other"}, {"name": "MODULE_EXAMPLES", "kind": "Other"}, {"name": "_TestRunner", "kind": "LocalType"}, {"name": "TestProgram", "kind": "LocalType"}, {"name": "main", "kind": "Other"}], "unittest.result": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_F", "kind": "Other"}, {"name": "STDOUT_LINE", "kind": "Other"}, {"name": "STDERR_LINE", "kind": "Other"}, {"name": "failfast", "kind": "Other"}, {"name": "TestResult", "kind": "LocalType"}], "unittest.runner": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_ResultClassType", "kind": "Other"}, {"name": "TextTestResult", "kind": "LocalType"}, {"name": "TextTestRunner", "kind": "LocalType"}], "unittest.signals": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "Callable", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "installHandler", "kind": "Other"}, {"name": "registerResult", "kind": "Other"}, {"name": "removeResult", "kind": "Other"}, {"name": "removeHandler", "kind": "Other"}], "unittest.suite": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_TestType", "kind": "Other"}, {"name": "BaseTestSuite", "kind": "LocalType"}, {"name": "TestSuite", "kind": "LocalType"}], "unittest.async_case": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "TestCase", "kind": "ImportedType", "fullname": "unittest.case.TestCase"}, {"name": "_T", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "IsolatedAsyncioTestCase", "kind": "LocalType"}], "json": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsRead", "kind": "ImportedType", "fullname": "_typeshed.SupportsRead"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "JSONDecodeError", "kind": "LocalType"}, {"name": "JSONDecoder", "kind": "LocalType"}, {"name": "JSONEncoder", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "dumps", "kind": "Other"}, {"name": "dump", "kind": "Other"}, {"name": "loads", "kind": "Other"}, {"name": "load", "kind": "Other"}, {"name": "detect_encoding", "kind": "Other"}], "posixpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "AnyStr", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}], "sre_parse": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "_Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NIC", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "_Error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "SPECIAL_CHARS", "kind": "Other"}, {"name": "REPEAT_CHARS", "kind": "Other"}, {"name": "DIGITS", "kind": "Other"}, {"name": "OCTDIGITS", "kind": "Other"}, {"name": "HEXDIGITS", "kind": "Other"}, {"name": "ASCIILETTERS", "kind": "Other"}, {"name": "WHITESPACE", "kind": "Other"}, {"name": "ESCAPES", "kind": "Other"}, {"name": "CATEGORIES", "kind": "Other"}, {"name": "FLAGS", "kind": "Other"}, {"name": "TYPE_FLAGS", "kind": "Other"}, {"name": "GLOBAL_FLAGS", "kind": "Other"}, {"name": "Verbose", "kind": "LocalType"}, {"name": "_State", "kind": "LocalType"}, {"name": "State", "kind": "Other"}, {"name": "_OpSubpatternType", "kind": "Other"}, {"name": "_OpGroupRefExistsType", "kind": "Other"}, {"name": "_OpInType", "kind": "Other"}, {"name": "_OpBranchType", "kind": "Other"}, {"name": "_AvType", "kind": "Other"}, {"name": "_CodeType", "kind": "Other"}, {"name": "SubPattern", "kind": "LocalType"}, {"name": "Tokenizer", "kind": "LocalType"}, {"name": "fix_flags", "kind": "Other"}, {"name": "_TemplateType", "kind": "Other"}, {"name": "_TemplateByteType", "kind": "Other"}, {"name": "parse", "kind": "Other"}, {"name": "parse_template", "kind": "Other"}, {"name": "expand_template", "kind": "Other"}], "_codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_EncodingMap", "kind": "LocalType"}, {"name": "_CharMap", "kind": "Other"}, {"name": "_Handler", "kind": "Other"}, {"name": "_SearchFunction", "kind": "Other"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "_BytesToBytesEncoding", "kind": "Other"}, {"name": "_StrToStrEncoding", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}], "importlib.metadata._meta": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_T", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "SimplePath", "kind": "LocalType"}], "email.message": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Policy", "kind": "ImportedType", "fullname": "email.policy.Policy"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_PayloadType", "kind": "Other"}, {"name": "_CharsetType", "kind": "Other"}, {"name": "_HeaderType", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "MIMEPart", "kind": "LocalType"}, {"name": "EmailMessage", "kind": "LocalType"}], "pathlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "stat_result", "kind": "ImportedType", "fullname": "os.stat_result"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "PurePath", "kind": "LocalType"}, {"name": "PurePosixPath", "kind": "LocalType"}, {"name": "PureWindowsPath", "kind": "LocalType"}, {"name": "Path", "kind": "LocalType"}, {"name": "PosixPath", "kind": "LocalType"}, {"name": "WindowsPath", "kind": "LocalType"}], "numpy.compat": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_inspect", "kind": "Module", "fullname": "numpy.compat._inspect"}, {"name": "py3k", "kind": "Module", "fullname": "numpy.compat.py3k"}, {"name": "getargspec", "kind": "Other"}, {"name": "formatargspec", "kind": "Other"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "pickle", "kind": "Other"}, {"name": "long", "kind": "Other"}, {"name": "integer_types", "kind": "Other"}, {"name": "basestring", "kind": "Other"}, {"name": "unicode", "kind": "Other"}, {"name": "bytes", "kind": "ImportedType", "fullname": "builtins.bytes"}, {"name": "asunicode", "kind": "Other"}, {"name": "asbytes", "kind": "Other"}, {"name": "asstr", "kind": "Other"}, {"name": "isfileobj", "kind": "Other"}, {"name": "open_latin1", "kind": "Other"}, {"name": "sixu", "kind": "Other"}, {"name": "strchar", "kind": "Other"}, {"name": "getexception", "kind": "Other"}, {"name": "asbytes_nested", "kind": "Other"}, {"name": "asunicode_nested", "kind": "Other"}, {"name": "is_pathlib_path", "kind": "Other"}, {"name": "contextlib_nullcontext", "kind": "LocalType"}, {"name": "npy_load_module", "kind": "Other"}, {"name": "os_fspath", "kind": "Other"}, {"name": "os_PathLike", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "numpy._typing._add_docstring": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "re", "kind": "Module", "fullname": "re"}, {"name": "textwrap", "kind": "Module", "fullname": "textwrap"}, {"name": "NDArray", "kind": "Other"}, {"name": "_docstrings_list", "kind": "Other"}, {"name": "add_newdoc", "kind": "Other"}, {"name": "_parse_docstrings", "kind": "Other"}, {"name": "_docstrings", "kind": "Other"}], "_thread": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "Callable", "kind": "Other"}, {"name": "Thread", "kind": "ImportedType", "fullname": "threading.Thread"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "_count", "kind": "Other"}, {"name": "LockType", "kind": "LocalType"}, {"name": "start_new_thread", "kind": "Other"}, {"name": "interrupt_main", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "allocate_lock", "kind": "Other"}, {"name": "get_ident", "kind": "Other"}, {"name": "stack_size", "kind": "Other"}, {"name": "TIMEOUT_MAX", "kind": "Other"}, {"name": "get_native_id", "kind": "Other"}, {"name": "_ExceptHookArgs", "kind": "LocalType"}, {"name": "_excepthook", "kind": "Other"}], "unittest._log": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "logging", "kind": "Module", "fullname": "logging"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "TestCase", "kind": "ImportedType", "fullname": "unittest.case.TestCase"}, {"name": "_L", "kind": "Other"}, {"name": "_LoggingWatcher", "kind": "LocalType"}, {"name": "_AssertLogsContext", "kind": "LocalType"}], "logging": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "threading", "kind": "Module", "fullname": "threading"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Template", "kind": "ImportedType", "fullname": "string.Template"}, {"name": "struct_time", "kind": "ImportedType", "fullname": "time.struct_time"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_SysExcInfoType", "kind": "Other"}, {"name": "_ExcInfoType", "kind": "Other"}, {"name": "_ArgsType", "kind": "Other"}, {"name": "_FilterType", "kind": "Other"}, {"name": "_Level", "kind": "Other"}, {"name": "_FormatStyle", "kind": "Other"}, {"name": "raiseExceptions", "kind": "Other"}, {"name": "logThreads", "kind": "Other"}, {"name": "logMultiprocessing", "kind": "Other"}, {"name": "logProcesses", "kind": "Other"}, {"name": "_srcfile", "kind": "Other"}, {"name": "currentframe", "kind": "Other"}, {"name": "_levelToName", "kind": "Other"}, {"name": "_nameToLevel", "kind": "Other"}, {"name": "Filterer", "kind": "LocalType"}, {"name": "Manager", "kind": "LocalType"}, {"name": "Logger", "kind": "LocalType"}, {"name": "CRITICAL", "kind": "Other"}, {"name": "FATAL", "kind": "Other"}, {"name": "ERROR", "kind": "Other"}, {"name": "WARNING", "kind": "Other"}, {"name": "WARN", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "DEBUG", "kind": "Other"}, {"name": "NOTSET", "kind": "Other"}, {"name": "Handler", "kind": "LocalType"}, {"name": "Formatter", "kind": "LocalType"}, {"name": "BufferingFormatter", "kind": "LocalType"}, {"name": "Filter", "kind": "LocalType"}, {"name": "LogRecord", "kind": "LocalType"}, {"name": "_L", "kind": "Other"}, {"name": "LoggerAdapter", "kind": "LocalType"}, {"name": "getLogger", "kind": "Other"}, {"name": "getLoggerClass", "kind": "Other"}, {"name": "getLogRecordFactory", "kind": "Other"}, {"name": "debug", "kind": "Other"}, {"name": "info", "kind": "Other"}, {"name": "warning", "kind": "Other"}, {"name": "warn", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "critical", "kind": "Other"}, {"name": "exception", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "fatal", "kind": "Other"}, {"name": "disable", "kind": "Other"}, {"name": "addLevelName", "kind": "Other"}, {"name": "getLevelName", "kind": "Other"}, {"name": "makeLogRecord", "kind": "Other"}, {"name": "basicConfig", "kind": "Other"}, {"name": "shutdown", "kind": "Other"}, {"name": "setLoggerClass", "kind": "Other"}, {"name": "captureWarnings", "kind": "Other"}, {"name": "setLogRecordFactory", "kind": "Other"}, {"name": "lastResort", "kind": "Other"}, {"name": "_StreamT", "kind": "Other"}, {"name": "StreamHandler", "kind": "LocalType"}, {"name": "FileHandler", "kind": "LocalType"}, {"name": "NullHandler", "kind": "LocalType"}, {"name": "PlaceHolder", "kind": "LocalType"}, {"name": "RootLogger", "kind": "LocalType"}, {"name": "root", "kind": "Other"}, {"name": "PercentStyle", "kind": "LocalType"}, {"name": "StrFormatStyle", "kind": "LocalType"}, {"name": "StringTemplateStyle", "kind": "LocalType"}, {"name": "_STYLES", "kind": "Other"}, {"name": "BASIC_FORMAT", "kind": "Other"}], "_warnings": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "_defaultaction", "kind": "Other"}, {"name": "_onceregistry", "kind": "Other"}, {"name": "filters", "kind": "Other"}, {"name": "warn", "kind": "Other"}, {"name": "warn_explicit", "kind": "Other"}], "json.decoder": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "JSONDecodeError", "kind": "LocalType"}, {"name": "JSONDecoder", "kind": "LocalType"}], "json.encoder": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Any", "kind": "Other"}, {"name": "ESCAPE", "kind": "Other"}, {"name": "ESCAPE_ASCII", "kind": "Other"}, {"name": "HAS_UTF8", "kind": "Other"}, {"name": "ESCAPE_DCT", "kind": "Other"}, {"name": "INFINITY", "kind": "Other"}, {"name": "py_encode_basestring", "kind": "Other"}, {"name": "py_encode_basestring_ascii", "kind": "Other"}, {"name": "JSONEncoder", "kind": "LocalType"}], "genericpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}], "email": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "Policy", "kind": "LocalType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "message_from_string", "kind": "Other"}, {"name": "message_from_bytes", "kind": "Other"}, {"name": "message_from_file", "kind": "Other"}, {"name": "message_from_binary_file", "kind": "Other"}], "email.charset": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "__all__", "kind": "Other"}, {"name": "QP", "kind": "Other"}, {"name": "BASE64", "kind": "Other"}, {"name": "SHORTEST", "kind": "Other"}, {"name": "Charset", "kind": "LocalType"}, {"name": "add_charset", "kind": "Other"}, {"name": "add_alias", "kind": "Other"}, {"name": "add_codec", "kind": "Other"}], "email.contentmanager": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "ContentManager", "kind": "LocalType"}, {"name": "raw_data_manager", "kind": "Other"}], "email.errors": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "MessageError", "kind": "LocalType"}, {"name": "MessageParseError", "kind": "LocalType"}, {"name": "HeaderParseError", "kind": "LocalType"}, {"name": "BoundaryError", "kind": "LocalType"}, {"name": "MultipartConversionError", "kind": "LocalType"}, {"name": "CharsetError", "kind": "LocalType"}, {"name": "MessageDefect", "kind": "LocalType"}, {"name": "NoBoundaryInMultipartDefect", "kind": "LocalType"}, {"name": "StartBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "FirstHeaderLineIsContinuationDefect", "kind": "LocalType"}, {"name": "MisplacedEnvelopeHeaderDefect", "kind": "LocalType"}, {"name": "MultipartInvariantViolationDefect", "kind": "LocalType"}, {"name": "InvalidMultipartContentTransferEncodingDefect", "kind": "LocalType"}, {"name": "UndecodableBytesDefect", "kind": "LocalType"}, {"name": "InvalidBase64PaddingDefect", "kind": "LocalType"}, {"name": "InvalidBase64CharactersDefect", "kind": "LocalType"}, {"name": "InvalidBase64LengthDefect", "kind": "LocalType"}, {"name": "CloseBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "MissingHeaderBodySeparatorDefect", "kind": "LocalType"}, {"name": "MalformedHeaderDefect", "kind": "Other"}, {"name": "HeaderDefect", "kind": "LocalType"}, {"name": "InvalidHeaderDefect", "kind": "LocalType"}, {"name": "HeaderMissingRequiredValue", "kind": "LocalType"}, {"name": "NonPrintableDefect", "kind": "LocalType"}, {"name": "ObsoleteHeaderDefect", "kind": "LocalType"}, {"name": "NonASCIILocalPartDefect", "kind": "LocalType"}, {"name": "InvalidDateDefect", "kind": "LocalType"}], "email.policy": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Header", "kind": "ImportedType", "fullname": "email.header.Header"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Policy", "kind": "LocalType"}, {"name": "Compat32", "kind": "LocalType"}, {"name": "compat32", "kind": "Other"}, {"name": "EmailPolicy", "kind": "LocalType"}, {"name": "default", "kind": "Other"}, {"name": "SMTP", "kind": "Other"}, {"name": "SMTPUTF8", "kind": "Other"}, {"name": "HTTP", "kind": "Other"}, {"name": "strict", "kind": "Other"}], "numpy.compat.py3k": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "io", "kind": "Module", "fullname": "io"}, {"name": "pickle", "kind": "Other"}, {"name": "long", "kind": "Other"}, {"name": "integer_types", "kind": "Other"}, {"name": "basestring", "kind": "Other"}, {"name": "unicode", "kind": "Other"}, {"name": "bytes", "kind": "ImportedType", "fullname": "builtins.bytes"}, {"name": "asunicode", "kind": "Other"}, {"name": "asbytes", "kind": "Other"}, {"name": "asstr", "kind": "Other"}, {"name": "isfileobj", "kind": "Other"}, {"name": "open_latin1", "kind": "Other"}, {"name": "sixu", "kind": "Other"}, {"name": "strchar", "kind": "Other"}, {"name": "getexception", "kind": "Other"}, {"name": "asbytes_nested", "kind": "Other"}, {"name": "asunicode_nested", "kind": "Other"}, {"name": "is_pathlib_path", "kind": "Other"}, {"name": "contextlib_nullcontext", "kind": "LocalType"}, {"name": "npy_load_module", "kind": "Other"}, {"name": "os_fspath", "kind": "Other"}, {"name": "os_PathLike", "kind": "Other"}], "textwrap": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "__all__", "kind": "Other"}, {"name": "TextWrapper", "kind": "LocalType"}, {"name": "wrap", "kind": "Other"}, {"name": "fill", "kind": "Other"}, {"name": "shorten", "kind": "Other"}, {"name": "dedent", "kind": "Other"}, {"name": "indent", "kind": "Other"}], "string": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "StrOrLiteralStr", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "RegexFlag", "kind": "ImportedType", "fullname": "re.RegexFlag"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "ascii_letters", "kind": "Other"}, {"name": "ascii_lowercase", "kind": "Other"}, {"name": "ascii_uppercase", "kind": "Other"}, {"name": "digits", "kind": "Other"}, {"name": "hexdigits", "kind": "Other"}, {"name": "octdigits", "kind": "Other"}, {"name": "punctuation", "kind": "Other"}, {"name": "printable", "kind": "Other"}, {"name": "whitespace", "kind": "Other"}, {"name": "capwords", "kind": "Other"}, {"name": "_TemplateMetaclass", "kind": "Other"}, {"name": "Template", "kind": "LocalType"}, {"name": "Formatter", "kind": "LocalType"}], "email.header": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "Any", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Header", "kind": "LocalType"}, {"name": "decode_header", "kind": "Other"}, {"name": "make_header", "kind": "Other"}], "pickle": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "HIGHEST_PROTOCOL", "kind": "Other"}, {"name": "DEFAULT_PROTOCOL", "kind": "Other"}, {"name": "bytes_types", "kind": "Other"}, {"name": "_ReadableFileobj", "kind": "LocalType"}, {"name": "PickleBuffer", "kind": "LocalType"}, {"name": "_BufferCallback", "kind": "Other"}, {"name": "dump", "kind": "Other"}, {"name": "dumps", "kind": "Other"}, {"name": "load", "kind": "Other"}, {"name": "loads", "kind": "Other"}, {"name": "PickleError", "kind": "LocalType"}, {"name": "PicklingError", "kind": "LocalType"}, {"name": "UnpicklingError", "kind": "LocalType"}, {"name": "_ReducedType", "kind": "Other"}, {"name": "Pickler", "kind": "LocalType"}, {"name": "Unpickler", "kind": "LocalType"}, {"name": "MARK", "kind": "Other"}, {"name": "STOP", "kind": "Other"}, {"name": "POP", "kind": "Other"}, {"name": "POP_MARK", "kind": "Other"}, {"name": "DUP", "kind": "Other"}, {"name": "FLOAT", "kind": "Other"}, {"name": "INT", "kind": "Other"}, {"name": "BININT", "kind": "Other"}, {"name": "BININT1", "kind": "Other"}, {"name": "LONG", "kind": "Other"}, {"name": "BININT2", "kind": "Other"}, {"name": "NONE", "kind": "Other"}, {"name": "PERSID", "kind": "Other"}, {"name": "BINPERSID", "kind": "Other"}, {"name": "REDUCE", "kind": "Other"}, {"name": "STRING", "kind": "Other"}, {"name": "BINSTRING", "kind": "Other"}, {"name": "SHORT_BINSTRING", "kind": "Other"}, {"name": "UNICODE", "kind": "Other"}, {"name": "BINUNICODE", "kind": "Other"}, {"name": "APPEND", "kind": "Other"}, {"name": "BUILD", "kind": "Other"}, {"name": "GLOBAL", "kind": "Other"}, {"name": "DICT", "kind": "Other"}, {"name": "EMPTY_DICT", "kind": "Other"}, {"name": "APPENDS", "kind": "Other"}, {"name": "GET", "kind": "Other"}, {"name": "BINGET", "kind": "Other"}, {"name": "INST", "kind": "Other"}, {"name": "LONG_BINGET", "kind": "Other"}, {"name": "LIST", "kind": "Other"}, {"name": "EMPTY_LIST", "kind": "Other"}, {"name": "OBJ", "kind": "Other"}, {"name": "PUT", "kind": "Other"}, {"name": "BINPUT", "kind": "Other"}, {"name": "LONG_BINPUT", "kind": "Other"}, {"name": "SETITEM", "kind": "Other"}, {"name": "TUPLE", "kind": "Other"}, {"name": "EMPTY_TUPLE", "kind": "Other"}, {"name": "SETITEMS", "kind": "Other"}, {"name": "BINFLOAT", "kind": "Other"}, {"name": "TRUE", "kind": "Other"}, {"name": "FALSE", "kind": "Other"}, {"name": "PROTO", "kind": "Other"}, {"name": "NEWOBJ", "kind": "Other"}, {"name": "EXT1", "kind": "Other"}, {"name": "EXT2", "kind": "Other"}, {"name": "EXT4", "kind": "Other"}, {"name": "TUPLE1", "kind": "Other"}, {"name": "TUPLE2", "kind": "Other"}, {"name": "TUPLE3", "kind": "Other"}, {"name": "NEWTRUE", "kind": "Other"}, {"name": "NEWFALSE", "kind": "Other"}, {"name": "LONG1", "kind": "Other"}, {"name": "LONG4", "kind": "Other"}, {"name": "BINBYTES", "kind": "Other"}, {"name": "SHORT_BINBYTES", "kind": "Other"}, {"name": "SHORT_BINUNICODE", "kind": "Other"}, {"name": "BINUNICODE8", "kind": "Other"}, {"name": "BINBYTES8", "kind": "Other"}, {"name": "EMPTY_SET", "kind": "Other"}, {"name": "ADDITEMS", "kind": "Other"}, {"name": "FROZENSET", "kind": "Other"}, {"name": "NEWOBJ_EX", "kind": "Other"}, {"name": "STACK_GLOBAL", "kind": "Other"}, {"name": "MEMOIZE", "kind": "Other"}, {"name": "FRAME", "kind": "Other"}, {"name": "BYTEARRAY8", "kind": "Other"}, {"name": "NEXT_BUFFER", "kind": "Other"}, {"name": "READONLY_BUFFER", "kind": "Other"}, {"name": "encode_long", "kind": "Other"}, {"name": "decode_long", "kind": "Other"}, {"name": "_Pickler", "kind": "Other"}, {"name": "_Unpickler", "kind": "Other"}]}} \ No newline at end of file diff --git a/utbot-python/build.gradle.kts b/utbot-python/build.gradle.kts index 8d0c4b02c6..ac1e3564e6 100644 --- a/utbot-python/build.gradle.kts +++ b/utbot-python/build.gradle.kts @@ -6,20 +6,21 @@ val ideType: String? by rootProject val pythonCommunityPluginVersion: String? by rootProject val pythonUltimatePluginVersion: String? by rootProject val log4j2Version: String? by rootProject +val moshiVersion: String? by rootProject +val pythonTypesAPIHash: String? by rootProject dependencies { api(project(":utbot-fuzzing")) api(project(":utbot-framework")) api(project(":utbot-python-parser")) - api(project(":utbot-python-types")) api(project(":utbot-python-executor")) testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1") implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") implementation(group = "org.apache.commons", name = "commons-lang3", version = "3.12.0") implementation(group = "commons-io", name = "commons-io", version = "2.11.0") - implementation("com.squareup.moshi:moshi:1.11.0") - implementation("com.squareup.moshi:moshi-kotlin:1.11.0") - implementation("com.squareup.moshi:moshi-adapters:1.11.0") + implementation("com.squareup.moshi:moshi:$moshiVersion") + implementation("com.squareup.moshi:moshi-kotlin:$moshiVersion") + implementation("com.squareup.moshi:moshi-adapters:$moshiVersion") implementation(group = "io.github.microutils", name = "kotlin-logging", version = kotlinLoggingVersion) implementation("org.functionaljava:functionaljava:5.0") implementation("org.functionaljava:functionaljava-quickcheck:5.0") @@ -27,4 +28,5 @@ dependencies { implementation(group = "org.apache.commons", name = "commons-text", version = apacheCommonsTextVersion) implementation(group = "org.apache.logging.log4j", name = "log4j-core", version = log4j2Version) implementation(group = "org.apache.logging.log4j", name = "log4j-api", version = log4j2Version) + implementation("com.github.UnitTestBot:PythonTypesAPI:$pythonTypesAPIHash") } \ No newline at end of file diff --git a/utbot-python/docs/python_packages.md b/utbot-python/docs/python_packages.md index 8001a40729..415d410d28 100644 --- a/utbot-python/docs/python_packages.md +++ b/utbot-python/docs/python_packages.md @@ -16,11 +16,16 @@ To use Gradle tasks for Python packages, add the following properties in `gradle ## utbot_mypy_runner +How this module is stored in a separate repository: https://github.com/UnitTestBot/PythonTypesAPI. + ### Version -Write version in file `utbot-python-types/src/main/resources/utbot_mypy_runner_version`. +Write version in file `src/main/resources/utbot_mypy_runner_version`. + +Gradle task `setVersion` will update `pyproject.toml`. -Gradle task `utbot-python-types:setVersion` will update `pyproject.toml`. +If you want to use some other version locally (for example, version that is not yet published), set the version +in file `utbot-python/src/main/resources/local_pip_setup/local_utbot_mypy_version`. ### Usage of local version @@ -30,6 +35,9 @@ Add the following files locally (they are listed in `.gitignore`): Add here absolute path to `utbot_mypy_runner/dist` directory. +- `utbot-python/src/main/resources/local_pip_setup/local_utbot_mypy_version` + + Add here the version of local package. This will override the version from module `PythonTypesAPI`. - `utbot-python/src/main/resources/local_pip_setup/use_local_python_packages` diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt index cd0db3bf8a..69d60bd43d 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt @@ -4,9 +4,9 @@ import org.utbot.framework.codegen.domain.RuntimeExceptionTestsBehaviour import org.utbot.framework.codegen.domain.TestFramework import org.utbot.python.coverage.CoverageOutputFormat import org.utbot.python.coverage.PythonCoverageMode -import org.utbot.python.newtyping.mypy.MypyBuildDirectory -import org.utbot.python.newtyping.mypy.MypyInfoBuild -import org.utbot.python.newtyping.mypy.MypyReportLine +import org.utpython.types.mypy.MypyBuildDirectory +import org.utpython.types.mypy.MypyInfoBuild +import org.utpython.types.mypy.MypyReportLine import java.nio.file.Path data class TestFileInformation( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index dc8b1fb7ff..98b8ff2ca1 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -29,15 +29,15 @@ import org.utbot.python.framework.codegen.model.PythonImport import org.utbot.python.framework.codegen.model.PythonSysPathImport import org.utbot.python.framework.codegen.model.PythonSystemImport import org.utbot.python.framework.codegen.model.PythonUserImport -import org.utbot.python.newtyping.PythonConcreteCompositeTypeDescription -import org.utbot.python.newtyping.PythonFunctionDefinition -import org.utbot.python.newtyping.general.CompositeType -import org.utbot.python.newtyping.getPythonAttributes -import org.utbot.python.newtyping.mypy.MypyBuildDirectory -import org.utbot.python.newtyping.mypy.MypyInfoBuild -import org.utbot.python.newtyping.mypy.readMypyAnnotationStorageAndInitialErrors -import org.utbot.python.newtyping.pythonDescription -import org.utbot.python.newtyping.pythonName +import org.utpython.types.PythonConcreteCompositeTypeDescription +import org.utpython.types.PythonFunctionDefinition +import org.utpython.types.general.CompositeType +import org.utpython.types.getPythonAttributes +import org.utpython.types.mypy.MypyBuildDirectory +import org.utpython.types.mypy.MypyInfoBuild +import org.utpython.types.mypy.readMypyAnnotationStorageAndInitialErrors +import org.utpython.types.pythonDescription +import org.utpython.types.pythonName import org.utbot.python.utils.TemporaryFileManager import org.utbot.python.utils.convertToTime import org.utbot.python.utils.separateTimeout diff --git a/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt b/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt index c8634d6c67..0de57911d7 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt @@ -7,19 +7,19 @@ import org.utbot.framework.plugin.api.UtExecution import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.api.python.PythonTreeModel import org.utbot.python.framework.api.python.util.pythonAnyClassId -import org.utbot.python.newtyping.PythonCallableTypeDescription -import org.utbot.python.newtyping.PythonDefinition -import org.utbot.python.newtyping.PythonDefinitionDescription -import org.utbot.python.newtyping.PythonFuncItemDescription -import org.utbot.python.newtyping.PythonFunctionDefinition -import org.utbot.python.newtyping.general.CompositeType -import org.utbot.python.newtyping.general.FunctionType -import org.utbot.python.newtyping.pythonAnyType -import org.utbot.python.newtyping.pythonDescription -import org.utbot.python.newtyping.pythonName -import org.utbot.python.newtyping.pythonTypeRepresentation -import org.utbot.python.newtyping.utils.isNamed -import org.utbot.python.newtyping.utils.isRequired +import org.utpython.types.PythonCallableTypeDescription +import org.utpython.types.PythonDefinition +import org.utpython.types.PythonDefinitionDescription +import org.utpython.types.PythonFuncItemDescription +import org.utpython.types.PythonFunctionDefinition +import org.utpython.types.general.CompositeType +import org.utpython.types.general.FunctionType +import org.utpython.types.pythonAnyType +import org.utpython.types.pythonDescription +import org.utpython.types.pythonName +import org.utpython.types.pythonTypeRepresentation +import org.utpython.types.utils.isNamed +import org.utpython.types.utils.isRequired data class PythonArgument( val name: String, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/code/CodeGen.kt b/utbot-python/src/main/kotlin/org/utbot/python/code/CodeGen.kt index 261abc9332..7c9479dc49 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/code/CodeGen.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/code/CodeGen.kt @@ -6,7 +6,7 @@ import org.utbot.framework.plugin.api.util.withUtContext import org.utbot.python.PythonMethod import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.codegen.PythonCgLanguageAssistant -import org.utbot.python.newtyping.general.UtType +import org.utpython.types.general.UtType object PythonCodeGenerator { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/ExecutionResultHandler.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/ExecutionResultHandler.kt index 3fe60f6623..4445ce68a6 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/ExecutionResultHandler.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/ExecutionResultHandler.kt @@ -19,8 +19,8 @@ import org.utbot.python.evaluation.PythonEvaluationSuccess import org.utbot.python.evaluation.serialization.toPythonTree import org.utbot.python.framework.api.python.PythonTreeModel import org.utbot.python.framework.api.python.PythonUtExecution -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.pythonTypeRepresentation +import org.utpython.types.general.UtType +import org.utpython.types.pythonTypeRepresentation import org.utbot.python.utils.camelToSnakeCase import org.utbot.summary.fuzzer.names.TestSuggestedInfo diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt index 37b0f3f2aa..89a98ebf8b 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -5,12 +5,12 @@ import org.utbot.python.MypyConfig import org.utbot.python.PythonMethod import org.utbot.python.PythonTestGenerationConfig import org.utbot.python.engine.fuzzing.FuzzingEngine -import org.utbot.python.newtyping.PythonTypeHintsStorage +import org.utpython.types.PythonTypeHintsStorage import org.utbot.python.newtyping.ast.visitor.Visitor import org.utbot.python.newtyping.ast.visitor.constants.ConstantCollector import org.utbot.python.newtyping.ast.visitor.hints.HintCollector -import org.utbot.python.newtyping.mypy.GlobalNamesStorage -import org.utbot.python.newtyping.mypy.MypyInfoBuild +import org.utpython.types.mypy.GlobalNamesStorage +import org.utpython.types.mypy.MypyInfoBuild import kotlin.concurrent.thread private val logger = KotlinLogging.logger {} diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index 6275564508..bbe1f8a641 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -41,22 +41,22 @@ import org.utbot.python.fuzzing.PythonFuzzedConcreteValue import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonFuzzing import org.utbot.python.fuzzing.PythonMethodDescription -import org.utbot.python.newtyping.PythonTypeHintsStorage +import org.utpython.types.PythonTypeHintsStorage import org.utbot.python.newtyping.ast.visitor.constants.ConstantCollector import org.utbot.python.newtyping.ast.visitor.hints.HintCollector -import org.utbot.python.newtyping.general.FunctionType -import org.utbot.python.newtyping.general.UtType +import org.utpython.types.general.FunctionType +import org.utpython.types.general.UtType import org.utbot.python.newtyping.inference.InvalidTypeFeedback import org.utbot.python.newtyping.inference.SuccessFeedback import org.utbot.python.newtyping.inference.baseline.BaselineAlgorithm import org.utbot.python.newtyping.inference.baseline.MethodAndVars -import org.utbot.python.newtyping.mypy.MypyInfoBuild -import org.utbot.python.newtyping.mypy.MypyReportLine -import org.utbot.python.newtyping.mypy.getErrorNumber -import org.utbot.python.newtyping.pythonModules -import org.utbot.python.newtyping.pythonTypeName -import org.utbot.python.newtyping.pythonTypeRepresentation -import org.utbot.python.newtyping.utils.getOffsetLine +import org.utpython.types.mypy.MypyInfoBuild +import org.utpython.types.mypy.MypyReportLine +import org.utpython.types.mypy.getErrorNumber +import org.utpython.types.pythonModules +import org.utpython.types.pythonTypeName +import org.utpython.types.pythonTypeRepresentation +import org.utpython.types.utils.getOffsetLine import org.utbot.python.utils.ExecutionWithTimeoutMode import org.utbot.python.utils.TestGenerationLimitManager import org.utbot.python.utils.TimeoutMode diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt index 64928d2c57..68f1861db4 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt @@ -1,18 +1,18 @@ package org.utbot.python.engine.fuzzing.typeinference import org.utbot.python.PythonMethod -import org.utbot.python.newtyping.PythonSubtypeChecker -import org.utbot.python.newtyping.PythonTypeHintsStorage -import org.utbot.python.newtyping.PythonTypeVarDescription -import org.utbot.python.newtyping.general.DefaultSubstitutionProvider -import org.utbot.python.newtyping.general.FunctionType -import org.utbot.python.newtyping.general.TypeParameter -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.general.getBoundedParameters -import org.utbot.python.newtyping.general.hasBoundedParameters -import org.utbot.python.newtyping.getPythonAttributeByName -import org.utbot.python.newtyping.pythonDescription -import org.utbot.python.newtyping.pythonTypeName +import org.utpython.types.PythonSubtypeChecker +import org.utpython.types.PythonTypeHintsStorage +import org.utpython.types.PythonTypeVarDescription +import org.utpython.types.general.DefaultSubstitutionProvider +import org.utpython.types.general.FunctionType +import org.utpython.types.general.TypeParameter +import org.utpython.types.general.UtType +import org.utpython.types.general.getBoundedParameters +import org.utpython.types.general.hasBoundedParameters +import org.utpython.types.getPythonAttributeByName +import org.utpython.types.pythonDescription +import org.utpython.types.pythonTypeName import org.utbot.python.utils.PriorityCartesianProduct private const val MAX_SUBSTITUTIONS = 10 diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt index ccaee6c1b4..52f5e81beb 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt @@ -12,10 +12,10 @@ import org.utbot.python.evaluation.serialization.MemoryMode import org.utbot.python.evaluation.serialization.PythonExecutionResult import org.utbot.python.evaluation.serialization.SuccessExecution import org.utbot.python.evaluation.serialization.serializeObjects -import org.utbot.python.newtyping.PythonCallableTypeDescription -import org.utbot.python.newtyping.pythonDescription -import org.utbot.python.newtyping.pythonTypeName -import org.utbot.python.newtyping.utils.isNamed +import org.utpython.types.PythonCallableTypeDescription +import org.utpython.types.pythonDescription +import org.utpython.types.pythonTypeName +import org.utpython.types.utils.isNamed import java.net.SocketException class PythonCodeSocketExecutor( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt index c146a540a3..58fa5a6c5a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt @@ -13,8 +13,8 @@ import org.utbot.python.framework.api.python.util.pythonStopIterationClassId import org.utbot.python.framework.api.python.util.pythonStrClassId import org.utbot.python.framework.api.python.util.pythonTupleClassId import org.utbot.python.framework.api.python.util.toPythonRepr -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.pythonTypeName +import org.utpython.types.general.UtType +import org.utpython.types.pythonTypeName import java.math.BigDecimal import java.math.BigInteger import java.util.* diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt index 93b117f2c9..e968129731 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt @@ -22,10 +22,10 @@ import org.utbot.python.PythonMethod import org.utbot.python.framework.codegen.PythonCgLanguageAssistant import org.utbot.python.framework.codegen.model.constructor.tree.PythonCgTestClassConstructor import org.utbot.python.framework.codegen.model.constructor.visitor.CgPythonRenderer -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.pythonAnyType -import org.utbot.python.newtyping.pythonModules -import org.utbot.python.newtyping.pythonTypeRepresentation +import org.utpython.types.general.UtType +import org.utpython.types.pythonAnyType +import org.utpython.types.pythonModules +import org.utpython.types.pythonTypeRepresentation class PythonCodeGenerator( classUnderTest: ClassId, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/external/PythonTestMethodInfo.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/external/PythonTestMethodInfo.kt index d1495d00ae..1269131aca 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/external/PythonTestMethodInfo.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/external/PythonTestMethodInfo.kt @@ -1,7 +1,7 @@ package org.utbot.python.framework.external import org.utbot.python.PythonMethod -import org.utbot.python.newtyping.pythonTypeName +import org.utpython.types.pythonTypeName class PythonTestMethodInfo( val methodName: PythonObjectName, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt index ccf4d49d36..bf8f9e7b8d 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt @@ -36,17 +36,17 @@ import org.utbot.python.fuzzing.provider.TupleValueProvider import org.utbot.python.fuzzing.provider.TypeAliasValueProvider import org.utbot.python.fuzzing.provider.UnionValueProvider import org.utbot.python.fuzzing.provider.utils.isAny -import org.utbot.python.newtyping.PythonTypeHintsStorage -import org.utbot.python.newtyping.general.FunctionType -import org.utbot.python.newtyping.general.UtType +import org.utpython.types.PythonTypeHintsStorage +import org.utpython.types.general.FunctionType +import org.utpython.types.general.UtType import org.utbot.python.newtyping.inference.InferredTypeFeedback import org.utbot.python.newtyping.inference.InvalidTypeFeedback import org.utbot.python.newtyping.inference.SuccessFeedback import org.utbot.python.newtyping.inference.baseline.BaselineAlgorithm -import org.utbot.python.newtyping.pythonModuleName -import org.utbot.python.newtyping.pythonName -import org.utbot.python.newtyping.pythonTypeName -import org.utbot.python.newtyping.pythonTypeRepresentation +import org.utpython.types.pythonModuleName +import org.utpython.types.pythonName +import org.utpython.types.pythonTypeName +import org.utpython.types.pythonTypeRepresentation import org.utbot.python.utils.ExecutionWithTimeoutMode import org.utbot.python.utils.FakeWithTimeoutMode import org.utbot.python.utils.TestGenerationLimitManager diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt index 3f8a65e0af..4ccc991f5c 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt @@ -9,7 +9,7 @@ import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.PythonValueProvider -import org.utbot.python.newtyping.createPythonUnionType +import org.utpython.types.createPythonUnionType object ComplexValueProvider : PythonValueProvider { override fun accept(type: FuzzedUtType): Boolean { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt index 89c29a70c4..fe7f9ad72a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt @@ -10,7 +10,7 @@ import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.PythonValueProvider -import org.utbot.python.newtyping.pythonAnnotationParameters +import org.utpython.types.pythonAnnotationParameters object DictValueProvider : PythonValueProvider { override fun accept(type: FuzzedUtType): Boolean { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/FloatValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/FloatValueProvider.kt index d6089aa2fa..a8f0dee725 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/FloatValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/FloatValueProvider.kt @@ -12,7 +12,7 @@ import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.fuzzing.provider.utils.generateSummary -import org.utbot.python.newtyping.pythonTypeName +import org.utpython.types.pythonTypeName import java.math.BigDecimal import java.math.BigInteger diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt index 026e9e1d10..a60075f3e4 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt @@ -10,7 +10,7 @@ import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.PythonValueProvider -import org.utbot.python.newtyping.pythonAnnotationParameters +import org.utpython.types.pythonAnnotationParameters object IteratorValueProvider : PythonValueProvider { override fun accept(type: FuzzedUtType): Boolean { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ListValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ListValueProvider.kt index ae19ff30f1..676926c03a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ListValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ListValueProvider.kt @@ -10,7 +10,7 @@ import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.PythonValueProvider -import org.utbot.python.newtyping.pythonAnnotationParameters +import org.utpython.types.pythonAnnotationParameters object ListValueProvider : PythonValueProvider { override fun accept(type: FuzzedUtType): Boolean { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NoneValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NoneValueProvider.kt index 3ea60ccfb4..119c30db13 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NoneValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NoneValueProvider.kt @@ -6,7 +6,7 @@ import org.utbot.python.fuzzing.FuzzedUtType import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.PythonValueProvider -import org.utbot.python.newtyping.PythonNoneTypeDescription +import org.utpython.types.PythonNoneTypeDescription object NoneValueProvider : PythonValueProvider { override fun accept(type: FuzzedUtType): Boolean { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt index 121bf97b00..8356958121 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt @@ -9,9 +9,9 @@ import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.PythonValueProvider -import org.utbot.python.newtyping.PythonNoneTypeDescription -import org.utbot.python.newtyping.PythonUnionTypeDescription -import org.utbot.python.newtyping.pythonAnnotationParameters +import org.utpython.types.PythonNoneTypeDescription +import org.utpython.types.PythonUnionTypeDescription +import org.utpython.types.pythonAnnotationParameters object OptionalValueProvider : PythonValueProvider { override fun accept(type: FuzzedUtType): Boolean { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt index 9416053855..19b708a886 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt @@ -31,15 +31,15 @@ import org.utbot.python.fuzzing.provider.utils.isMagic import org.utbot.python.fuzzing.provider.utils.isPrivate import org.utbot.python.fuzzing.provider.utils.isProperty import org.utbot.python.fuzzing.provider.utils.isProtected -import org.utbot.python.newtyping.PythonCallableTypeDescription -import org.utbot.python.newtyping.PythonCompositeTypeDescription -import org.utbot.python.newtyping.PythonDefinition -import org.utbot.python.newtyping.general.FunctionType -import org.utbot.python.newtyping.getPythonAttributeByName -import org.utbot.python.newtyping.getPythonAttributes -import org.utbot.python.newtyping.pythonDescription -import org.utbot.python.newtyping.pythonNoneType -import org.utbot.python.newtyping.pythonTypeName +import org.utpython.types.PythonCallableTypeDescription +import org.utpython.types.PythonCompositeTypeDescription +import org.utpython.types.PythonDefinition +import org.utpython.types.general.FunctionType +import org.utpython.types.getPythonAttributeByName +import org.utpython.types.getPythonAttributes +import org.utpython.types.pythonDescription +import org.utpython.types.pythonNoneType +import org.utpython.types.pythonTypeName object ReduceValueProvider : PythonValueProvider { private val unsupportedTypes = listOf( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt index 37d8ca0b92..20def0c7d3 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt @@ -10,7 +10,7 @@ import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.PythonValueProvider -import org.utbot.python.newtyping.pythonAnnotationParameters +import org.utpython.types.pythonAnnotationParameters object SetValueProvider : PythonValueProvider { override fun accept(type: FuzzedUtType): Boolean { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SubtypeValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SubtypeValueProvider.kt index 00d37b1e7e..41d4fe14fa 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SubtypeValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SubtypeValueProvider.kt @@ -10,13 +10,13 @@ import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.fuzzing.provider.utils.isConcreteType -import org.utbot.python.newtyping.PythonConcreteCompositeTypeDescription -import org.utbot.python.newtyping.PythonProtocolDescription -import org.utbot.python.newtyping.PythonSubtypeChecker.Companion.checkIfRightIsSubtypeOfLeft -import org.utbot.python.newtyping.PythonTypeHintsStorage -import org.utbot.python.newtyping.general.DefaultSubstitutionProvider -import org.utbot.python.newtyping.pythonAnyType -import org.utbot.python.newtyping.pythonDescription +import org.utpython.types.PythonConcreteCompositeTypeDescription +import org.utpython.types.PythonProtocolDescription +import org.utpython.types.PythonSubtypeChecker.Companion.checkIfRightIsSubtypeOfLeft +import org.utpython.types.PythonTypeHintsStorage +import org.utpython.types.general.DefaultSubstitutionProvider +import org.utpython.types.pythonAnyType +import org.utpython.types.pythonDescription class SubtypeValueProvider( private val typeStorage: PythonTypeHintsStorage diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleFixSizeValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleFixSizeValueProvider.kt index e8de4c6f95..813a63b0a6 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleFixSizeValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleFixSizeValueProvider.kt @@ -9,8 +9,8 @@ import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.PythonValueProvider -import org.utbot.python.newtyping.PythonTupleTypeDescription -import org.utbot.python.newtyping.pythonAnnotationParameters +import org.utpython.types.PythonTupleTypeDescription +import org.utpython.types.pythonAnnotationParameters object TupleFixSizeValueProvider : PythonValueProvider { override fun accept(type: FuzzedUtType): Boolean { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleValueProvider.kt index e7de9bfa6b..b15466b873 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleValueProvider.kt @@ -10,10 +10,10 @@ import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.PythonValueProvider -import org.utbot.python.newtyping.PythonSubtypeChecker -import org.utbot.python.newtyping.pythonAnnotationParameters -import org.utbot.python.newtyping.pythonAnyType -import org.utbot.python.newtyping.typesAreEqual +import org.utpython.types.PythonSubtypeChecker +import org.utpython.types.pythonAnnotationParameters +import org.utpython.types.pythonAnyType +import org.utpython.types.typesAreEqual object TupleValueProvider : PythonValueProvider { override fun accept(type: FuzzedUtType): Boolean { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TypeAliasValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TypeAliasValueProvider.kt index cf46ce04ca..a4f640c465 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TypeAliasValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TypeAliasValueProvider.kt @@ -9,7 +9,7 @@ import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.PythonValueProvider -import org.utbot.python.newtyping.PythonTypeAliasDescription +import org.utpython.types.PythonTypeAliasDescription object TypeAliasValueProvider : PythonValueProvider { override fun accept(type: FuzzedUtType): Boolean { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt index 7316f99deb..f7ac3bef77 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt @@ -9,9 +9,9 @@ import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.PythonValueProvider -import org.utbot.python.newtyping.PythonNoneTypeDescription -import org.utbot.python.newtyping.PythonUnionTypeDescription -import org.utbot.python.newtyping.pythonAnnotationParameters +import org.utpython.types.PythonNoneTypeDescription +import org.utpython.types.PythonUnionTypeDescription +import org.utpython.types.pythonAnnotationParameters object UnionValueProvider : PythonValueProvider { override fun accept(type: FuzzedUtType): Boolean { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/utils/ProviderUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/utils/ProviderUtils.kt index 633956d31e..c54917c298 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/utils/ProviderUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/utils/ProviderUtils.kt @@ -4,8 +4,8 @@ import org.utbot.fuzzing.Seed import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription -import org.utbot.python.newtyping.* -import org.utbot.python.newtyping.general.UtType +import org.utpython.types.* +import org.utpython.types.general.UtType fun UtType.isAny(): Boolean { return meta is PythonAnyTypeDescription diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/ArgBinding.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/ArgBinding.kt index cca30f6fa9..fe43034ef3 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/ArgBinding.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/ArgBinding.kt @@ -1,8 +1,8 @@ package org.utbot.python.newtyping.ast -import org.utbot.python.newtyping.PythonSubtypeChecker -import org.utbot.python.newtyping.PythonTypeHintsStorage -import org.utbot.python.newtyping.general.FunctionType +import org.utpython.types.PythonSubtypeChecker +import org.utpython.types.PythonTypeHintsStorage +import org.utpython.types.general.FunctionType // TODO: consider different types of parameters fun signaturesAreCompatible( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/TypeUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/TypeUtils.kt index e9d9c5cbf0..3fe668987a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/TypeUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/TypeUtils.kt @@ -2,9 +2,9 @@ package org.utbot.python.newtyping.ast import org.parsers.python.PythonConstants import org.parsers.python.ast.NumericalLiteral -import org.utbot.python.newtyping.PythonTypeHintsStorage -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.pythonAnyType +import org.utpython.types.PythonTypeHintsStorage +import org.utpython.types.general.UtType +import org.utpython.types.pythonAnyType fun typeOfNumericalLiteral(node: NumericalLiteral, storage: PythonTypeHintsStorage): UtType = when (node.type) { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/test.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/test.kt index e9bd46d2ca..4cf982e559 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/test.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/test.kt @@ -4,7 +4,7 @@ import org.parsers.python.PythonParser import org.utbot.python.PythonMethodHeader import org.utbot.python.code.PythonCode -fun main() { +/*fun main() { val content = """ class A: @decorator @@ -13,6 +13,6 @@ fun main() { """.trimIndent() val root = PythonParser(content).Module() - // val y = PythonCode.findFunctionDefinition(root, PythonMethodHeader("func", "", null)) + val y = PythonCode.findFunctionDefinition(root, PythonMethodHeader("func", "", null)) val x = root -} \ No newline at end of file +}*/ \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/constants/ConstantCollector.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/constants/ConstantCollector.kt index 272c033e8b..2bc3f65c35 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/constants/ConstantCollector.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/constants/ConstantCollector.kt @@ -6,14 +6,14 @@ import org.parsers.python.ast.NumericalLiteral import org.parsers.python.ast.SliceExpression import org.parsers.python.ast.StringLiteral import org.parsers.python.ast.UnaryExpression -import org.utbot.python.newtyping.PythonTypeHintsStorage +import org.utpython.types.PythonTypeHintsStorage import org.utbot.python.newtyping.ast.SimpleSlice import org.utbot.python.newtyping.ast.TupleSlice import org.utbot.python.newtyping.ast.parseSliceExpression import org.utbot.python.newtyping.ast.typeOfNumericalLiteral import org.utbot.python.newtyping.ast.visitor.Collector -import org.utbot.python.newtyping.createPythonTupleType -import org.utbot.python.newtyping.general.UtType +import org.utpython.types.createPythonTupleType +import org.utpython.types.general.UtType import java.math.BigDecimal import java.math.BigInteger diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/HintCollector.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/HintCollector.kt index 48c1e44002..6dfaba253a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/HintCollector.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/HintCollector.kt @@ -32,9 +32,9 @@ import org.parsers.python.ast.Slices import org.parsers.python.ast.Statement import org.parsers.python.ast.StringLiteral import org.utbot.python.PythonMethod -import org.utbot.python.newtyping.PythonCallableTypeDescription -import org.utbot.python.newtyping.PythonOverloadTypeDescription -import org.utbot.python.newtyping.PythonTypeHintsStorage +import org.utpython.types.PythonCallableTypeDescription +import org.utpython.types.PythonOverloadTypeDescription +import org.utpython.types.PythonTypeHintsStorage import org.utbot.python.newtyping.ast.OpAssign import org.utbot.python.newtyping.ast.ParsedFunctionCall import org.utbot.python.newtyping.ast.SimpleAssign @@ -60,22 +60,22 @@ import org.utbot.python.newtyping.ast.parseSliceExpression import org.utbot.python.newtyping.ast.signaturesAreCompatible import org.utbot.python.newtyping.ast.typeOfNumericalLiteral import org.utbot.python.newtyping.ast.visitor.Collector -import org.utbot.python.newtyping.createBinaryProtocol -import org.utbot.python.newtyping.createCallableProtocol -import org.utbot.python.newtyping.createIterableWithCustomReturn -import org.utbot.python.newtyping.createProtocolWithAttribute -import org.utbot.python.newtyping.createPythonCallableType -import org.utbot.python.newtyping.general.DefaultSubstitutionProvider -import org.utbot.python.newtyping.general.FunctionTypeCreator -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.getPythonAttributeByName -import org.utbot.python.newtyping.inference.TypeInferenceEdgeWithBound -import org.utbot.python.newtyping.inference.addEdge -import org.utbot.python.newtyping.mypy.GlobalNamesStorage -import org.utbot.python.newtyping.pythonAnyType -import org.utbot.python.newtyping.pythonDescription -import org.utbot.python.newtyping.pythonNoneType -import org.utbot.python.newtyping.supportsBoolProtocol +import org.utpython.types.createBinaryProtocol +import org.utpython.types.createCallableProtocol +import org.utpython.types.createIterableWithCustomReturn +import org.utpython.types.createProtocolWithAttribute +import org.utpython.types.createPythonCallableType +import org.utpython.types.general.DefaultSubstitutionProvider +import org.utpython.types.general.FunctionTypeCreator +import org.utpython.types.general.UtType +import org.utpython.types.getPythonAttributeByName +import org.utpython.types.inference.TypeInferenceEdgeWithBound +import org.utpython.types.inference.addEdge +import org.utpython.types.mypy.GlobalNamesStorage +import org.utpython.types.pythonAnyType +import org.utpython.types.pythonDescription +import org.utpython.types.pythonNoneType +import org.utpython.types.supportsBoolProtocol import java.util.* class HintCollector( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/HintCollectorStructures.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/HintCollectorStructures.kt index 4e97b2f03c..f7fa189a3d 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/HintCollectorStructures.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/HintCollectorStructures.kt @@ -1,11 +1,11 @@ package org.utbot.python.newtyping.ast.visitor.hints -import org.utbot.python.newtyping.general.FunctionType -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.inference.TypeInferenceEdge -import org.utbot.python.newtyping.inference.TypeInferenceEdgeWithBound -import org.utbot.python.newtyping.inference.TypeInferenceEdgeWithValue -import org.utbot.python.newtyping.inference.TypeInferenceNode +import org.utpython.types.general.FunctionType +import org.utpython.types.general.UtType +import org.utpython.types.inference.TypeInferenceEdge +import org.utpython.types.inference.TypeInferenceEdgeWithBound +import org.utpython.types.inference.TypeInferenceEdgeWithValue +import org.utpython.types.inference.TypeInferenceNode sealed class HintEdge( override val from: HintCollectorNode, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/HintCollectorResultUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/HintCollectorResultUtils.kt index 3615ac5b93..e6ff936f70 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/HintCollectorResultUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/HintCollectorResultUtils.kt @@ -3,8 +3,9 @@ package org.utbot.python.newtyping.inference import org.utbot.python.newtyping.ast.visitor.hints.HintCollectorNode import org.utbot.python.newtyping.ast.visitor.hints.HintEdge import org.utbot.python.newtyping.ast.visitor.hints.HintEdgeWithBound -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.pythonAnyType +import org.utpython.types.general.UtType +import org.utpython.types.inference.TypeInferenceEdgeWithBound +import org.utpython.types.pythonAnyType fun visitNodesByReverseEdges( node: HintCollectorNode, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceAlgorithmAPI.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceAlgorithmAPI.kt index 430acddd45..6ed0686157 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceAlgorithmAPI.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceAlgorithmAPI.kt @@ -1,6 +1,6 @@ package org.utbot.python.newtyping.inference -import org.utbot.python.newtyping.general.UtType +import org.utpython.types.general.UtType abstract class TypeInferenceAlgorithm { abstract suspend fun run( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt index b716289c00..24bcfd0b12 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt @@ -5,25 +5,25 @@ import org.parsers.python.PythonParser import org.parsers.python.ast.ClassDefinition import org.parsers.python.ast.FunctionDefinition import org.utbot.python.PythonBaseMethod -import org.utbot.python.newtyping.PythonFunctionDefinition -import org.utbot.python.newtyping.PythonTypeHintsStorage +import org.utpython.types.PythonFunctionDefinition +import org.utpython.types.PythonTypeHintsStorage import org.utbot.python.newtyping.ast.parseClassDefinition import org.utbot.python.newtyping.ast.parseFunctionDefinition import org.utbot.python.newtyping.ast.visitor.Visitor import org.utbot.python.newtyping.ast.visitor.hints.HintCollector -import org.utbot.python.newtyping.general.CompositeType -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.getPythonAttributeByName +import org.utpython.types.general.CompositeType +import org.utpython.types.general.UtType +import org.utpython.types.getPythonAttributeByName import org.utbot.python.newtyping.inference.baseline.BaselineAlgorithm import org.utbot.python.newtyping.inference.baseline.MethodAndVars -import org.utbot.python.newtyping.mypy.GlobalNamesStorage -import org.utbot.python.newtyping.mypy.MypyBuildDirectory -import org.utbot.python.newtyping.mypy.MypyInfoBuild import org.utbot.python.newtyping.mypy.dropInitFile -import org.utbot.python.newtyping.mypy.getErrorNumber -import org.utbot.python.newtyping.mypy.readMypyAnnotationStorageAndInitialErrors -import org.utbot.python.newtyping.pythonTypeRepresentation -import org.utbot.python.newtyping.utils.getOffsetLine +import org.utpython.types.mypy.GlobalNamesStorage +import org.utpython.types.mypy.MypyBuildDirectory +import org.utpython.types.mypy.MypyInfoBuild +import org.utpython.types.mypy.getErrorNumber +import org.utpython.types.mypy.readMypyAnnotationStorageAndInitialErrors +import org.utpython.types.pythonTypeRepresentation +import org.utpython.types.utils.getOffsetLine import org.utbot.python.utils.Cleaner import org.utbot.python.utils.Fail import org.utbot.python.utils.Optional diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt index 3c4198ec1a..6058a6dd56 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt @@ -2,24 +2,24 @@ package org.utbot.python.newtyping.inference.baseline import mu.KotlinLogging import org.utbot.python.PythonMethod -import org.utbot.python.newtyping.PythonTypeHintsStorage +import org.utpython.types.PythonTypeHintsStorage import org.utbot.python.newtyping.ast.visitor.hints.EdgeSource import org.utbot.python.newtyping.ast.visitor.hints.HintCollectorNode import org.utbot.python.newtyping.ast.visitor.hints.HintCollectorResult import org.utbot.python.newtyping.ast.visitor.hints.HintEdgeWithBound -import org.utbot.python.newtyping.createPythonUnionType -import org.utbot.python.newtyping.general.FunctionType -import org.utbot.python.newtyping.general.UtType +import org.utpython.types.createPythonUnionType +import org.utpython.types.general.FunctionType +import org.utpython.types.general.UtType import org.utbot.python.newtyping.inference.InferredTypeFeedback import org.utbot.python.newtyping.inference.InvalidTypeFeedback import org.utbot.python.newtyping.inference.SuccessFeedback import org.utbot.python.newtyping.inference.TypeInferenceAlgorithm -import org.utbot.python.newtyping.inference.addEdge +import org.utpython.types.inference.addEdge import org.utbot.python.newtyping.inference.collectBoundsFromComponent import org.utbot.python.newtyping.inference.visitNodesByReverseEdges import org.utbot.python.newtyping.mypy.checkSuggestedSignatureWithDMypy -import org.utbot.python.newtyping.pythonTypeRepresentation -import org.utbot.python.newtyping.typesAreEqual +import org.utpython.types.pythonTypeRepresentation +import org.utpython.types.typesAreEqual import org.utbot.python.newtyping.utils.weightedRandom import org.utbot.python.utils.TemporaryFileManager import java.io.File diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/StateExpansion.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/StateExpansion.kt index 59b0e88268..33f364152a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/StateExpansion.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/StateExpansion.kt @@ -1,10 +1,10 @@ package org.utbot.python.newtyping.inference.baseline -import org.utbot.python.newtyping.PythonTypeHintsStorage -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.inference.addEdge -import org.utbot.python.newtyping.pythonAnnotationParameters -import org.utbot.python.newtyping.pythonDescription +import org.utpython.types.PythonTypeHintsStorage +import org.utpython.types.general.UtType +import org.utpython.types.inference.addEdge +import org.utpython.types.pythonAnnotationParameters +import org.utpython.types.pythonDescription import java.util.* fun expandState(state: BaselineAlgorithmState, typeStorage: PythonTypeHintsStorage): BaselineAlgorithmState? { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/Structures.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/Structures.kt index 97338bf590..4a01e45a09 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/Structures.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/Structures.kt @@ -1,10 +1,10 @@ package org.utbot.python.newtyping.inference.baseline -import org.utbot.python.newtyping.PythonTypeHintsStorage -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.inference.TypeInferenceEdgeWithValue -import org.utbot.python.newtyping.inference.TypeInferenceNode -import org.utbot.python.newtyping.pythonAnyType +import org.utpython.types.PythonTypeHintsStorage +import org.utpython.types.general.UtType +import org.utpython.types.inference.TypeInferenceEdgeWithValue +import org.utpython.types.inference.TypeInferenceNode +import org.utpython.types.pythonAnyType sealed class BaselineAlgorithmNode(val isRoot: Boolean) : TypeInferenceNode { override val ingoingEdges: MutableList = mutableListOf() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/TypeCandidateGeneration.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/TypeCandidateGeneration.kt index dae6a4efe1..9bd132b357 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/TypeCandidateGeneration.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/TypeCandidateGeneration.kt @@ -1,13 +1,14 @@ package org.utbot.python.newtyping.inference.baseline import mu.KotlinLogging -import org.utbot.python.newtyping.* +import org.utpython.types.* import org.utbot.python.newtyping.ast.visitor.hints.HintCollectorResult -import org.utbot.python.newtyping.general.DefaultSubstitutionProvider -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.general.getBoundedParameters -import org.utbot.python.newtyping.general.getOrigin +import org.utpython.types.general.DefaultSubstitutionProvider +import org.utpython.types.general.UtType +import org.utpython.types.general.getBoundedParameters +import org.utpython.types.general.getOrigin import org.utbot.python.newtyping.inference.collectBoundsFromEdges +import org.utpython.types.PythonTypeHintsStorage private val logger = KotlinLogging.logger {} diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/TypeDecomposition.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/TypeDecomposition.kt index 1c02b990d0..90e049ba7f 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/TypeDecomposition.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/TypeDecomposition.kt @@ -1,8 +1,8 @@ package org.utbot.python.newtyping.inference.baseline -import org.utbot.python.newtyping.* -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.inference.addEdge +import org.utpython.types.* +import org.utpython.types.general.UtType +import org.utpython.types.inference.addEdge data class DecompositionResult( val root: BaselineAlgorithmNode, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/test.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/test.kt index 28b73907fe..83d9df08cd 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/test.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/test.kt @@ -1,6 +1,6 @@ package org.utbot.python.newtyping.inference -import org.utbot.python.newtyping.pythonTypeRepresentation +import org.utpython.types.pythonTypeRepresentation fun main() { TypeInferenceProcessor( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/mypy/RunDMypy.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/mypy/RunDMypy.kt index f8e8686e67..d9320d1364 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/mypy/RunDMypy.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/mypy/RunDMypy.kt @@ -4,6 +4,8 @@ import mu.KotlinLogging import org.utbot.python.PythonMethod import org.utbot.python.code.PythonCodeGenerator.generateMypyCheckCode import org.utbot.python.utils.TemporaryFileManager +import org.utpython.types.mypy.getErrorNumber +import org.utpython.types.mypy.getErrorsAndNotes import org.utbot.python.utils.runCommand import java.io.File diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/mypy/Utils.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/mypy/Utils.kt new file mode 100644 index 0000000000..96ced37886 --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/mypy/Utils.kt @@ -0,0 +1,11 @@ +package org.utbot.python.newtyping.mypy + +/** + * Remove .__init__ suffix if it exists. +It resolves problem with duplication module names in mypy, e.g. mod.__init__ and mod + */ +fun String.dropInitFile(): String { + return if (this.endsWith(".__init__")) { + this.dropLast(9) + } else this +} \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/utils/ProcessUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/utils/ProcessUtils.kt similarity index 100% rename from utbot-python-types/src/main/kotlin/org/utbot/python/utils/ProcessUtils.kt rename to utbot-python/src/main/kotlin/org/utbot/python/utils/ProcessUtils.kt diff --git a/utbot-python/src/main/kotlin/org/utbot/python/utils/RequirementsUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/utils/RequirementsUtils.kt index ec279c7de7..2e955a5b92 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/utils/RequirementsUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/utils/RequirementsUtils.kt @@ -1,11 +1,12 @@ package org.utbot.python.utils import org.utbot.python.UtbotExecutor -import org.utbot.python.newtyping.mypy.MypyInfoBuild +import org.utpython.types.mypy.MypyInfoBuild object RequirementsUtils { - private val utbotMypyRunnerVersion = - MypyInfoBuild::class.java.getResource("/utbot_mypy_runner_version")!!.readText() + private val utbotMypyRunnerVersion = // local_pip_setup should be used only for debugging + RequirementsUtils::class.java.getResource("/local_pip_setup/local_utbot_mypy_version")?.readText() + ?: MypyInfoBuild::class.java.getResource("/utbot_mypy_runner_version")!!.readText() private val utbotExecutorVersion = UtbotExecutor::class.java.getResource("/utbot_executor_version")!!.readText() private val useLocalPythonPackages = // "true" must be set only for debugging From 2b37f0736eabf4444a9e86be2a9a424dbc2bb111 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 29 Feb 2024 17:33:09 +0300 Subject: [PATCH 2/5] Fix JS Dockerfile (#2736) --- utbot-cli-js/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utbot-cli-js/Dockerfile b/utbot-cli-js/Dockerfile index 6eb099837d..3dcc611e25 100644 --- a/utbot-cli-js/Dockerfile +++ b/utbot-cli-js/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update \ && apt-get install -y -q --no-install-recommends \ curl \ && curl -sL https://deb.nodesource.com/setup_18.x -o nodesource_setup.sh \ - && /bin/sh nodesource_setup.sh \ + && /bin/bash nodesource_setup.sh \ && apt-get install -y -q --no-install-recommends \ nodejs \ && rm -rf /var/lib/apt/lists/* From 228072f78c12810311622e20d6e18e23a12a24ea Mon Sep 17 00:00:00 2001 From: Andrew Polyakov <41348100+AndrewPolyakov1@users.noreply.github.com> Date: Mon, 3 Jun 2024 11:31:24 +0300 Subject: [PATCH 3/5] Added NumPy support for utbot-python (#2742) --- .../utbot/cli/language/python/TestWriter.kt | 3 +- .../main/python/utbot_executor/pyproject.toml | 2 +- .../deep_serialization/deep_serialization.py | 1 + .../deep_serialization/json_converter.py | 58 +++++++++++++- .../deep_serialization/memory_objects.py | 63 ++++++++++++--- .../deep_serialization/utils.py | 18 +++-- .../utbot_executor/utbot_executor/executor.py | 28 ++++--- .../utbot_executor/memory_compressor.py | 10 ++- .../src/main/resources/utbot_executor_version | 2 +- .../samples/samples/numpy/example_gauss.py | 71 +++++++++++++++++ .../samples/numpy/example_linear_algebra.py | 24 ++++++ .../samples/samples/numpy/example_matrices.py | 37 +++++++++ .../samples/numpy/example_matrix_rank.py | 76 +++++++++++++++++++ .../samples/samples/numpy/example_norm.py | 23 ++++++ .../samples/samples/numpy/example_simple.py | 7 ++ .../python/engine/fuzzing/FuzzingEngine.kt | 2 +- .../ExecutionResultDeserializer.kt | 1 + .../serialization/PythonObjectParser.kt | 33 ++++++++ .../python/framework/api/python/PythonTree.kt | 25 ++++++ .../api/python/util/PythonIdUtils.kt | 3 +- .../codegen/model/PythonCodeGenerator.kt | 14 +++- .../tree/PythonCgVariableConstructor.kt | 9 +++ .../constructor/visitor/CgPythonRenderer.kt | 19 ++++- .../constructor/visitor/CgPythonVisitor.kt | 2 + .../codegen/model/tree/CgPythonElement.kt | 14 ++++ .../org/utbot/python/fuzzing/PythonApi.kt | 3 +- .../fuzzing/provider/IntValueProvider.kt | 8 +- .../fuzzing/provider/NDArrayValueProvider.kt | 73 ++++++++++++++++++ .../fuzzing/provider/ReduceValueProvider.kt | 3 + .../inference/baseline/BaselineAlgorithm.kt | 6 +- 30 files changed, 595 insertions(+), 43 deletions(-) create mode 100644 utbot-python/samples/samples/numpy/example_gauss.py create mode 100644 utbot-python/samples/samples/numpy/example_linear_algebra.py create mode 100644 utbot-python/samples/samples/numpy/example_matrices.py create mode 100644 utbot-python/samples/samples/numpy/example_matrix_rank.py create mode 100644 utbot-python/samples/samples/numpy/example_norm.py create mode 100644 utbot-python/samples/samples/numpy/example_simple.py create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NDArrayValueProvider.kt diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/TestWriter.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/TestWriter.kt index b345e9ea19..9857fdbe3e 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/TestWriter.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/TestWriter.kt @@ -9,7 +9,8 @@ class TestWriter { fun generateTestCode(): String { val (importLines, code) = testCode.fold(mutableListOf() to StringBuilder()) { acc, s -> - val lines = s.split(System.lineSeparator()) +// val lines = s.split(System.lineSeparator()) + val lines = s.split("(\\r\\n|\\r|\\n)".toRegex()) val firstClassIndex = lines.indexOfFirst { it.startsWith("class") } lines.take(firstClassIndex).forEach { line -> if (line !in acc.first) acc.first.add(line) } lines.drop(firstClassIndex).forEach { line -> acc.second.append(line + System.lineSeparator()) } diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 49dfa94278..d1d5929c10 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.19" +version = "1.10.0" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/deep_serialization.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/deep_serialization.py index 2d0a506c97..7e6506fd9f 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/deep_serialization.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/deep_serialization.py @@ -50,6 +50,7 @@ def serialize_objects_dump(objs: List[Any], clear_visited: bool = False) -> Tupl serializer.write_object_to_memory(obj) for obj in objs ] + return ids, serializer.memory, serialize_memory_dump(serializer.memory) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py index 625b26af0f..e6dcc1fae1 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py @@ -11,9 +11,14 @@ ListMemoryObject, DictMemoryObject, ReduceMemoryObject, - MemoryDump, IteratorMemoryObject, + MemoryDump, IteratorMemoryObject, NdarrayMemoryObject, ) from utbot_executor.deep_serialization.utils import PythonId, TypeInfo +try: + import numpy as np +except ImportError: + import sys + print("numpy is not installed", file=sys.stderr) class MemoryObjectEncoder(json.JSONEncoder): @@ -27,6 +32,10 @@ def default(self, o): } if isinstance(o, ReprMemoryObject): base_json["value"] = o.value + elif isinstance(o, NdarrayMemoryObject): + base_json["items"] = o.items + base_json["comparable"] = True + base_json["dimensions"] = o.dimensions elif isinstance(o, (ListMemoryObject, DictMemoryObject)): base_json["items"] = o.items elif isinstance(o, IteratorMemoryObject): @@ -53,6 +62,10 @@ def default(self, o): "kind": o.kind, "module": o.module, } + if isinstance(o, np.ndarray): + raise NotImplementedError("np.ndarray is not supported") + if isinstance(o, np.bool_): + return bool(o) return json.JSONEncoder.default(self, o) @@ -75,6 +88,17 @@ def as_reduce_object(dct: Dict) -> Union[MemoryObject, Dict]: ) obj.comparable = dct["comparable"] return obj + + if dct["strategy"] == "ndarray": + obj = NdarrayMemoryObject.__new__(NdarrayMemoryObject) + obj.items = dct["items"] + obj.typeinfo = TypeInfo( + kind=dct["typeinfo"]["kind"], module=dct["typeinfo"]["module"] + ) + obj.comparable = dct["comparable"] + obj.dimensions = dct["dimensions"] + return obj + if dct["strategy"] == "dict": obj = DictMemoryObject.__new__(DictMemoryObject) obj.items = dct["items"] @@ -138,6 +162,11 @@ def reload_id(self) -> MemoryDump: new_memory_object.items = [ self.dump_id_to_real_id[id_] for id_ in new_memory_object.items ] + elif isinstance(new_memory_object, NdarrayMemoryObject): + new_memory_object.items = [ + self.dump_id_to_real_id[id_] for id_ in new_memory_object.items + ] + new_memory_object.dimensions = obj.dimensions elif isinstance(new_memory_object, IteratorMemoryObject): new_memory_object.items = [ self.dump_id_to_real_id[id_] for id_ in new_memory_object.items @@ -198,6 +227,27 @@ def load_object(self, python_id: PythonId) -> object: for item in dump_object.items: real_object.append(self.load_object(item)) + + elif isinstance(dump_object, NdarrayMemoryObject): + real_object = [] + + id_ = PythonId(str(id(real_object))) + self.dump_id_to_real_id[python_id] = id_ + self.memory[id_] = real_object + + temp_list = [] + for item in dump_object.items: + temp_list.append(self.load_object(item)) + + dt = np.dtype(type(temp_list[0]) if len(temp_list) > 0 else np.int64) + temp_list = np.array(temp_list, dtype=dt) + + real_object = np.ndarray( + shape=dump_object.dimensions, + dtype=dt, + buffer=temp_list + ) + elif isinstance(dump_object, DictMemoryObject): real_object = {} @@ -250,7 +300,7 @@ def load_object(self, python_id: PythonId) -> object: for key, dictitem in dictitems.items(): real_object[key] = dictitem else: - raise TypeError(f"Invalid type {dump_object}") + raise TypeError(f"Invalid type {dump_object}, type: {type(dump_object)}") id_ = PythonId(str(id(real_object))) self.dump_id_to_real_id[python_id] = id_ @@ -279,6 +329,10 @@ def main(): "builtins.tuple", "builtins.bytes", "builtins.type", + "numpy.ndarray" ] ) print(loader.load_object(PythonId("140239390887040"))) + +if __name__ == '__main__': + main() diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py index 632c2c0dab..2d2e15a03c 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py @@ -8,6 +8,11 @@ import typing from itertools import zip_longest from typing import Any, Callable, Dict, List, Optional, Set, Type, Iterable +try: + import numpy as np +except ImportError: + import sys + print("numpy is not installed", file=sys.stderr) from utbot_executor.deep_serialization.config import PICKLE_PROTO from utbot_executor.deep_serialization.iterator_wrapper import IteratorWrapper @@ -41,7 +46,7 @@ def __init__(self, obj: object) -> None: self.id_ = PythonId(str(id(self.obj))) def _initialize( - self, deserialized_obj: object = None, comparable: bool = True + self, deserialized_obj: object = None, comparable: bool = True ) -> None: self.deserialized_obj = deserialized_obj self.comparable = comparable @@ -111,14 +116,42 @@ def initialize(self) -> None: elif self.typeinfo.fullname == "builtins.set": deserialized_obj = set(deserialized_obj) + comparable = all(serializer.get_by_id(elem).comparable for elem in self.items) super()._initialize(deserialized_obj, comparable) +class NdarrayMemoryObject(MemoryObject): + strategy: str = "ndarray" + items: List[PythonId] = [] + dimensions: List[int] = [] + + def __init__(self, ndarray_object: object) -> None: + self.items: List[PythonId] = [] + super().__init__(ndarray_object) + + def initialize(self) -> None: + serializer = PythonSerializer() + self.deserialized_obj = [] # for recursive collections + self.comparable = False # for recursive collections + + temp_object = self.obj.copy().flatten() + + self.dimensions = self.obj.shape + if temp_object.shape != (0, ): + for elem in temp_object: + elem_id = serializer.write_object_to_memory(elem) + self.items.append(elem_id) + self.deserialized_obj.append(serializer[elem_id]) + + deserialized_obj = self.deserialized_obj + comparable = all(serializer.get_by_id(elem).comparable for elem in self.items) if self.deserialized_obj != [] else True + super()._initialize(deserialized_obj, comparable) + def __repr__(self) -> str: if hasattr(self, "obj"): return str(self.obj) - return f"{self.typeinfo.kind}{self.items}" + return f"{self.typeinfo.kind}{self.items}{self.dimensions}" class DictMemoryObject(MemoryObject): @@ -264,10 +297,10 @@ def constructor_builder(self) -> typing.Tuple[typing.Any, typing.Callable]: is_reconstructor = constructor_kind.qualname == "copyreg._reconstructor" is_reduce_user_type = ( - len(self.reduce_value[1]) == 3 - and isinstance(self.reduce_value[1][0], type(self.obj)) - and self.reduce_value[1][1] is object - and self.reduce_value[1][2] is None + len(self.reduce_value[1]) == 3 + and isinstance(self.reduce_value[1][0], type(self.obj)) + and self.reduce_value[1][1] is object + and self.reduce_value[1][2] is None ) is_reduce_ex_user_type = len(self.reduce_value[1]) == 1 and isinstance( self.reduce_value[1][0], type(self.obj) @@ -294,8 +327,8 @@ def constructor_builder(self) -> typing.Tuple[typing.Any, typing.Callable]: len(inspect.signature(init_method).parameters), ) if ( - not init_from_object - and len(inspect.signature(init_method).parameters) == 1 + not init_from_object + and len(inspect.signature(init_method).parameters) == 1 ) or init_from_object: logging.debug("init with one argument! %s", init_method) constructor_arguments = [] @@ -317,9 +350,9 @@ def constructor_builder(self) -> typing.Tuple[typing.Any, typing.Callable]: if is_reconstructor and is_user_type: constructor_arguments = self.reduce_value[1] if ( - len(constructor_arguments) == 3 - and constructor_arguments[-1] is None - and constructor_arguments[-2] == object + len(constructor_arguments) == 3 + and constructor_arguments[-1] is None + and constructor_arguments[-2] == object ): del constructor_arguments[1:] callable_constructor = object.__new__ @@ -392,6 +425,12 @@ def get_serializer(obj: object) -> Optional[Type[MemoryObject]]: return ListMemoryObject return None +class NdarrayMemoryObjectProvider(MemoryObjectProvider): + @staticmethod + def get_serializer(obj: object) -> Optional[Type[MemoryObject]]: + if type(obj) == np.ndarray: + return NdarrayMemoryObject + return None class DictMemoryObjectProvider(MemoryObjectProvider): @staticmethod @@ -425,6 +464,7 @@ def get_serializer(obj: object) -> Optional[Type[MemoryObject]]: return None + class ReprMemoryObjectProvider(MemoryObjectProvider): @staticmethod def get_serializer(obj: object) -> Optional[Type[MemoryObject]]: @@ -450,6 +490,7 @@ class PythonSerializer: visited: Set[PythonId] = set() providers: List[MemoryObjectProvider] = [ + NdarrayMemoryObjectProvider, ListMemoryObjectProvider, DictMemoryObjectProvider, IteratorMemoryObjectProvider, diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/utils.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/utils.py index e1689e594e..55190496e2 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/utils.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/utils.py @@ -95,6 +95,8 @@ def get_constructor_info(constructor: object, obj: object) -> TypeInfo: def has_reduce(py_object: object) -> bool: + if get_kind(py_object).module == "numpy": + return False reduce = getattr(py_object, "__reduce__", None) if reduce is None: return False @@ -161,6 +163,10 @@ def check_eval(py_object: object) -> bool: except Exception: return False +try: + import numpy as np +except ImportError: + pass def has_repr(py_object: object) -> bool: reprable_types = [ @@ -171,11 +177,13 @@ def has_repr(py_object: object) -> bool: bytes, bytearray, str, - # tuple, - # list, - # dict, - # set, - # frozenset, + np.int64, + np.int32, + np.int16, + np.int8, + np.float32, + np.float16, + np.float64, type, ] if type(py_object) in reprable_types: diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index ecc5eedf88..6aa3cbe688 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -44,7 +44,7 @@ def _update_states( - init_memory_dump: MemoryDump, before_memory_dump: MemoryDump + init_memory_dump: MemoryDump, before_memory_dump: MemoryDump ) -> MemoryDump: for id_, obj in before_memory_dump.objects.items(): if id_ in init_memory_dump.objects: @@ -87,8 +87,9 @@ def add_imports(imports: Iterable[str]): globals()[submodule_name] = importlib.import_module( submodule_name ) - except ModuleNotFoundError: + except ModuleNotFoundError as e: logging.warning("Import submodule %s failed", submodule_name) + raise e logging.debug("Submodule #%d: OK", i) def run_function(self, request: ExecutionRequest) -> ExecutionResponse: @@ -115,6 +116,9 @@ def run_reduce_function(self, request: ExecutionRequest) -> ExecutionResponse: self.add_imports(request.imports) loader.add_syspaths(request.syspaths) loader.add_imports(request.imports) + except ModuleNotFoundError as _: + logging.debug("Error \n%s", traceback.format_exc()) + return ExecutionFailResponse("fail", traceback.format_exc()) except Exception as _: logging.debug("Error \n%s", traceback.format_exc()) return ExecutionFailResponse("fail", traceback.format_exc()) @@ -246,9 +250,9 @@ def run_pickle_function(self, request: ExecutionRequest) -> ExecutionResponse: def _serialize_state( - args: List[Any], - kwargs: Dict[str, Any], - result: Any = None, + args: List[Any], + kwargs: Dict[str, Any], + result: Any = None, ) -> Tuple[List[PythonId], Dict[str, PythonId], PythonId, MemoryDump, str]: """Serialize objects from args, kwargs and result. @@ -267,13 +271,13 @@ def _serialize_state( def _run_calculate_function_value( - function: types.FunctionType, - args: List[Any], - kwargs: Dict[str, Any], - fullpath: str, - state_init: str, - tracer: UtTracer, - state_assertions: bool, + function: types.FunctionType, + args: List[Any], + kwargs: Dict[str, Any], + fullpath: str, + state_init: str, + tracer: UtTracer, + state_assertions: bool, ) -> ExecutionResponse: """Calculate function evaluation result. diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/memory_compressor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/memory_compressor.py index 8d3ccb5fe7..724d801dc8 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/memory_compressor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/memory_compressor.py @@ -3,6 +3,11 @@ from utbot_executor.deep_serialization.memory_objects import MemoryDump from utbot_executor.deep_serialization.utils import PythonId +try: + import numpy as np +except ImportError: + import sys + print("numpy is not installed", file=sys.stderr) def compress_memory( ids: typing.List[PythonId], @@ -13,7 +18,10 @@ def compress_memory( for id_ in ids: if id_ in state_before.objects and id_ in state_after.objects: try: - if state_before.objects[id_].obj != state_after.objects[id_].obj: + if isinstance(state_before.objects[id_].obj, np.ndarray) or isinstance(state_after.objects[id_].obj, np.ndarray): + if (state_before.objects[id_].obj != state_after.objects[id_].obj).all(): + diff_ids.append(id_) + elif state_before.objects[id_].obj != state_after.objects[id_].obj: diff_ids.append(id_) except AttributeError as _: pass diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index c503f0d9da..ed21137ee1 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.19 \ No newline at end of file +1.10.0 \ No newline at end of file diff --git a/utbot-python/samples/samples/numpy/example_gauss.py b/utbot-python/samples/samples/numpy/example_gauss.py new file mode 100644 index 0000000000..067c97e9b5 --- /dev/null +++ b/utbot-python/samples/samples/numpy/example_gauss.py @@ -0,0 +1,71 @@ +import numpy as np + + +def solve_linear_system(matrix: np.ndarray) -> np.ndarray: + """ + Solve a linear system of equations using Gaussian elimination with partial pivoting + + Args: + - matrix: Coefficient matrix with the last column representing the constants. + + Returns: + - Solution vector. + + Raises: + - ValueError: If the matrix is not correct (i.e., singular). + + https://courses.engr.illinois.edu/cs357/su2013/lect.htm Lecture 7 + + Example: + >>> A = np.array([[2, 1, -1], [-3, -1, 2], [-2, 1, 2]], dtype=float) + >>> B = np.array([8, -11, -3], dtype=float) + >>> solution = solve_linear_system(np.column_stack((A, B))) + >>> np.allclose(solution, np.array([2., 3., -1.])) + True + >>> solve_linear_system(np.array([[0, 0], [0, 0]], dtype=float)) + array([nan, nan]) + """ + ab = np.copy(matrix) + num_of_rows = ab.shape[0] + num_of_columns = ab.shape[1] - 1 + x_lst: list[float] = [] + + for column_num in range(num_of_rows): + for i in range(column_num, num_of_columns): + if abs(ab[i][column_num]) > abs(ab[column_num][column_num]): + ab[[column_num, i]] = ab[[i, column_num]] + if ab[column_num, column_num] == 0.0: + raise ValueError("Matrix is not correct") + else: + pass + if column_num != 0: + for i in range(column_num, num_of_rows): + ab[i, :] -= ( + ab[i, column_num - 1] + / ab[column_num - 1, column_num - 1] + * ab[column_num - 1, :] + ) + + for column_num in range(num_of_rows): + for i in range(column_num, num_of_columns): + if abs(ab[i][column_num]) > abs(ab[column_num][column_num]): + ab[[column_num, i]] = ab[[i, column_num]] + if ab[column_num, column_num] == 0.0: + raise ValueError("Matrix is not correct") + else: + pass + if column_num != 0: + for i in range(column_num, num_of_rows): + ab[i, :] -= ( + ab[i, column_num - 1] + / ab[column_num - 1, column_num - 1] + * ab[column_num - 1, :] + ) + + for column_num in range(num_of_rows - 1, -1, -1): + x = ab[column_num, -1] / ab[column_num, column_num] + x_lst.insert(0, x) + for i in range(column_num - 1, -1, -1): + ab[i, -1] -= ab[i, column_num] * x + + return np.asarray(x_lst) \ No newline at end of file diff --git a/utbot-python/samples/samples/numpy/example_linear_algebra.py b/utbot-python/samples/samples/numpy/example_linear_algebra.py new file mode 100644 index 0000000000..b376fc4e73 --- /dev/null +++ b/utbot-python/samples/samples/numpy/example_linear_algebra.py @@ -0,0 +1,24 @@ +import numpy as np + + +def lower_upper_decomposition(table: np.ndarray) -> tuple[np.ndarray, np.ndarray]: + rows, columns = np.shape(table) + if rows != columns: + msg = ( + "'table' has to be of square shaped array but got a " + f"{rows}x{columns} array:\n{table}" + ) + raise ValueError(msg) + lower = np.zeros((rows, columns)) + upper = np.zeros((rows, columns)) + for i in range(columns): + for j in range(i): + total = np.sum(lower[i, :i] * upper[:i, j]) + if upper[j][j] == 0: + raise ArithmeticError("No LU decomposition exists") + lower[i][j] = (table[i][j] - total) / upper[j][j] + lower[i][i] = 1 + for j in range(i, columns): + total = np.sum(lower[i, :i] * upper[:i, j]) + upper[i][j] = table[i][j] - total + return lower, upper diff --git a/utbot-python/samples/samples/numpy/example_matrices.py b/utbot-python/samples/samples/numpy/example_matrices.py new file mode 100644 index 0000000000..0e3205f91e --- /dev/null +++ b/utbot-python/samples/samples/numpy/example_matrices.py @@ -0,0 +1,37 @@ +import numpy as np + + +def _is_matrix_spd(matrix: np.ndarray) -> bool: + """ + Returns True if input matrix is symmetric positive definite. + Returns False otherwise. + + For a matrix to be SPD, all eigenvalues must be positive. + + >>> import numpy as np + >>> matrix = np.array([ + ... [4.12401784, -5.01453636, -0.63865857], + ... [-5.01453636, 12.33347422, -3.40493586], + ... [-0.63865857, -3.40493586, 5.78591885]]) + >>> _is_matrix_spd(matrix) + True + >>> matrix = np.array([ + ... [0.34634879, 1.96165514, 2.18277744], + ... [0.74074469, -1.19648894, -1.34223498], + ... [-0.7687067 , 0.06018373, -1.16315631]]) + >>> _is_matrix_spd(matrix) + False + """ + # Ensure matrix is square. + assert np.shape(matrix)[0] == np.shape(matrix)[1] + + # If matrix not symmetric, exit right away. + if np.allclose(matrix, matrix.T) is False: + return False + + # Get eigenvalues and eignevectors for a symmetric matrix. + eigen_values, _ = np.linalg.eigh(matrix) + + # Check sign of all eigenvalues. + # np.all returns a value of type np.bool_ + return bool(np.all(eigen_values > 0)) \ No newline at end of file diff --git a/utbot-python/samples/samples/numpy/example_matrix_rank.py b/utbot-python/samples/samples/numpy/example_matrix_rank.py new file mode 100644 index 0000000000..21bdb552a7 --- /dev/null +++ b/utbot-python/samples/samples/numpy/example_matrix_rank.py @@ -0,0 +1,76 @@ +def rank_of_matrix(matrix: list[list[int | float]]) -> int: + """ + Finds the rank of a matrix. + Args: + matrix: The matrix as a list of lists. + Returns: + The rank of the matrix. + Example: + >>> matrix1 = [[1, 2, 3], + ... [4, 5, 6], + ... [7, 8, 9]] + >>> rank_of_matrix(matrix1) + 2 + >>> matrix2 = [[1, 0, 0], + ... [0, 1, 0], + ... [0, 0, 0]] + >>> rank_of_matrix(matrix2) + 2 + >>> matrix3 = [[1, 2, 3, 4], + ... [5, 6, 7, 8], + ... [9, 10, 11, 12]] + >>> rank_of_matrix(matrix3) + 2 + >>> rank_of_matrix([[2,3,-1,-1], + ... [1,-1,-2,4], + ... [3,1,3,-2], + ... [6,3,0,-7]]) + 4 + >>> rank_of_matrix([[2,1,-3,-6], + ... [3,-3,1,2], + ... [1,1,1,2]]) + 3 + >>> rank_of_matrix([[2,-1,0], + ... [1,3,4], + ... [4,1,-3]]) + 3 + >>> rank_of_matrix([[3,2,1], + ... [-6,-4,-2]]) + 1 + >>> rank_of_matrix([[],[]]) + 0 + >>> rank_of_matrix([[1]]) + 1 + >>> rank_of_matrix([[]]) + 0 + """ + + rows = len(matrix) + columns = len(matrix[0]) + rank = min(rows, columns) + + for row in range(rank): + # Check if diagonal element is not zero + if matrix[row][row] != 0: + # Eliminate all the elements below the diagonal + for col in range(row + 1, rows): + multiplier = matrix[col][row] / matrix[row][row] + for i in range(row, columns): + matrix[col][i] -= multiplier * matrix[row][i] + else: + # Find a non-zero diagonal element to swap rows + reduce = True + for i in range(row + 1, rows): + if matrix[i][row] != 0: + matrix[row], matrix[i] = matrix[i], matrix[row] + reduce = False + break + if reduce: + rank -= 1 + for i in range(rows): + matrix[i][row] = matrix[i][rank] + + # Reduce the row pointer by one to stay on the same row + row -= 1 + + return rank \ No newline at end of file diff --git a/utbot-python/samples/samples/numpy/example_norm.py b/utbot-python/samples/samples/numpy/example_norm.py new file mode 100644 index 0000000000..61b121bfec --- /dev/null +++ b/utbot-python/samples/samples/numpy/example_norm.py @@ -0,0 +1,23 @@ +import numpy as np +from numpy import ndarray + + +def norm_squared(vector: ndarray) -> float: + """ + Return the squared second norm of vector + norm_squared(v) = sum(x * x for x in v) + + Args: + vector (ndarray): input vector + + Returns: + float: squared second norm of vector + + >>> norm_squared([1, 2]) + 5 + >>> norm_squared(np.asarray([1, 2])) + 5 + >>> norm_squared([0, 0]) + 0 + """ + return np.dot(vector, vector) \ No newline at end of file diff --git a/utbot-python/samples/samples/numpy/example_simple.py b/utbot-python/samples/samples/numpy/example_simple.py new file mode 100644 index 0000000000..a5e2ef18c1 --- /dev/null +++ b/utbot-python/samples/samples/numpy/example_simple.py @@ -0,0 +1,7 @@ +import numpy as np + + +def function_to_test_default(a: np.ndarray): + if a.shape == (2, 1,): + return 2 + return a.shape diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index bbe1f8a641..3d0bc9fdbe 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -315,7 +315,7 @@ class FuzzingEngine( Throwable(stackTraceMessage) ) description.limitManager.addInvalidExecution() - logger.debug(stackTraceMessage) + logger.warn(stackTraceMessage) PythonExecutionResult(InvalidExecution(utError), PythonFeedback(control = Control.PASS)) } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt index b37905b7f8..0815248c2e 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt @@ -19,6 +19,7 @@ object ExecutionResultDeserializer { .withSubtype(DictMemoryObject::class.java, "dict") .withSubtype(ReduceMemoryObject::class.java, "reduce") .withSubtype(IteratorMemoryObject::class.java, "iterator") + .withSubtype(NdarrayMemoryObject::class.java, "ndarray") ) .addLast(KotlinJsonAdapterFactory()) .build() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt index 5f7e9ed047..98a5d3adbe 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt @@ -15,6 +15,7 @@ object PythonObjectParser { .withSubtype(DictMemoryObject::class.java, "dict") .withSubtype(ReduceMemoryObject::class.java, "reduce") .withSubtype(IteratorMemoryObject::class.java, "iterator") + .withSubtype(NdarrayMemoryObject::class.java, "ndarray") ) .addLast(KotlinJsonAdapterFactory()) .build() @@ -101,6 +102,14 @@ class ReduceMemoryObject( val dictitems: String ) : MemoryObject(id, typeinfo, comparable) +class NdarrayMemoryObject( + id: String, + typeinfo: TypeInfo, + comparable: Boolean, + val items: List, + val dimensions: List +) : MemoryObject(id, typeinfo, comparable) + fun PythonTree.PythonTreeNode.toMemoryObject(memoryDump: MemoryDump, reload: Boolean = false): String { val id = this.id.toString() if (memoryDump.contains(id) && !reload) return id @@ -116,6 +125,13 @@ fun PythonTree.PythonTreeNode.toMemoryObject(memoryDump: MemoryDump, reload: Boo ) } + is PythonTree.NDArrayNode -> { // TODO: Optimize for ndarray + val items = this.items.entries + .map { it.value.toMemoryObject(memoryDump) } + val dimensions = this.dimensions + NdarrayMemoryObject(id, typeinfo, this.comparable, items, dimensions) // TODO: Ndarray to memory object + } + is PythonTree.ListNode -> { val draft = ListMemoryObject(id, typeinfo, this.comparable, emptyList()) memoryDump.addObject(draft) @@ -304,6 +320,23 @@ fun MemoryObject.toPythonTree( } prevObj } + + is NdarrayMemoryObject -> { + val draft = when (this.qualname) { + "numpy.ndarray" -> PythonTree.NDArrayNode(id, mutableMapOf(), this.dimensions) + else -> PythonTree.ListNode(id, mutableMapOf()) + } + visited[this.id] = draft + + items.mapIndexed { index, valueId -> + val value = memoryDump.getById(valueId).toPythonTree(memoryDump, visited) + when (draft) { + is PythonTree.NDArrayNode -> draft.items[index] = value + else -> {} + } + } + draft + } } obj.comparable = this.comparable return obj diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt index 58fa5a6c5a..20e378f07b 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt @@ -5,6 +5,7 @@ import org.utbot.python.framework.api.python.util.pythonDictClassId import org.utbot.python.framework.api.python.util.pythonFloatClassId import org.utbot.python.framework.api.python.util.pythonIntClassId import org.utbot.python.framework.api.python.util.pythonIteratorClassId +import org.utbot.python.framework.api.python.util.pythonNdarrayClassId import org.utbot.python.framework.api.python.util.pythonListClassId import org.utbot.python.framework.api.python.util.pythonNoneClassId import org.utbot.python.framework.api.python.util.pythonObjectClassId @@ -154,6 +155,30 @@ object PythonTree { else false } } + class NDArrayNode( + id: Long, + val items: MutableMap, + val dimensions: List + ) : PythonTreeNode(id, pythonNdarrayClassId) { + constructor(items: MutableMap, dimensions: List) : this(PythonIdGenerator.createId(), items, dimensions) + + override val children: List + get() = items.values.toList() + + override fun typeEquals(other: Any?): Boolean { + return if (other is NDArrayNode) + dimensions == other.dimensions && + children.zip(other.children).all { + it.first.typeEquals(it.second) + } + else false + } + + + override fun toString(): String { + return "ndarray${items.values}, shape: $dimensions" + } + } class DictNode( id: Long, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonIdUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonIdUtils.kt index 3338da5454..3ca45d7a96 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonIdUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonIdUtils.kt @@ -22,4 +22,5 @@ val pythonBytesClassId = PythonClassId("builtins.bytes") val pythonExceptionClassId = PythonClassId("builtins.Exception") val pythonIteratorClassId = PythonClassId("typing.Iterator") val pythonRePatternClassId = PythonClassId("re.Pattern") -val pythonStopIterationClassId = PythonClassId("builtins.StopIteration") \ No newline at end of file +val pythonStopIterationClassId = PythonClassId("builtins.StopIteration") +val pythonNdarrayClassId = PythonClassId("numpy.ndarray") \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt index e968129731..799fd2852d 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt @@ -107,8 +107,18 @@ class PythonCodeGenerator( imports.forEach { renderer.renderPythonImport(it) } val paramNames = method.argumentsNames - val parameters = paramNames.map { argument -> - "${argument}: ${methodAnnotations[argument]?.pythonTypeRepresentation() ?: pythonAnyType.pythonTypeRepresentation()}" + val parameters: List = paramNames.map { argument -> + if (methodAnnotations[argument]?.meta.toString() == "numpy.ndarray") { + val re = """, .*[^]]""".toRegex() + val type = re.find(methodAnnotations[argument]?.pythonTypeRepresentation().toString())?.value + val newAnnotation: String = + type?.let { + methodAnnotations[argument]?.pythonTypeRepresentation().toString() + .replace(it, ", ${pythonAnyType.pythonTypeRepresentation()}") + } ?: pythonAnyType.pythonTypeRepresentation() + "${argument}: $newAnnotation" + } else + "${argument}: ${methodAnnotations[argument]?.pythonTypeRepresentation() ?: pythonAnyType.pythonTypeRepresentation()}" } val functionPrefix = "__mypy_check" diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgVariableConstructor.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgVariableConstructor.kt index 9368be1c3e..7bf8676333 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgVariableConstructor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgVariableConstructor.kt @@ -26,11 +26,13 @@ import org.utbot.python.framework.codegen.model.tree.CgPythonDict import org.utbot.python.framework.codegen.model.tree.CgPythonIndex import org.utbot.python.framework.codegen.model.tree.CgPythonIterator import org.utbot.python.framework.codegen.model.tree.CgPythonList +import org.utbot.python.framework.codegen.model.tree.CgPythonNdarray import org.utbot.python.framework.codegen.model.tree.CgPythonRepr import org.utbot.python.framework.codegen.model.tree.CgPythonSet import org.utbot.python.framework.codegen.model.tree.CgPythonTree import org.utbot.python.framework.codegen.model.tree.CgPythonTuple + class PythonCgVariableConstructor(cgContext: CgContext) : CgVariableConstructor(cgContext) { private val nameGenerator = CgComponents.getNameGeneratorBy(context) override fun getOrCreateVariable(model: UtModel, name: String?): CgValue { @@ -74,6 +76,13 @@ class PythonCgVariableConstructor(cgContext: CgContext) : CgVariableConstructor( } } + is PythonTree.NDArrayNode -> { + val items = objectNode.items.values.map { pythonBuildObject(it) } + val shape = objectNode.dimensions + val type = objectNode.items.values.firstOrNull()?.type + Pair(CgPythonNdarray(items.map { it.first }, shape, type?:PythonClassId("int")), items.flatMap { it.second }) + } + is PythonTree.TupleNode -> { val items = objectNode.items.values.map { pythonBuildObject(it) } Pair(CgPythonTuple(items.map {it.first}), items.flatMap { it.second }) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonRenderer.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonRenderer.kt index b086403a91..47b0cc1437 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonRenderer.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonRenderer.kt @@ -71,6 +71,7 @@ import org.utbot.python.framework.codegen.model.tree.CgPythonFunctionCall import org.utbot.python.framework.codegen.model.tree.CgPythonIndex import org.utbot.python.framework.codegen.model.tree.CgPythonIterator import org.utbot.python.framework.codegen.model.tree.CgPythonList +import org.utbot.python.framework.codegen.model.tree.CgPythonNdarray import org.utbot.python.framework.codegen.model.tree.CgPythonNamedArgument import org.utbot.python.framework.codegen.model.tree.CgPythonRange import org.utbot.python.framework.codegen.model.tree.CgPythonRepr @@ -191,7 +192,7 @@ internal class CgPythonRenderer( println("\"\"\"") } - override fun visit(element: CgDocRegularStmt){ + override fun visit(element: CgDocRegularStmt) { if (element.isEmpty()) return println(element.stmt) @@ -559,6 +560,22 @@ internal class CgPythonRenderer( print("]") } + override fun visit(element: CgPythonNdarray) { + + print("numpy.ndarray(") + print("dtype=") + print(element.dtype.toString().removePrefix("builtins.")) + print(",") + print("shape=(") + + print(element.shape.joinToString(",") { it.toString() }) + print("), buffer=numpy.array([") + element.elements.renderSeparated() + print("]))") + + + } + override fun visit(element: CgPythonTuple) { if (element.elements.isEmpty()) { print("tuple()") diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonVisitor.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonVisitor.kt index 5be7245974..2dcc5b10e4 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonVisitor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonVisitor.kt @@ -15,6 +15,7 @@ import org.utbot.python.framework.codegen.model.tree.CgPythonTree import org.utbot.python.framework.codegen.model.tree.CgPythonTuple import org.utbot.python.framework.codegen.model.tree.CgPythonWith import org.utbot.python.framework.codegen.model.tree.CgPythonZip +import org.utbot.python.framework.codegen.model.tree.CgPythonNdarray interface CgPythonVisitor : CgVisitor { @@ -26,6 +27,7 @@ interface CgPythonVisitor : CgVisitor { fun visit(element: CgPythonDict): R fun visit(element: CgPythonTuple): R fun visit(element: CgPythonList): R + fun visit(element: CgPythonNdarray): R fun visit(element: CgPythonSet): R fun visit(element: CgPythonIterator): R fun visit(element: CgPythonTree): R diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/tree/CgPythonElement.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/tree/CgPythonElement.kt index 23be0e39a4..d8dadd090e 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/tree/CgPythonElement.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/tree/CgPythonElement.kt @@ -17,6 +17,7 @@ import org.utbot.python.framework.api.python.util.pythonListClassId import org.utbot.python.framework.api.python.util.pythonRangeClassId import org.utbot.python.framework.api.python.util.pythonSetClassId import org.utbot.python.framework.api.python.util.pythonTupleClassId +import org.utbot.python.framework.api.python.util.pythonNdarrayClassId import org.utbot.python.framework.codegen.model.constructor.visitor.CgPythonVisitor interface CgPythonElement : CgElement { @@ -37,6 +38,7 @@ interface CgPythonElement : CgElement { is CgPythonNamedArgument -> visitor.visit(element) is CgPythonIterator -> visitor.visit(element) is CgPythonZip -> visitor.visit(element) + is CgPythonNdarray -> visitor.visit(element) else -> throw IllegalArgumentException("Can not visit element of type ${element::class}") } } else { @@ -121,6 +123,15 @@ class CgPythonSet( override val type: PythonClassId = pythonSetClassId } +class CgPythonNdarray( + val elements: List, + val shape: List, + val dtype: PythonClassId +) : CgValue, CgPythonElement { + override val type: PythonClassId = pythonNdarrayClassId +} + + class CgPythonDict( val elements: Map ) : CgValue, CgPythonElement { @@ -145,3 +156,6 @@ class CgPythonNamedArgument( ) : CgValue, CgPythonElement { override val type: ClassId = value.type } + + + diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt index bf8f9e7b8d..50ca857d45 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt @@ -21,6 +21,7 @@ import org.utbot.python.fuzzing.provider.ComplexValueProvider import org.utbot.python.fuzzing.provider.ConstantValueProvider import org.utbot.python.fuzzing.provider.DictValueProvider import org.utbot.python.fuzzing.provider.FloatValueProvider +import org.utbot.python.fuzzing.provider.NDArrayValueProvider import org.utbot.python.fuzzing.provider.IntValueProvider import org.utbot.python.fuzzing.provider.IteratorValueProvider import org.utbot.python.fuzzing.provider.ListValueProvider @@ -140,6 +141,7 @@ fun pythonDefaultValueProviders(typeStorage: PythonTypeHintsStorage) = listOf( ConstantValueProvider, TypeAliasValueProvider, IteratorValueProvider, + NDArrayValueProvider(typeStorage), SubtypeValueProvider(typeStorage) ) @@ -180,7 +182,6 @@ class PythonFuzzing( override fun generate(description: PythonMethodDescription, type: FuzzedUtType): Sequence> { val providers = mutableSetOf>() - if (type.isAny()) { if (type.fuzzAny) { providers += generateAnyProviders(description, type) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IntValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IntValueProvider.kt index 3f4dd7e989..35c7371817 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IntValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IntValueProvider.kt @@ -17,6 +17,7 @@ import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.fuzzing.provider.utils.generateSummary import java.math.BigInteger import kotlin.random.Random +import org.utpython.types.pythonTypeName object IntValueProvider : PythonValueProvider { private val randomStubWithNoUsage = Random(0) @@ -43,7 +44,12 @@ object IntValueProvider : PythonValueProvider { } override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence> { - val bits = 128 + val isNDArray: Boolean = description.type.arguments.any { it.pythonTypeName() == "numpy.ndarray" } + val bits = if (isNDArray) { + 32 + } else { + 128 + } val integerConstants = getIntConstants(description.concreteValues) val modifiedConstants = integerConstants.flatMap { value -> listOf( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NDArrayValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NDArrayValueProvider.kt new file mode 100644 index 0000000000..6c6e8c5fb2 --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NDArrayValueProvider.kt @@ -0,0 +1,73 @@ +package org.utbot.python.fuzzing.provider + +import mu.KotlinLogging +import org.utbot.fuzzing.Routine +import org.utbot.fuzzing.Seed +import org.utbot.python.framework.api.python.PythonTree +import org.utbot.python.framework.api.python.util.pythonNdarrayClassId +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed +import org.utbot.python.fuzzing.PythonFuzzedValue +import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.fuzzing.PythonValueProvider +import org.utpython.types.* +import kotlin.math.abs + + +private val logger = KotlinLogging.logger {} +private const val SHAPE_SIZE = 3 +private const val MAX_SHAPE_DIGITS = 2 + +class NDArrayValueProvider( + private val typeStorage: PythonTypeHintsStorage +) : PythonValueProvider { + + override fun accept(type: FuzzedUtType): Boolean { + return type.pythonTypeName() == pythonNdarrayClassId.canonicalName + } + + @Suppress("UNCHECKED_CAST") + override fun generate( + description: PythonMethodDescription, type: FuzzedUtType + ) = sequence { + val param = type.utType.pythonAnnotationParameters() + val intType = typeStorage.pythonInt + val listType = typeStorage.pythonList + + yield(Seed.Recursive( + construct = Routine.Create( + listOf( + listType + .pythonDescription() + .createTypeWithNewAnnotationParameters(listType, listOf(intType)).toFuzzed() + ) + ) { + PythonFuzzedValue( + PythonTree.NDArrayNode( + emptyMap().toMutableMap(), + ((it.first().tree as PythonTree.ListNode).items as Map).values.map { node -> + abs(node.repr.take(MAX_SHAPE_DIGITS).toInt()) % 10 + }.take(SHAPE_SIZE).let { self -> + if (self.fold(1, Int::times) == 0){ + listOf(0) + } else { + self + } + } // TODO: Rethink logic + ), "%var% = ${type.pythonTypeRepresentation()}" + ) + }, + modify = sequence { + yield(Routine.Call((0 until 1000000).map { param[1] }.toFuzzed()) { instance, arguments -> + val obj = instance.tree as PythonTree.NDArrayNode + (0 until obj.dimensions.fold(1, Int::times)).map { + obj.items[it] = arguments[it].tree + } + }) + }, + empty = Routine.Empty { PythonFuzzedValue(PythonTree.FakeNode) } + ) + + ) + } +} \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt index 19b708a886..ee5e25899f 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt @@ -5,6 +5,7 @@ import org.utbot.fuzzing.Seed import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonBoolClassId +import org.utbot.python.framework.api.python.util.pythonNdarrayClassId import org.utbot.python.framework.api.python.util.pythonBytearrayClassId import org.utbot.python.framework.api.python.util.pythonBytesClassId import org.utbot.python.framework.api.python.util.pythonComplexClassId @@ -56,6 +57,8 @@ object ReduceValueProvider : PythonValueProvider { pythonStrClassId.canonicalName, pythonBoolClassId.canonicalName, pythonObjectClassId.canonicalName, + pythonNdarrayClassId.canonicalName + ) override fun accept(type: FuzzedUtType): Boolean { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt index 6058a6dd56..1c709c3150 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt @@ -24,6 +24,7 @@ import org.utbot.python.newtyping.utils.weightedRandom import org.utbot.python.utils.TemporaryFileManager import java.io.File import kotlin.random.Random +import org.utpython.types.pythonTypeName private val EDGES_TO_LINK = listOf( EdgeSource.Identification, @@ -76,7 +77,7 @@ class BaselineAlgorithm( private val checkedSignatures: MutableSet = mutableSetOf() - private fun getRandomType(): UtType? { + private fun getRandomType(): UtType? { // TODO: Remove random type when ndarray val weights = states.map { 1.0 / (it.anyNodes.size * it.anyNodes.size + 1) } val state = weightedRandom(states, weights, random) val newState = expandState(state, storage, state.anyNodes.map { mixtureType }) @@ -109,7 +110,8 @@ class BaselineAlgorithm( val laudedType = getLaudedType() if (laudedType != null) return laudedType } - val randomType = getRandomType() + val isNDArray = pythonMethod.method.methodType.arguments.any{ it.pythonTypeName() == "numpy.ndarray" } + val randomType = if (!isNDArray) { getRandomType() } else { null } if (randomType != null) return randomType } From d06fb76322186b954c28425fb8fb6caa1d164564 Mon Sep 17 00:00:00 2001 From: Nikita Stroganov <54814796+mmvpm@users.noreply.github.com> Date: Thu, 31 Jul 2025 15:12:20 +0300 Subject: [PATCH 4/5] Add default taint configuration file (#2280) --- .../src/main/resources/taint/config.yaml | 121 +++++++++++++++++- 1 file changed, 117 insertions(+), 4 deletions(-) diff --git a/utbot-framework/src/main/resources/taint/config.yaml b/utbot-framework/src/main/resources/taint/config.yaml index 428fda9d5a..bc708767de 100644 --- a/utbot-framework/src/main/resources/taint/config.yaml +++ b/utbot-framework/src/main/resources/taint/config.yaml @@ -2,10 +2,123 @@ sources: - java.util.Scanner.next: add-to: return marks: user-input + - java.io.BufferedReader.readLine: + add-to: return + marks: user-input + - javax.servlet.http.HttpServletRequest.getParameter: + add-to: return + marks: user-input + - java.util.Properties.getProperty: + add-to: return + marks: user-input + - java.sql.ResultSet.getString: + add-to: return + marks: user-input + - javax.servlet.http.HttpServletRequest.getQueryString: + add-to: return + marks: user-input -sinks: - - java.lang.RuntimeException.: - check: arg1 - marks: [] +cleaners: + - java.lang.String.isEmpty: + remove-from: this + marks: [ ] + conditions: + return: true + +passes: + - java.lang.String.getBytes: + get-from: this + add-to: return + marks: [ ] + conditions: + this: { not: "" } + - java.lang.String.split: + get-from: this + add-to: return + marks: [ ] + conditions: + this: { not: "" } + - java.lang.String.concat: + get-from: this + add-to: return + marks: [ ] + conditions: + this: { not: "" } + - java.lang.String.concat: + get-from: arg1 + add-to: return + marks: [ ] conditions: arg1: { not: "" } + - java.lang.StringBuilder.append: + get-from: arg1 + add-to: this + marks: [ ] + conditions: + arg1: { not: "" } + - java.lang.StringBuilder.toString: + get-from: this + add-to: return + marks: [ ] + + - java.sql.Connection.prepareStatement: + get-from: arg1 + add-to: [ this, return ] + marks: [ ] + - java.sql.PreparedStatement.setString: + get-from: arg2 + add-to: this + marks: [ ] + + - java.sql.Statement.addBatch: + get-from: arg1 + add-to: this + marks: [ ] + + - java.io.ByteArrayOutputStream.writeData: + get-from: arg1 + add-to: this + marks: [ ] + - java.io.ByteArrayOutputStream.toByteArray: + get-from: this + add-to: return + marks: [ ] + - java.io.ByteArrayInputStream.: + get-from: arg1 + add-to: [ this, return ] + marks: [ ] + - java.io.ObjectInputStream.: + get-from: arg1 + add-to: [ this, return ] + marks: [ ] + - java.io.ObjectInputStream.readObject: + get-from: this + add-to: return + marks: [ ] + +sinks: + - java.sql.Statement.execute: + check: arg1 + marks: user-input + - java.sql.Statement.executeUpdate: + check: arg1 + marks: user-input + - java.sql.Statement.executeBatch: + check: this + marks: user-input + - java.sql.Statement.executeQuery: + check: arg1 + marks: user-input + + - java.sql.PreparedStatement.execute: + check: this + marks: user-input + - java.sql.PreparedStatement.executeUpdate: + check: this + marks: user-input + - java.sql.PreparedStatement.executeBatch: + check: this + marks: user-input + - java.sql.PreparedStatement.executeQuery: + check: this + marks: user-input From 73bd2b2aed09ba94e7cbd875c662f78db10c2da8 Mon Sep 17 00:00:00 2001 From: ZouPanPan Date: Thu, 31 Jul 2025 20:18:19 +0800 Subject: [PATCH 5/5] add dependbot and modify the github token permission (#2747) * Create dependabot.yml * modify token permission --- .github/dependabot.yml | 13 +++++++++++++ .../workflows/build-and-run-tests-from-branch.yml | 5 +++++ .github/workflows/build-and-run-tests.yml | 2 ++ .github/workflows/collect-statistics.yml | 2 ++ .github/workflows/issue-to-project.yml | 2 ++ .github/workflows/night-statistics-monitoring.yml | 2 ++ .github/workflows/public-rider-plugin.yml | 2 ++ .github/workflows/publish-cli-from-branch.yml | 2 ++ .github/workflows/publish-cli-image-from-branch.yml | 2 ++ .github/workflows/publish-on-github-packages.yml | 2 ++ .github/workflows/publish-plugin-from-branch.yml | 2 ++ .github/workflows/run-chosen-tests-from-branch.yml | 2 ++ 12 files changed, 38 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..90ca761682 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,13 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "gradle" # See documentation for possible values + directories: + - "/utbot-intellij" + - "/utbot-framework" + schedule: + interval: "weekly" diff --git a/.github/workflows/build-and-run-tests-from-branch.yml b/.github/workflows/build-and-run-tests-from-branch.yml index 0d7155d9fb..f93be3be31 100644 --- a/.github/workflows/build-and-run-tests-from-branch.yml +++ b/.github/workflows/build-and-run-tests-from-branch.yml @@ -1,5 +1,7 @@ name: "[M] UTBot Java: build and run tests" +permissions: read-all + on: workflow_dispatch: inputs: @@ -42,6 +44,7 @@ env: jobs: prepare-matrices: + permissions: read-all runs-on: ubuntu-latest # Outputs are used for passing data to dependent jobs. outputs: @@ -72,6 +75,7 @@ jobs: framework-tests: + permissions: read-all needs: prepare-matrices # Using matrices let create multiple jobs runs based on the combinations of the variables from matrices. # https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs @@ -161,6 +165,7 @@ jobs: spring-tests: + permissions: read-all runs-on: ubuntu-20.04 container: image: unittestbot/java-env:java17-zulu-jdk-gradle7.6.1-kotlinc1.8.0 diff --git a/.github/workflows/build-and-run-tests.yml b/.github/workflows/build-and-run-tests.yml index 0779d05638..51d5a8b330 100644 --- a/.github/workflows/build-and-run-tests.yml +++ b/.github/workflows/build-and-run-tests.yml @@ -1,5 +1,7 @@ name: "UTBot Java: build and run tests" +permissions: read-all + on: push: branches: diff --git a/.github/workflows/collect-statistics.yml b/.github/workflows/collect-statistics.yml index ff10bd2906..e330927f95 100644 --- a/.github/workflows/collect-statistics.yml +++ b/.github/workflows/collect-statistics.yml @@ -1,5 +1,7 @@ name: "[M] UTBot Java: collect statistics" +permissions: read-all + on: workflow_call: inputs: diff --git a/.github/workflows/issue-to-project.yml b/.github/workflows/issue-to-project.yml index 3a0b7edb3a..fc53eb2da5 100644 --- a/.github/workflows/issue-to-project.yml +++ b/.github/workflows/issue-to-project.yml @@ -1,5 +1,7 @@ name: Add issues to UTBot Java project +permissions: read-all + on: issues: types: diff --git a/.github/workflows/night-statistics-monitoring.yml b/.github/workflows/night-statistics-monitoring.yml index 99af44d6ac..b0b134521f 100644 --- a/.github/workflows/night-statistics-monitoring.yml +++ b/.github/workflows/night-statistics-monitoring.yml @@ -1,5 +1,7 @@ name: "UTBot Java: night statistics monitoring" +permissions: read-all + on: schedule: - cron: '0 0 * * *' diff --git a/.github/workflows/public-rider-plugin.yml b/.github/workflows/public-rider-plugin.yml index a2f28de7ea..587a7cf7bb 100644 --- a/.github/workflows/public-rider-plugin.yml +++ b/.github/workflows/public-rider-plugin.yml @@ -2,6 +2,8 @@ name: Publish Rider plugin +permissions: read-all + # Controls when the action will run. Workflow runs when manually triggered using the UI # or API. on: diff --git a/.github/workflows/publish-cli-from-branch.yml b/.github/workflows/publish-cli-from-branch.yml index 0f2256a242..217407d92e 100644 --- a/.github/workflows/publish-cli-from-branch.yml +++ b/.github/workflows/publish-cli-from-branch.yml @@ -1,5 +1,7 @@ name: "[M] CLI: publish as archive" +permissions: read-all + on: workflow_call: inputs: diff --git a/.github/workflows/publish-cli-image-from-branch.yml b/.github/workflows/publish-cli-image-from-branch.yml index 1c01fb85ff..d53b47dd87 100644 --- a/.github/workflows/publish-cli-image-from-branch.yml +++ b/.github/workflows/publish-cli-image-from-branch.yml @@ -1,5 +1,7 @@ name: "[M] CLI: publish docker image" +permissions: read-all + on: workflow_call: workflow_dispatch: diff --git a/.github/workflows/publish-on-github-packages.yml b/.github/workflows/publish-on-github-packages.yml index ff3becd8f9..31bbbfd47f 100644 --- a/.github/workflows/publish-on-github-packages.yml +++ b/.github/workflows/publish-on-github-packages.yml @@ -1,5 +1,7 @@ name: "[M] Publish on GitHub Packages" +permissions: read-all + on: workflow_dispatch: inputs: diff --git a/.github/workflows/publish-plugin-from-branch.yml b/.github/workflows/publish-plugin-from-branch.yml index 755ade4a60..7fcb8c56c6 100644 --- a/.github/workflows/publish-plugin-from-branch.yml +++ b/.github/workflows/publish-plugin-from-branch.yml @@ -1,5 +1,7 @@ name: "[M] Plugin: publish as archive" +permissions: read-all + on: workflow_call: inputs: diff --git a/.github/workflows/run-chosen-tests-from-branch.yml b/.github/workflows/run-chosen-tests-from-branch.yml index e1304d5c5e..2e24f6fbd1 100644 --- a/.github/workflows/run-chosen-tests-from-branch.yml +++ b/.github/workflows/run-chosen-tests-from-branch.yml @@ -1,5 +1,7 @@ name: "[M] Run chosen tests" +permissions: read-all + on: workflow_dispatch: inputs: